From 80e475fb052de4146faaac1545bd1c40f8f46a08 Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Mon, 7 Sep 2020 00:29:05 +0100
Subject: [PATCH 01/13] first wip
---
maps/submaps/admin_use_vr/ert.dm | 104 +
maps/submaps/admin_use_vr/ert.dmm | 24125 ++++++++++++++++++++---
maps/submaps/admin_use_vr/ert_base.dmm | 4072 ++++
3 files changed, 25698 insertions(+), 2603 deletions(-)
create mode 100644 maps/submaps/admin_use_vr/ert.dm
create mode 100644 maps/submaps/admin_use_vr/ert_base.dmm
diff --git a/maps/submaps/admin_use_vr/ert.dm b/maps/submaps/admin_use_vr/ert.dm
new file mode 100644
index 0000000000..aaec031655
--- /dev/null
+++ b/maps/submaps/admin_use_vr/ert.dm
@@ -0,0 +1,104 @@
+// Compile in the map for CI testing if we're testing compileability of all the maps
+#if MAP_TEST
+#include "mercship.dmm"
+#endif
+
+
+// Map template for spawning the shuttle
+/datum/map_template/om_ships/ert_ship
+ name = "OM Ship - ERT Ship (New Z)"
+ desc = "NT Emergency Response Ship."
+ mappath = 'ertship.dmm'
+
+ // The ship's area(s)
+/area/ship/ert
+ name = "\improper ERT Ship (Use a Subtype!)"
+ icon_state = "shuttle2"
+ requires_power = 1
+ dynamic_lighting = 1
+
+/area/ship/ert/engineering
+ name = "\improper NRV Von Braun - Engineering"
+/area/ship/ert/engineeringcntrl
+ name = "\improper NRV Von Braun - Engineering Power Room"
+/area/ship/ert/bridge
+ name = "\improper NRV Von Braun - Bridge"
+/area/ship/ert/atmos
+ name = "\improper NRV Von Braun - Atmospherics"
+/area/ship/ert/engine
+ name = "\improper NRV Von Braun - RIG & Mech Bay"
+/area/ship/ert/engine1
+ name = "\improper NRV Von Braun - Engine"
+/area/ship/ert/armoury_en
+ name = "\improper NRV Von Braun - Energy Armoury"
+/area/ship/ert/armoury_bl
+ name = "\improper NRV Von Braun - Ballistics Armoury"
+/area/ship/ert/hangar
+ name = "\improper NRV Von Braun - Hangar"
+/area/ship/ert/barracks
+ name = "\improper NRV Von Braun - Barracks"
+/area/ship/ert/med
+ name = "\improper NRV Von Braun - Medical"
+/area/ship/ert/med1
+ name = "\improper NRV Von Braun - Surgery"
+/area/ship/ert/hall1
+ name = "\improper NRV Von Braun - Corridor"
+/area/ship/ert/hall2
+ name = "\improper NRV Von Braun - Corridor"
+/area/ship/ert/southairlock
+ name = "\improper NRV Von Braun - Starboard Airlock"
+/area/ship/ert/northairlock
+ name = "\improper NRV Von Braun - Port Airlock"
+
+// The 'shuttle' of the excursion shuttle
+// /datum/shuttle/autodock/overmap/ert_ship
+// name = "Unknown Vessel"
+// warmup_time = 0
+// current_location = "tether_excursion_hangar"
+// docking_controller_tag = "expshuttle_docker"
+// shuttle_area = list(/area/ship/ert/engineering, /area/ship/ert/engineeringcntrl, /area/ship/ert/bridge, /area/ship/ert/atmos, /area/ship/ert/air, /area/ship/ert/engine, /area/ship/ert/engine1, /area/ship/ert/armoury, /area/ship/ert/hangar, /area/ship/ert/barracks, /area/ship/ert/fighter, /area/ship/ert/med, /area/ship/ert/med1, /area/ship/ert/hall1, /area/ship/ert/hall2)
+// fuel_consumption = 3
+
+// The 'ship'
+/obj/effect/overmap/visitable/ship/ert_ship
+ name = "NRV Von Braun"
+ desc = "Spacefaring vessel. Broadcasting Emergency Response IFF."
+ scanner_desc = @{"[i]Registration[/i]: Nanotrasen Rapid Response Vessel [i]Von Braun[/i]
+[i]Class[/i]: [i]Kepler[/i]-class Frigate
+[i]Transponder[/i]: Broadcasting
+[b]Notice[/b]: Impeding or interfering with emergency response vessels is a breach of numerous interstellar codes. Approach with caution."}
+ color = "#9999ff" //Red
+ vessel_mass = 8000
+ vessel_size = SHIP_SIZE_LARGE
+ initial_generic_waypoints = list("ert_ship_fore", "ert_ship_aft", "ert_ship_port", "ert_ship_starboard", "ert_ship_base_dock")
+ initial_restricted_waypoints = list("NRB Von Braun's Bay" = list("omship_spawn_ert_lander"))
+
+
+//The boat's area
+/area/shuttle/ert_ship_boat
+ name = "\improper Carrier's Ship's Boat"
+ icon_state = "yellow"
+ requires_power = 0
+
+// The shuttle's 'shuttle' computer
+/obj/machinery/computer/shuttle_control/explore/ert_ship_boat
+ name = "boat control console"
+ shuttle_tag = "NRB Robineau"
+
+// A shuttle lateloader landmark
+/obj/effect/shuttle_landmark/shuttle_initializer/ert_ship_boat
+ name = "NRV Von Braun's Bay"
+ base_area = /area/ship/ert/hangar
+ base_turf = /turf/simulated/floor/plating
+ landmark_tag = "omship_spawn_ert_lander"
+ docking_controller = "ert_boarding_shuttle_dock"
+ shuttle_type = /datum/shuttle/autodock/overmap/mercboat
+
+// The 'shuttle'
+/datum/shuttle/autodock/overmap/ert_ship_boat
+ name = "NRB Robineau"
+ current_location = "omship_spawn_ert_lander"
+ docking_controller_tag = "ert_boarding_shuttle"
+ shuttle_area = /area/shuttle/ert_ship_boat
+ fuel_consumption = 0
+ defer_initialisation = TRUE
\ No newline at end of file
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 6c09554428..5151551a7f 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -40,8 +40,8 @@
/area/centcom/specops)
"ah" = (
/obj/effect/floor_decal/industrial/danger/corner{
- icon_state = "dangercorner";
- dir = 1
+ dir = 1;
+ icon_state = "dangercorner"
},
/turf/unsimulated/floor/steel,
/area/centcom/specops)
@@ -106,7 +106,308 @@
"ap" = (
/turf/simulated/shuttle/wall/dark,
/area/shuttle/specops/centcom)
-"aq" = (
+"bg" = (
+/turf/space,
+/turf/space,
+/area/shuttle/specops/centcom)
+"ee" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"ef" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"eg" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 8;
+ icon_state = "dangercorner"
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"ei" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"er" = (
+/obj/machinery/computer/mecha{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"eE" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/gun/burst,
+/obj/item/weapon/gun/energy/gun/burst,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/lasershotgun,
+/obj/item/weapon/gun/energy/lasershotgun,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"eP" = (
+/obj/structure/sign/department/operational,
+/turf/simulated/wall/rdshull,
+/area/space)
+"eX" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"fj" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/carpet,
+/area/space)
+"fD" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"fE" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Unlocked Autolathe"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"fU" = (
+/obj/effect/landmark/late_antag/ert,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"fW" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"fZ" = (
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose,
+/obj/item/weapon/storage/pill_bottle/iron,
+/obj/item/weapon/storage/pill_bottle/iron,
+/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"gk" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/anti_photons,
+/obj/item/weapon/storage/box/anti_photons,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"gn" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"gx" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "ert2_vent"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1381;
+ id_tag = "ert2_control";
+ pixel_x = -24;
+ req_access = list(103);
+ tag_airpump = "ert2_vent";
+ tag_chamber_sensor = "ert2_sensor";
+ tag_exterior_door = "ert2_shuttle_outer";
+ tag_interior_door = "ert2_shuttle_inner"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"gD" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"gF" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 740.5
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"gN" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"gS" = (
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"gX" = (
+/obj/mecha/combat/gygax,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"ha" = (
+/obj/machinery/vending/security,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"hd" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"hf" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/speedboost,
+/obj/item/mecha_parts/mecha_equipment/speedboost,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"hj" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/emps{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/smokes,
+/obj/item/weapon/storage/box/smokes,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"hH" = (
+/obj/structure/mirror{
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/simulated/shuttle/floor/white,
+/area/space)
+"hO" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"hU" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"hZ" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"ia" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 4;
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"id" = (
+/obj/machinery/computer/communications,
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"iy" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"iC" = (
+/obj/structure/window/plastitanium,
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"iR" = (
/obj/structure/window/reinforced,
/obj/machinery/door/blast/shutters{
density = 0;
@@ -119,45 +420,1636 @@
/obj/structure/window/reinforced{
dir = 1
},
+/turf/simulated/shuttle/plating,
+/area/space)
+"je" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"jv" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/xray,
+/obj/item/weapon/gun/energy/xray,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"jC" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"jD" = (
+/obj/machinery/vending/engivend,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"jV" = (
+/obj/structure/sign/department/bridge,
+/turf/simulated/wall/rdshull,
+/area/space)
+"jY" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertstarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 8
},
/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"ar" = (
-/obj/structure/window/reinforced,
+/area/space)
+"ki" = (
+/obj/machinery/door/airlock/glass_command{
+ req_one_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"kl" = (
+/obj/structure/table/standard,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"ks" = (
+/obj/machinery/computer/station_alert/all{
+ dir = 4;
+ icon_state = "computer"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"kC" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/device/healthscanner,
+/obj/item/rig_module/device/healthscanner,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"kJ" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"kK" = (
+/obj/machinery/door/window/northright{
+ name = "Cargo Hold";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"kM" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"kO" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 4;
+ icon_state = "heater"
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/space)
+"kP" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/electrical,
+/obj/item/weapon/storage/toolbox/electrical,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"lc" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/cloak,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"ls" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"lt" = (
+/obj/structure/table/bench/padded,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"lv" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"lz" = (
+/obj/structure/bed/chair/bay/shuttle,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"lA" = (
+/obj/mecha/working/ripley,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"lL" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 12;
+ pixel_y = 8
+ },
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"lS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/obj/machinery/door/blast/shutters{
density = 0;
+ dir = 8;
icon_state = "shutter0";
- id = "ertstarshutters";
+ id = "ertportshutters";
name = "Blast Shutters";
opacity = 0
},
/obj/structure/grille,
/obj/structure/window/reinforced{
- dir = 1
+ dir = 8
},
+/obj/structure/window/reinforced,
/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"as" = (
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/shutters{
- density = 0;
- icon_state = "shutter0";
- id = "ertstarshutters";
- name = "Blast Shutters";
- opacity = 0
+/area/space)
+"mb" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"mq" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9;
+ icon_state = "intact"
},
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"my" = (
+/obj/mecha/working/ripley/firefighter,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"mT" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"mV" = (
+/obj/machinery/atm{
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"mZ" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"nx" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/carpet,
+/area/space)
+"nB" = (
+/obj/structure/sign/department/cargo{
+ name = "ENGINEERING SUPPLIES"
+ },
+/turf/simulated/wall/rdshull,
+/area/space)
+"nD" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"nT" = (
+/obj/machinery/vending/food,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"nZ" = (
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/structure/table/rack/steel,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"oh" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"os" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"oC" = (
+/obj/structure/closet/crate{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"oS" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"pa" = (
+/obj/machinery/computer/operating,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"pd" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/stack/nanopaste,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"ph" = (
/obj/structure/grille,
+/turf/space,
+/area/space)
+"pm" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/space)
+"pq" = (
+/obj/machinery/door/blast/regular/open{
+ id = "ERT_Shuttle_Rear";
+ name = "Boarding Hatch"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"pt" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"pv" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"pA" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"pI" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/mounted,
+/obj/item/rig_module/mounted/egun,
+/obj/item/rig_module/mounted/egun,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"pY" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"qd" = (
+/obj/machinery/power/emitter,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"qo" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "ert1_shuttle_inner";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"qC" = (
+/turf/unsimulated/floor/techfloor_grid,
+/area/space)
+"qD" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6;
+ icon_state = "intact"
+ },
+/obj/machinery/meter,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"qE" = (
+/obj/machinery/light,
+/obj/machinery/ntnet_relay,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"rc" = (
+/obj/structure/sign/department/conference_room{
+ name = "OUTFITTING"
+ },
+/turf/simulated/wall/rdshull,
+/area/space)
+"ro" = (
/obj/structure/window/reinforced{
dir = 1
},
+/obj/structure/dispenser/oxygen,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"rp" = (
+/obj/structure/sign/department/medbay{
+ name = "MEDICAL OUTFITTING & SUPPLIES"
+ },
+/turf/simulated/wall/rdshull,
+/area/space)
+"rr" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"rA" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"rN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 2;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"rO" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"rY" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"sg" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/mortar,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"sk" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/light/small,
+/turf/simulated/shuttle/floor/white,
+/area/space)
+"so" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"sr" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
/obj/structure/window/reinforced{
dir = 4
},
/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"at" = (
+/area/space)
+"ss" = (
+/obj/machinery/shield_capacitor,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"st" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"sy" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"sA" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"sC" = (
+/obj/structure/sign/department/armory{
+ name = "BALLISTIC ARMORY";
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"sH" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"sJ" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ertstarshutters";
+ name = "remote shutter control";
+ pixel_x = 30;
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"sP" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"sS" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/smokes,
+/obj/item/weapon/storage/box/smokes,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"sU" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"tp" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"tx" = (
+/turf/space,
+/area/centcom/specops)
+"tz" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "ert2_shuttle_inner";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"tE" = (
+/obj/machinery/vending/medical{
+ req_access = null
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"tH" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "ert2_shuttle_inner";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"uh" = (
+/obj/machinery/shield_gen/external,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"um" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/empslite,
+/obj/item/weapon/storage/box/empslite,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"un" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/space)
+"us" = (
+/obj/machinery/vending/fitness,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"uz" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"uK" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"uS" = (
+/turf/simulated/floor/carpet,
+/area/space)
+"vg" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/sniperrifle{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/sniperrifle{
+ battery_lock = 0
+ },
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"vi" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/backpack/ert/commander,
+/obj/item/clothing/head/helmet/ert/command,
+/obj/item/clothing/suit/armor/vest/ert/command,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"vl" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"vS" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"wd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"wl" = (
+/turf/simulated/floor/reinforced/airless,
+/area/space)
+"wr" = (
+/obj/structure/table/rack/steel,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"wt" = (
+/obj/machinery/door/blast/regular/open{
+ id = "ERT_Shuttle_Rear";
+ name = "Boarding Hatch"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "ERT_Shuttle_Rear";
+ name = "ERT Shuttle Access";
+ pixel_y = 24;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"wL" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"wO" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor/carpet,
+/area/space)
+"xs" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/combat_shield,
+/obj/item/mecha_parts/mecha_equipment/combat_shield,
+/obj/item/mecha_parts/mecha_equipment/omni_shield,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"xt" = (
+/obj/machinery/computer/telecomms/server{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"xz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "ERT_Shuttle_Fore";
+ name = "ERT Deployment Access";
+ pixel_y = 24;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"xA" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"xC" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"xD" = (
+/obj/machinery/computer/ship/navigation{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"xJ" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/space)
+"xM" = (
+/obj/machinery/vending/food,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"xO" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"xZ" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/rescue_pharm,
+/obj/item/rig_module/sprinter,
+/obj/item/rig_module/sprinter,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"yf" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"yo" = (
+/obj/structure/sign/department/armory{
+ name = "ENERGY ARMORY";
+ pixel_x = 32
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"yu" = (
+/turf/simulated/shuttle/wall/dark,
+/area/space)
+"yz" = (
+/turf/space,
+/area/space)
+"yC" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/frags,
+/obj/item/weapon/storage/box/frags,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"yR" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/pinpointer/advpinpointer,
+/obj/item/device/aicard,
+/turf/simulated/floor/carpet,
+/area/space)
+"yY" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/as24,
+/obj/item/weapon/gun/projectile/automatic/as24,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"za" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"zo" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"zs" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/stamp/centcomm,
+/obj/item/weapon/storage/box/cdeathalarm_kit,
+/obj/item/weapon/storage/box/trackimp,
+/turf/simulated/floor/carpet,
+/area/space)
+"zz" = (
+/obj/machinery/computer/card/centcom{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"zL" = (
+/obj/structure/fans/hardlight,
+/turf/simulated/floor/reinforced,
+/area/space)
+"Ac" = (
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/space)
+"Ah" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"AK" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"AO" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/space)
+"AV" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"AW" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"AX" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/plasmacutter,
+/obj/item/rig_module/device/plasmacutter,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"AZ" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"Bc" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"Bf" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/wall/rdshull,
+/area/space)
+"Bj" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/emps,
+/obj/item/weapon/storage/box/emps,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Br" = (
+/turf/simulated/floor/reinforced,
+/area/space)
+"BF" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"BJ" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1381;
+ master_tag = "ert2_control";
+ pixel_x = 24;
+ req_one_access = list(103)
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "ert2_shuttle_outer";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"BU" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"BW" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/space)
+"Cg" = (
+/obj/machinery/computer/ship/helm{
+ dir = 8;
+ icon_state = "computer"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Cn" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Cx" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/tritium,
+/obj/fiftyspawner/tritium,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"CM" = (
+/obj/item/roller/adv,
+/obj/item/roller/adv{
+ pixel_y = 6
+ },
+/obj/item/roller/adv{
+ pixel_y = 12
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"CT" = (
+/obj/machinery/vending/assist,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Dd" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion_l"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/space)
+"Dn" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/space)
+"Dp" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Du" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"DK" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/pillbottles,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"DQ" = (
+/obj/structure/medical_stand,
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 12;
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"DS" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"DY" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/melee/baton/fluff/stunstaff,
+/obj/item/weapon/melee/baton/fluff/stunstaff,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Ec" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1381;
+ master_tag = "ert2_control";
+ pixel_x = -22;
+ pixel_y = -32;
+ req_one_access = list(103)
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Ed" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Ek" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Eq" = (
+/obj/machinery/door/airlock/command{
+ name = "Bridge";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Ey" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"Ez" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/durasteel,
+/obj/fiftyspawner/durasteel,
+/obj/fiftyspawner/durasteel,
+/obj/fiftyspawner/durasteel,
+/obj/fiftyspawner/titanium_glass,
+/obj/fiftyspawner/titanium_glass,
+/obj/fiftyspawner/titanium_glass,
+/obj/fiftyspawner/titanium_glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"EC" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"ED" = (
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/storage/box/autoinjectors,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/freezer,
+/obj/item/weapon/storage/box/masks,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"EE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"EF" = (
+/obj/machinery/computer/ship/engines{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"EK" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"EN" = (
+/obj/mecha/medical/odysseus/loaded,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Fb" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"Fp" = (
+/obj/structure/table/glass,
+/obj/item/weapon/hand_tele,
+/obj/item/device/perfect_tele,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"FD" = (
+/obj/machinery/sleep_console{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"FF" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/white,
+/area/space)
+"FJ" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"FM" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"FV" = (
+/obj/structure/table/rack/steel,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Ga" = (
+/obj/item/weapon/circuitboard/aiupload,
+/obj/item/weapon/circuitboard/borgupload,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/aiModule/nanotrasen,
+/obj/item/weapon/aiModule/reset,
+/obj/item/weapon/aiModule/freeformcore,
+/obj/item/weapon/aiModule/protectStation,
+/obj/item/weapon/aiModule/quarantine,
+/obj/item/weapon/aiModule/paladin,
+/obj/item/weapon/aiModule/robocop,
+/obj/item/weapon/aiModule/safeguard,
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil,
+/obj/item/device/t_scanner/advanced,
+/obj/item/device/t_scanner/advanced,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Gw" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"GC" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"GF" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ertportshutters";
+ name = "remote shutter control";
+ pixel_x = 30;
+ req_access = list(160)
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/void/responseteam/command,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"GI" = (
+/turf/simulated/wall/rdshull,
+/area/space)
+"GM" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -35
+ },
+/obj/item/weapon/gun/projectile/deagle,
+/obj/item/ammo_magazine/m44,
+/obj/item/ammo_magazine/m44,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"GO" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1380;
+ master_tag = "ert1_control";
+ pixel_x = -22;
+ pixel_y = 32;
+ req_one_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"GU" = (
+/obj/mecha/combat/durand,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Hh" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Hu" = (
+/obj/machinery/power/port_gen/pacman/super,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"HC" = (
+/obj/effect/shuttle_landmark/shuttle_initializer{
+ base_area = /area/centcom/specops;
+ base_turf = /turf/unsimulated/floor;
+ landmark_tag = "specops_base";
+ name = "ERT Shuttle Bay";
+ shuttle_type = /datum/shuttle/autodock/multi/specialops
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"HE" = (
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"HN" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet,
+/area/space)
+"HO" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/clusterbang,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"HQ" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"HZ" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Id" = (
+/obj/machinery/vending/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"If" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Ii" = (
+/obj/structure/sign/department/medbay,
+/turf/simulated/wall/rdshull,
+/area/space)
+"IA" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/space)
+"Jb" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"Jd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Jk" = (
+/obj/machinery/power/thermoregulator,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Jn" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"JB" = (
+/obj/machinery/door/airlock/glass_command{
+ req_one_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"JM" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion_r"
+ },
+/turf/simulated/shuttle/plating/airless/carry,
+/area/space)
+"JN" = (
+/obj/machinery/shield_capacitor,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"JQ" = (
+/obj/machinery/door/airlock/silver{
+ name = "Sleeping"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"JV" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 8;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Kb" = (
+/obj/machinery/shieldgen,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Kk" = (
+/obj/machinery/door/window/northleft{
+ name = "Cargo Hold";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"KJ" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 2;
frequency = 1380;
@@ -181,1439 +2073,55 @@
shuttle_type = /datum/shuttle/autodock/multi/specialops
},
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"au" = (
-/obj/machinery/light/small{
- dir = 4;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
- frequency = 1380;
- id_tag = "ert1_vent"
- },
-/obj/machinery/airlock_sensor{
- frequency = 1380;
- id_tag = "ert1_sensor";
- pixel_x = 25
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"av" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 4
- },
-/turf/simulated/shuttle/plating/airless,
-/area/shuttle/specops/centcom)
-"aw" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 4
- },
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/specops/centcom)
-"ax" = (
-/obj/structure/closet/cabinet,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"ay" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/captain,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"az" = (
-/obj/structure/closet/wardrobe/ert,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aA" = (
-/obj/structure/closet/wardrobe/ert,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aB" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "ert1_shuttle_inner";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aC" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/chemical_dispenser/ert,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aD" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/chemical_dispenser/biochemistry/full,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aE" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/specops/centcom)
-"aF" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertstarshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"aG" = (
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aH" = (
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aI" = (
-/obj/machinery/door/airlock/silver{
- name = "Sleeping"
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aJ" = (
-/obj/effect/landmark/late_antag/ert,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aK" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 6
- },
-/obj/machinery/meter,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aL" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1380;
- master_tag = "ert1_control";
- pixel_x = -22;
- pixel_y = 32;
- req_one_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aM" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- icon_state = "intact";
- dir = 9
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aN" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aO" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/clothing/accessory/storage/white_vest,
-/obj/item/clothing/accessory/storage/white_vest,
-/obj/item/clothing/accessory/storage/white_vest,
-/obj/item/clothing/accessory/storage/white_vest,
-/obj/item/clothing/accessory/storage/white_drop_pouches,
-/obj/item/clothing/accessory/storage/white_drop_pouches,
-/obj/item/clothing/accessory/storage/white_drop_pouches,
-/obj/item/clothing/accessory/storage/white_drop_pouches,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aP" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/armor/vest/ert/medical,
-/obj/item/clothing/suit/armor/vest/ert/medical,
-/obj/item/clothing/suit/armor/vest/ert/medical,
-/obj/item/clothing/suit/armor/vest/ert/medical,
-/obj/item/clothing/head/helmet/ert/medical,
-/obj/item/clothing/head/helmet/ert/medical,
-/obj/item/clothing/head/helmet/ert/medical,
-/obj/item/clothing/head/helmet/ert/medical,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/weapon/storage/backpack/ert/medical,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aQ" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/rig/ert/medical,
-/obj/item/weapon/rig/ert/medical,
-/obj/item/weapon/rig/ert/medical,
-/obj/item/weapon/rig/ert/medical,
-/obj/item/weapon/reagent_containers/hypospray,
-/obj/item/weapon/reagent_containers/hypospray,
-/obj/item/weapon/reagent_containers/hypospray,
-/obj/item/weapon/reagent_containers/hypospray,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aR" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aS" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertstarshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"aT" = (
-/obj/machinery/light,
-/obj/machinery/ntnet_relay,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aU" = (
-/obj/structure/table/bench/padded,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aV" = (
-/obj/machinery/shieldgen,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aW" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/sniperrifle{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aX" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun/nuclear,
-/obj/item/weapon/gun/energy/gun/nuclear,
-/obj/item/weapon/gun/energy/gun/nuclear,
-/obj/item/weapon/gun/energy/gun/nuclear,
-/obj/item/weapon/gun/energy/gun/nuclear,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aY" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"aZ" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/shotgun/pump/combat,
-/obj/item/weapon/gun/projectile/shotgun/pump/combat,
-/obj/item/weapon/storage/box/shotgunshells,
-/obj/item/weapon/storage/box/shotgunshells,
-/obj/item/weapon/storage/box/shotgunshells,
-/obj/item/weapon/storage/box/shotgunammo,
-/obj/item/weapon/storage/box/shotgunammo,
-/obj/item/weapon/storage/box/stunshells,
-/obj/item/weapon/storage/box/stunshells,
-/obj/item/weapon/storage/box/flashshells,
-/obj/item/weapon/storage/box/flashshells,
-/obj/item/weapon/storage/box/beanbags,
-/obj/item/weapon/storage/box/beanbags,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"ba" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/advanced_smg,
-/obj/item/ammo_magazine/m9mmAdvanced,
-/obj/item/ammo_magazine/m9mmAdvanced,
-/obj/item/ammo_magazine/m9mmAdvanced,
-/obj/item/ammo_magazine/m9mmAdvanced,
-/obj/item/weapon/gun/projectile/revolver/detective45,
-/obj/item/weapon/gun/projectile/revolver/detective45,
-/obj/item/ammo_magazine/s45,
-/obj/item/ammo_magazine/s45,
-/obj/item/ammo_magazine/s45,
-/obj/item/ammo_magazine/s45,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bb" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"bc" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/space_heater,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bd" = (
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"be" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Medical Bay";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bf" = (
-/obj/machinery/chem_master,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bg" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- dir = 4
- },
-/turf/space,
-/turf/simulated/shuttle/plating/airless/carry,
-/area/shuttle/specops/centcom)
-"bh" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = -32
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bi" = (
-/obj/machinery/button/remote/blast_door{
- id = "ertstarshutters";
- name = "remote shutter control";
- pixel_x = 30;
- req_access = list(160)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bj" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bk" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 9
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bl" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 1
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bm" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bn" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bo" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"bp" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/meter,
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bq" = (
-/obj/machinery/light,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"br" = (
-/obj/machinery/vending/medical{
- density = 0;
- pixel_y = -32;
- req_access = null
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bs" = (
-/obj/structure/closet/medical_wall{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/item/weapon/storage/firstaid/clotting,
-/obj/item/weapon/storage/firstaid/bonemed,
-/obj/item/weapon/storage/firstaid/adv,
-/obj/item/weapon/storage/firstaid/adv,
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/o2,
-/obj/item/weapon/storage/firstaid/o2,
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/item/weapon/storage/firstaid/combat,
-/obj/item/weapon/storage/firstaid/combat,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bt" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 4;
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bu" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/item/weapon/gun/energy/ionrifle/pistol,
-/obj/item/weapon/gun/energy/ionrifle/pistol,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/obj/item/weapon/cell/device/weapon,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bv" = (
-/obj/machinery/door/window/southleft{
- name = "Cargo Hold";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bw" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/steel,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bx" = (
-/obj/machinery/door/window/southright{
- name = "Cargo Hold";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"by" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/obj/item/ammo_magazine/m545,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bz" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"bA" = (
-/obj/machinery/atmospherics/pipe/tank/air{
- dir = 1;
- start_pressure = 740.5
- },
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bB" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/box/pillbottles,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bC" = (
-/obj/structure/closet/crate/medical,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/stack/nanopaste/advanced,
-/obj/item/stack/nanopaste/advanced,
-/obj/item/stack/nanopaste/advanced,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose,
-/obj/item/weapon/storage/pill_bottle/iron,
-/obj/item/weapon/storage/pill_bottle/iron,
-/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/storage/box/syringes{
- pixel_x = 2;
- pixel_y = 2
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bD" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"bE" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"bF" = (
-/obj/machinery/vending/security,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bG" = (
-/obj/machinery/atm{
- pixel_x = 0;
- pixel_y = 26
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bH" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bI" = (
-/obj/machinery/vending/nifsoft_shop{
- categories = 111;
- emagged = 1;
- name = "Hacked NIFSoft Shop";
- prices = list()
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bJ" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"bK" = (
-/obj/machinery/sleep_console{
- dir = 8
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bL" = (
-/obj/machinery/sleeper{
- dir = 4
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bM" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/weapon/pen{
- pixel_y = 4
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bN" = (
-/obj/machinery/vending/food,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bO" = (
-/obj/structure/toilet,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/shuttle/floor/white,
-/area/shuttle/specops/centcom)
-"bP" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/light/small,
-/turf/simulated/shuttle/floor/white,
-/area/shuttle/specops/centcom)
-"bQ" = (
-/obj/structure/mirror{
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/simulated/shuttle/floor/white,
-/area/shuttle/specops/centcom)
-"bR" = (
-/obj/structure/curtain/open/shower,
-/obj/machinery/shower{
- pixel_y = 3
- },
-/turf/simulated/shuttle/floor/white,
-/area/shuttle/specops/centcom)
-"bS" = (
+/area/space)
+"KM" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/rig/ert/security,
/obj/item/weapon/rig/ert/security,
/obj/item/weapon/rig/ert/security,
/obj/item/weapon/rig/ert/security,
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bT" = (
-/obj/structure/closet/crate/medical,
-/obj/item/weapon/storage/box/autoinjectors,
-/obj/item/weapon/storage/box/beakers,
-/obj/item/device/defib_kit/compact/combat/loaded,
-/obj/item/device/defib_kit/compact/combat/loaded,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/storage/box/bodybags{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/storage/box/gloves,
-/obj/item/weapon/storage/box/freezer,
-/obj/item/weapon/storage/box/masks,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bU" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
+/area/space)
+"KO" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/flashbangs,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"KR" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"KW" = (
+/obj/machinery/light{
dir = 1
},
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"bV" = (
-/obj/structure/frame/computer,
+/obj/structure/table/glass,
+/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid,
+/obj/item/device/binoculars,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"bW" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "ERT";
- tele_network = "centcom"
- },
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"bX" = (
+/area/space)
+"Lk" = (
/obj/machinery/door/airlock/silver{
name = "Toilet"
},
/turf/simulated/shuttle/floor/white,
-/area/shuttle/specops/centcom)
-"bY" = (
-/obj/machinery/door/airlock/silver{
- name = "Restroom"
- },
-/turf/simulated/shuttle/floor/white,
-/area/shuttle/specops/centcom)
-"bZ" = (
-/obj/structure/undies_wardrobe,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"ca" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/armor/vest/ert/security,
-/obj/item/clothing/suit/armor/vest/ert/security,
-/obj/item/clothing/suit/armor/vest/ert/security,
-/obj/item/clothing/suit/armor/vest/ert/security,
-/obj/item/clothing/head/helmet/ert/security,
-/obj/item/clothing/head/helmet/ert/security,
-/obj/item/clothing/head/helmet/ert/security,
-/obj/item/clothing/head/helmet/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cb" = (
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/structure/table/rack/steel,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cc" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/flashbangs,
-/obj/item/weapon/storage/box/flashbangs,
-/obj/item/weapon/storage/box/flashbangs,
-/obj/item/weapon/storage/box/emps{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/storage/box/smokes,
-/obj/item/weapon/storage/box/smokes,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cd" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/handcuffs,
-/obj/item/weapon/storage/box/handcuffs{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"ce" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cf" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cg" = (
-/obj/machinery/power/thermoregulator,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"ch" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"ci" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cj" = (
-/obj/machinery/power/emitter,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"ck" = (
-/obj/machinery/bodyscanner{
- dir = 8
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cl" = (
-/obj/machinery/body_scanconsole,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cm" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cn" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"co" = (
-/obj/machinery/computer/shuttle_control/multi/specops{
- icon_state = "computer";
- dir = 4
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cp" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cq" = (
-/obj/machinery/door/airlock/command{
- name = "Bridge";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cr" = (
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cs" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"ct" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cu" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cv" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cw" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cx" = (
-/obj/machinery/power/port_gen/pacman,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cy" = (
-/obj/structure/medical_stand,
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 8
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cz" = (
-/obj/structure/table/steel_reinforced,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cA" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/button/remote/blast_door{
- id = "ertbridgeshutters";
- name = "remote shutter control";
- pixel_x = 30;
- req_access = list(150)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cB" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cC" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cD" = (
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cE" = (
-/obj/machinery/light,
-/obj/structure/table/standard,
-/obj/item/weapon/soap,
-/obj/item/weapon/soap,
-/obj/item/weapon/soap,
-/obj/item/weapon/soap,
-/obj/item/weapon/towel{
- color = "#0000FF"
- },
-/obj/item/weapon/towel{
- color = "#0000FF"
- },
-/obj/item/weapon/towel{
- color = "#0000FF"
- },
-/obj/item/weapon/towel{
- color = "#0000FF"
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cF" = (
-/obj/structure/closet{
- name = "custodial"
- },
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/mop,
-/obj/item/weapon/mop,
-/obj/item/weapon/mop,
-/obj/item/weapon/mop,
-/obj/item/weapon/rig/ert/janitor,
-/obj/item/device/lightreplacer,
-/obj/item/device/lightreplacer,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cH" = (
-/obj/structure/table/glass,
-/obj/item/roller/adv,
-/obj/item/roller/adv{
- pixel_y = 6
- },
-/obj/item/roller/adv{
- pixel_y = 12
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"cI" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/firstaid/surgery,
-/obj/item/stack/nanopaste,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cJ" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"cK" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"cL" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/shield/energy,
-/obj/item/weapon/shield/energy,
-/obj/item/weapon/shield/energy,
-/obj/item/weapon/shield/energy,
-/obj/item/weapon/shield/energy,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cM" = (
-/obj/machinery/shieldwallgen,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cN" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cO" = (
-/obj/machinery/computer/operating{
- dir = 1
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cP" = (
-/obj/machinery/optable,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cQ" = (
-/obj/machinery/oxygen_pump/anesthetic,
-/turf/simulated/shuttle/wall/dark/hard_corner,
-/area/shuttle/specops/centcom)
-"cR" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/machinery/cell_charger,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/obj/item/weapon/cell/hyper,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cS" = (
-/obj/machinery/door/window/northleft{
- name = "Cargo Hold";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cT" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/belt/utility/full,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cU" = (
-/obj/machinery/door/window/northright{
- name = "Cargo Hold";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cV" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/dispenser/oxygen,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cW" = (
-/obj/machinery/atmospherics/pipe/tank/air{
- dir = 2;
- start_pressure = 740.5
- },
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cX" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = 32
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cY" = (
-/obj/machinery/vending/engivend,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"cZ" = (
-/obj/machinery/vending/assist,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"da" = (
-/obj/structure/table/rack,
-/obj/item/weapon/rig/ert,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"db" = (
-/obj/machinery/button/remote/blast_door{
- id = "ertportshutters";
- name = "remote shutter control";
- pixel_x = 30;
- req_access = list(160)
- },
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/void/responseteam/command,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dc" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/mounted/taser,
-/obj/item/rig_module/mounted/taser,
-/obj/item/rig_module/mounted/taser,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dd" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"de" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"df" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dg" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/device/drill,
-/obj/item/rig_module/device/drill,
-/obj/item/rig_module/maneuvering_jets,
-/obj/item/rig_module/maneuvering_jets,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dh" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/meter,
-/obj/machinery/shield_gen,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"di" = (
-/obj/machinery/shield_capacitor,
-/turf/simulated/shuttle/floor/darkred,
-/area/shuttle/specops/centcom)
-"dj" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dk" = (
-/obj/item/weapon/circuitboard/aiupload,
-/obj/item/weapon/circuitboard/borgupload,
-/obj/item/weapon/circuitboard/smes,
-/obj/item/weapon/aiModule/nanotrasen,
-/obj/item/weapon/aiModule/reset,
-/obj/item/weapon/aiModule/freeformcore,
-/obj/item/weapon/aiModule/protectStation,
-/obj/item/weapon/aiModule/quarantine,
-/obj/item/weapon/aiModule/paladin,
-/obj/item/weapon/aiModule/robocop,
-/obj/item/weapon/aiModule/safeguard,
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/smes_coil,
-/obj/item/weapon/smes_coil,
-/obj/item/device/t_scanner/advanced,
-/obj/item/device/t_scanner/advanced,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dl" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table/steel_reinforced,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dm" = (
+/area/space)
+"Lq" = (
/obj/structure/table/steel_reinforced,
/obj/fiftyspawner/phoron,
/obj/fiftyspawner/glass,
@@ -1637,402 +2145,9 @@
/obj/fiftyspawner/rods,
/obj/fiftyspawner/rods,
/obj/fiftyspawner/rods,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dn" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"do" = (
-/obj/structure/table/glass,
-/obj/item/weapon/hand_tele,
-/obj/item/device/perfect_tele,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dp" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table/glass,
-/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid,
-/obj/item/device/binoculars,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dq" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dr" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/backpack/ert/commander,
-/obj/item/clothing/head/helmet/ert/command,
-/obj/item/clothing/suit/armor/vest/ert/command,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"ds" = (
-/turf/simulated/floor/carpet,
-/area/shuttle/specops/centcom)
-"dt" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/carpet,
-/area/shuttle/specops/centcom)
-"du" = (
-/obj/machinery/shieldwallgen,
-/turf/simulated/floor/carpet,
-/area/shuttle/specops/centcom)
-"dv" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/rescue_pharm,
-/obj/item/rig_module/sprinter,
-/obj/item/rig_module/sprinter,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dw" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/mounted,
-/obj/item/rig_module/mounted/egun,
-/obj/item/rig_module/mounted/egun,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dx" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/chem_dispenser/combat,
-/obj/item/rig_module/chem_dispenser/combat,
-/obj/item/rig_module/chem_dispenser/injector,
-/obj/item/rig_module/chem_dispenser/injector,
-/obj/item/rig_module/device/healthscanner,
-/obj/item/rig_module/device/healthscanner,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dy" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/device/rcd,
-/obj/item/rig_module/device/rcd,
-/obj/item/rig_module/device/plasmacutter,
-/obj/item/rig_module/device/plasmacutter,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dz" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dA" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
- pixel_y = 0
- },
-/obj/machinery/shield_gen/external,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dB" = (
-/obj/machinery/autolathe{
- desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
- hacked = 1;
- name = "Unlocked Autolathe"
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dC" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"dD" = (
-/obj/machinery/door/airlock/command{
- name = "Captain's Quarters";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dE" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/weapon/pen{
- pixel_y = 4
- },
-/turf/simulated/floor/carpet,
-/area/shuttle/specops/centcom)
-"dF" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/stamp/centcomm,
-/obj/item/weapon/storage/box/cdeathalarm_kit,
-/obj/item/weapon/storage/box/trackimp,
-/turf/simulated/floor/carpet,
-/area/shuttle/specops/centcom)
-"dG" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/pinpointer/advpinpointer,
-/obj/item/device/aicard,
-/turf/simulated/floor/carpet,
-/area/shuttle/specops/centcom)
-"dH" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"dI" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"dJ" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/plating,
-/area/shuttle/specops/centcom)
-"dK" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
-/obj/machinery/meter,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dL" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1381;
- master_tag = "ert2_control";
- pixel_x = -22;
- pixel_y = -32;
- req_one_access = list(103)
- },
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dM" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dN" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dO" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/accessory/storage/brown_vest,
-/obj/item/clothing/accessory/storage/brown_vest,
-/obj/item/clothing/accessory/storage/brown_vest,
-/obj/item/clothing/accessory/storage/brown_vest,
-/obj/item/clothing/accessory/storage/brown_drop_pouches,
-/obj/item/clothing/accessory/storage/brown_drop_pouches,
-/obj/item/clothing/accessory/storage/brown_drop_pouches,
-/obj/item/clothing/accessory/storage/brown_drop_pouches,
-/obj/item/clothing/glasses/welding/superior,
-/obj/item/clothing/glasses/welding/superior,
-/obj/item/clothing/glasses/welding/superior,
-/obj/item/clothing/glasses/welding/superior,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dP" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/rig/ert/engineer,
-/obj/item/weapon/rig/ert/engineer,
-/obj/item/weapon/rig/ert/engineer,
-/obj/item/weapon/rig/ert/engineer,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dQ" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/armor/vest/ert/engineer,
-/obj/item/clothing/suit/armor/vest/ert/engineer,
-/obj/item/clothing/suit/armor/vest/ert/engineer,
-/obj/item/clothing/suit/armor/vest/ert/engineer,
-/obj/item/clothing/head/helmet/ert/engineer,
-/obj/item/clothing/head/helmet/ert/engineer,
-/obj/item/clothing/head/helmet/ert/engineer,
-/obj/item/clothing/head/helmet/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/taperoll/engineering,
-/obj/item/taperoll/engineering,
-/obj/item/taperoll/engineering,
-/obj/item/taperoll/engineering,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dR" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -35
- },
-/obj/item/weapon/gun/projectile/deagle,
-/obj/item/ammo_magazine/m44,
-/obj/item/ammo_magazine/m44,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dS" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dT" = (
-/obj/machinery/light,
-/turf/simulated/floor/carpet,
-/area/shuttle/specops/centcom)
-"dU" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/shuttle/specops/centcom)
-"dV" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/carpet,
-/area/shuttle/specops/centcom)
-"dW" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/door/airlock/glass_external{
- frequency = 1381;
- icon_state = "door_locked";
- id_tag = "ert2_shuttle_inner";
- locked = 1;
- name = "Ship Hatch"
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dX" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1381;
- icon_state = "door_locked";
- id_tag = "ert2_shuttle_inner";
- locked = 1;
- name = "Ship Hatch"
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dY" = (
-/obj/machinery/vending/engineering,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"dZ" = (
-/obj/machinery/vending/tool,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"ea" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 1;
- frequency = 1381;
- id_tag = "ert2_vent"
- },
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1381;
- id_tag = "ert2_control";
- pixel_x = -24;
- req_access = list(103);
- tag_airpump = "ert2_vent";
- tag_chamber_sensor = "ert2_sensor";
- tag_exterior_door = "ert2_shuttle_outer";
- tag_interior_door = "ert2_shuttle_inner"
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"eb" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"LC" = (
/obj/machinery/light/small{
dir = 4;
pixel_y = 0
@@ -2048,68 +2163,431 @@
id_tag = "ert2_vent"
},
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"ec" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1381;
- icon_state = "door_locked";
- id_tag = "ert2_shuttle_outer";
- locked = 1;
- name = "Ship Hatch"
+/area/space)
+"LR" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
},
-/obj/structure/fans/tiny,
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"ed" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1381;
- master_tag = "ert2_control";
- pixel_x = 24;
- req_one_access = list(103)
+/area/space)
+"Me" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/maneuvering_jets,
+/obj/item/rig_module/maneuvering_jets,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Mm" = (
+/obj/effect/landmark/late_antag/ert,
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Mq" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "ertbridgeshutters";
+ name = "remote shutter control";
+ pixel_x = 30;
+ req_access = list(150)
},
-/obj/machinery/door/airlock/glass_external{
- frequency = 1381;
- icon_state = "door_locked";
- id_tag = "ert2_shuttle_outer";
- locked = 1;
- name = "Ship Hatch"
- },
-/obj/structure/fans/tiny,
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"ee" = (
-/obj/effect/floor_decal/industrial/danger/corner{
+/area/space)
+"Mt" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Mv" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"MU" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/meter,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"MX" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"MZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"Na" = (
+/obj/structure/window/reinforced{
dir = 4
},
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
-"ef" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 1
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertportshutters";
+ name = "Blast Shutters";
+ opacity = 0
},
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
-"eg" = (
-/obj/effect/floor_decal/industrial/danger/corner{
- icon_state = "dangercorner";
+/obj/structure/grille,
+/obj/structure/window/reinforced{
dir = 8
},
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
-"mI" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"Nf" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"NF" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "ERT_Shuttle_Rear";
+ name = "ERT Shuttle Access";
+ pixel_y = -25;
+ req_access = list(101)
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "ERT_Shuttle_Rear";
+ name = "Boarding Hatch"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"NI" = (
+/obj/structure/closet/wardrobe/ert,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"NP" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "ertstarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"NU" = (
/obj/structure/table/rack/steel,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"NY" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"NZ" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 2;
+ frequency = 1380;
+ id_tag = "ert1_vent"
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = "ert1_sensor";
+ pixel_x = 25
+ },
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"pn" = (
+/area/space)
+"Oa" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Og" = (
+/obj/machinery/computer/operating{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Oh" = (
+/obj/machinery/computer/security/mining{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"On" = (
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Oo" = (
+/obj/machinery/computer/shuttle_control/multi/specops{
+ dir = 8
+ },
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium,
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"Oy" = (
+/obj/machinery/vending/tool,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"OH" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"OO" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Pi" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Pl" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/ert,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Pn" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Pp" = (
+/obj/structure/closet/crate{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"Pq" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "ERT_Blast_Windows";
+ name = "Emergency Blast Shields";
+ pixel_x = 55;
+ pixel_y = 7;
+ req_one_access = list(101)
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ dir = 8;
+ id_tag = "ert_boarding_shuttle";
+ pixel_x = 52;
+ pixel_y = -5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"PC" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertstarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"PH" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"PS" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"PX" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/space)
+"QK" = (
+/obj/machinery/computer/ship/sensors,
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"QS" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"QT" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"QZ" = (
+/obj/structure/closet/medical_wall{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/firstaid/bonemed,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/storage/firstaid/combat,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Rc" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"Rt" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Rw" = (
/obj/structure/closet/walllocker/emerglocker{
pixel_y = 32
},
@@ -2119,58 +2597,623 @@
/obj/item/clothing/suit/space/void/responseteam/engineer,
/obj/item/clothing/suit/space/void/responseteam/engineer,
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"rB" = (
-/obj/structure/table/rack/steel,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
+/area/space)
+"Rz" = (
+/obj/structure/closet{
+ name = "custodial"
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/rig/ert/janitor,
+/obj/item/device/lightreplacer,
+/obj/item/device/lightreplacer,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"RB" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/captain,
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"zV" = (
-/obj/machinery/door/airlock/glass_command{
- req_one_access = list(103)
+/area/space)
+"RC" = (
+/obj/structure/frame/computer,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"RG" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/ert,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"RH" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"RO" = (
+/obj/structure/closet/cabinet,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"RV" = (
+/obj/machinery/vending/nifsoft_shop{
+ categories = 111;
+ emagged = 1;
+ name = "Hacked NIFSoft Shop";
+ prices = list()
},
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"HG" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = -32
+/area/space)
+"RX" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 2;
+ start_pressure = 740.5
},
-/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
-"TT" = (
+/area/space)
+"Sr" = (
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"St" = (
+/obj/machinery/shieldgen,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"SE" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"SF" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "ert2_shuttle_outer";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Tg" = (
+/obj/structure/sign/department/eng,
+/turf/simulated/wall/rdshull,
+/area/space)
+"Tl" = (
+/obj/machinery/shield_gen,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Tn" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Tx" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/space_heater,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"TI" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"TM" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"TR" = (
+/obj/mecha/combat/marauder,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"TU" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 8;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Ul" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Ur" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/shocker,
+/obj/item/mecha_parts/mecha_equipment/shocker,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"UH" = (
+/obj/structure/sign/department/eng{
+ name = "RIG AND MECH BAY"
+ },
+/turf/simulated/wall/rdshull,
+/area/space)
+"UJ" = (
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"UX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "ERT_Shuttle_Fore";
+ name = "ERT Deployment Access";
+ pixel_y = -25;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"UY" = (
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"Va" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"Vm" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "ERT";
+ tele_network = "centcom"
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"Vn" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/gravcatapult,
+/obj/item/mecha_parts/mecha_equipment/wormhole_generator,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"VB" = (
+/obj/structure/closet/wardrobe/ert,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"VO" = (
/obj/structure/table/rack/steel,
/obj/item/clothing/suit/space/void/responseteam/security,
/obj/item/clothing/suit/space/void/responseteam/security,
/obj/item/clothing/suit/space/void/responseteam/security,
/obj/item/clothing/suit/space/void/responseteam/security,
/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
+/area/space)
+"VP" = (
+/obj/machinery/computer/shuttle_control/multi/specops{
+ dir = 4;
+ icon_state = "computer"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Wu" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"WA" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"WC" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flare,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"WE" = (
+/obj/machinery/door/airlock/silver{
+ name = "Restroom"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/space)
+"WH" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/space)
"WJ" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/space/void/responseteam/janitor,
-/obj/item/clothing/suit/space/void/responseteam/janitor,
-/obj/item/clothing/suit/space/void/responseteam/janitor,
-/obj/item/clothing/suit/space/void/responseteam/janitor,
-/obj/item/weapon/storage/belt/janitor,
-/obj/item/weapon/storage/belt/janitor,
-/obj/item/weapon/storage/belt/janitor,
-/obj/item/weapon/storage/belt/janitor,
-/turf/simulated/shuttle/floor/black,
+/turf/space,
/area/shuttle/specops/centcom)
+"WS" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"WV" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"WX" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Xg" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Xx" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"XG" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"XX" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"Yd" = (
+/obj/structure/sign/department/dock{
+ name = "ROBINEAU DOCK"
+ },
+/turf/simulated/wall/rdshull,
+/area/space)
+"Ye" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/turf/simulated/shuttle/floor/darkred,
+/area/space)
+"Yq" = (
+/obj/structure/table/rack/steel,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"Yx" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "ertstarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/space)
+"YR" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"Zi" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"Zo" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/machinery/meter,
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"Zv" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"ZM" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"ZP" = (
+/obj/structure/closet/wardrobe/ert,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
+"ZT" = (
+/obj/machinery/door/blast/regular{
+ id = "ERT_Shuttle_Fore"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 2;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
+"ZW" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
+"ZX" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/space)
(1,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2209,6 +3252,110 @@ aa
aa
"}
(2,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2247,6 +3394,110 @@ aa
aa
"}
(3,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2285,6 +3536,110 @@ aa
aa
"}
(4,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2323,6 +3678,110 @@ aa
aa
"}
(5,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2361,6 +3820,110 @@ aa
aa
"}
(6,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2399,6 +3962,110 @@ aa
aa
"}
(7,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2437,6 +4104,110 @@ aa
aa
"}
(8,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2446,25 +4217,25 @@ aa
ae
aj
aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ap
-bU
-cn
-ap
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
+tx
+tx
+tx
+tx
+tx
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
+tx
+tx
+tx
+tx
+tx
aj
ef
aa
@@ -2475,6 +4246,110 @@ aa
aa
"}
(9,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2484,25 +4359,25 @@ aa
ae
aj
aj
-aj
-aj
-aj
-aj
-aj
-aj
-ap
-ap
-bV
-co
-ap
-ap
-aj
-aj
-aj
-aj
-aj
-aj
-aj
+tx
+tx
+tx
+tx
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
+tx
+tx
+tx
+tx
aj
ef
aa
@@ -2513,6 +4388,110 @@ aa
aa
"}
(10,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2522,25 +4501,25 @@ aa
ae
aj
aj
-aj
-aj
-aj
-aj
-aj
-aj
-bD
-bM
-bd
-cp
-cz
-cJ
-aj
-aj
-aj
-aj
-aj
-aj
-aj
+tx
+tx
+tx
+tx
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
+tx
+tx
+tx
+tx
aj
ef
aa
@@ -2551,6 +4530,110 @@ aa
aa
"}
(11,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2560,25 +4643,25 @@ aa
ae
aj
aj
-aj
-aj
-aj
-aj
-aj
-aj
-bE
-bN
-bW
-bd
-cA
-cK
-aj
-aj
-aj
-aj
-aj
-aj
-aj
+tx
+tx
+tx
+tx
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
+tx
+tx
+tx
+tx
aj
ef
aa
@@ -2589,6 +4672,110 @@ aa
aa
"}
(12,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2598,25 +4785,25 @@ aa
ae
aj
aj
-aj
-aj
-aj
-aj
-aj
-aj
-ap
-ap
-ap
-cq
-ap
-ap
-aj
-aj
-aj
-aj
-aj
-aj
-aj
+tx
+tx
+tx
+tx
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
+tx
+tx
+tx
+tx
aj
ef
aa
@@ -2627,6 +4814,110 @@ aa
aa
"}
(13,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2636,25 +4927,25 @@ aa
ae
aj
aj
-aj
-aj
-aj
-aj
-aj
-aj
-ap
-bO
-bX
-aH
-cB
-ap
-aj
-aj
-aj
-aj
-aj
-aj
-aj
+tx
+tx
+tx
+tx
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
+tx
+tx
+tx
+tx
aj
ef
aa
@@ -2665,6 +4956,110 @@ aa
aa
"}
(14,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2674,25 +5069,25 @@ aa
ae
aj
aj
-aj
-ap
-aF
-aS
-ap
-aj
-ap
-ap
-am
-aH
-cC
-ap
-aj
-ap
-dn
-dC
-ap
-aj
-aj
+tx
+WJ
+WJ
+WJ
+WJ
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+WJ
+WJ
+WJ
+WJ
+tx
+tx
aj
ef
aa
@@ -2703,6 +5098,110 @@ aa
aa
"}
(15,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2712,25 +5211,25 @@ aa
ae
aj
aj
-ap
-am
-aG
-ay
-ap
-aj
-ap
-bP
-ap
-aH
-cD
-ap
-aj
-ap
-do
-aH
-am
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -2741,6 +5240,110 @@ aa
aa
"}
(16,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2750,25 +5353,25 @@ aa
ae
aj
aj
-ap
-ax
-aH
-aT
-ap
-aj
-ap
-bQ
-bY
-aH
-cE
-ap
-aj
-ap
-dp
-aH
-ay
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -2779,6 +5382,110 @@ aa
aa
"}
(17,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2788,25 +5495,25 @@ aa
ae
aj
aj
-ap
-ay
-aH
-ay
-ap
-aj
-ap
-bR
-ap
-cr
-cF
-ap
-aj
-ap
-dq
-aH
-dR
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -2817,6 +5524,110 @@ aa
aa
"}
(18,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2826,25 +5637,25 @@ aa
ae
aj
aj
-ap
-ap
-aI
-ap
-ap
-ap
-ap
-am
-bZ
-aH
WJ
-ap
-ap
-ap
-ap
-dD
-ap
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -2855,6 +5666,110 @@ aa
aa
"}
(19,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2864,25 +5779,25 @@ aa
ae
aj
aj
-ap
-az
-aJ
-az
-ap
-ap
-ap
-ap
-ap
-zV
-ap
-am
-ap
-da
-dr
-aH
-dS
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -2893,6 +5808,110 @@ aa
aa
"}
(20,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2902,25 +5921,25 @@ aa
ae
aj
aj
-ap
-az
-aJ
-aJ
-bh
-ap
-bF
-bS
-ca
-aH
-aH
-cL
-ap
-cX
-aH
-aH
-aH
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -2931,6 +5950,110 @@ aa
aa
"}
(21,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2940,25 +6063,25 @@ aa
ae
aj
aj
-aq
-aA
-aJ
-aU
-aH
-bt
-aH
-aH
-bd
-bd
-aH
-aH
-bt
-aH
-ds
-dE
-dT
-dH
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -2969,6 +6092,110 @@ aa
aa
"}
(22,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -2978,25 +6205,25 @@ aa
ae
aj
aj
-ar
-az
-aJ
-aU
-aH
-aH
-aH
-bd
-bd
-bd
-bd
-aH
-aH
-aH
-dt
-dF
-dU
-dI
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -3007,6 +6234,110 @@ aa
aa
"}
(23,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3016,25 +6347,25 @@ aa
ae
aj
aj
-as
-az
-aJ
-aV
-bi
-ap
-TT
-bd
-cb
-cs
-bd
-rB
-ap
-db
-du
-dG
-dV
-dJ
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -3045,6 +6376,110 @@ aa
aa
"}
(24,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3054,25 +6489,25 @@ aa
ae
aj
aj
-ap
-ap
-ap
-ap
-ap
-am
-bG
-bd
-cc
-ct
-bd
-mI
-am
-ap
-ap
-ap
-ap
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -3083,6 +6518,110 @@ aa
aa
"}
(25,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3092,25 +6631,25 @@ aa
ae
aj
aj
-aj
-ap
-ap
-aW
-bj
-bu
-bH
-bd
-cd
-cu
-bd
-bq
-cR
-dc
-dv
-ap
-ap
-aj
-aj
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
aj
ef
aa
@@ -3121,6 +6660,110 @@ aa
aa
"}
(26,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3130,25 +6773,25 @@ aa
ae
aj
aj
-aj
-aj
-aq
-aX
-bk
-bv
-aH
-bd
-ce
-cv
-bd
-aH
-cS
-dd
-dw
-dH
-aj
-aj
-aj
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
aj
ef
aa
@@ -3159,6 +6802,110 @@ aa
aa
"}
(27,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3168,25 +6915,25 @@ aa
ae
aj
aj
-aj
-aj
-ar
-aY
-bl
-bw
-aV
-bd
-cf
-cw
-bd
-cM
-cT
-de
-dx
-dI
-aj
-aj
-aj
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
aj
ef
aa
@@ -3197,6 +6944,110 @@ aa
aa
"}
(28,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3206,25 +7057,25 @@ aa
ae
aj
aj
-aj
-aj
-as
-aZ
-bm
-bx
-aH
-bd
-cg
-cx
-bd
-aH
-cU
-df
-dy
-dJ
-aj
-aj
-aj
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
aj
ef
aa
@@ -3235,6 +7086,110 @@ aa
aa
"}
(29,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3244,25 +7199,25 @@ aa
ae
aj
aj
-aj
-ap
-ap
-ba
-bn
-by
-bI
-bd
-ch
-ch
-bd
-cN
-cV
-dg
-dz
-ap
-ap
-aj
-aj
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
aj
ef
aa
@@ -3273,6 +7228,110 @@ aa
aa
"}
(30,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3282,25 +7341,25 @@ aa
ae
aj
aj
-ap
-ap
-ap
-bb
-bo
-bz
-ap
-bd
-ci
-ci
-bd
-ap
-bb
-bo
-bz
-ap
-ap
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -3311,6 +7370,110 @@ aa
aa
"}
(31,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
ab
ab
ab
@@ -3320,25 +7483,25 @@ ab
ab
ab
am
-ap
-am
-aK
-bc
-bp
-bA
-ap
-bd
-cj
-cj
-bd
-ap
-cW
-dh
-dA
-dK
-am
-ap
-am
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
aj
ef
aa
@@ -3349,6 +7512,110 @@ aa
aa
"}
(32,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
ac
af
af
@@ -3358,25 +7625,25 @@ ac
af
ak
an
-at
-aB
-aL
-bd
-bd
-bd
-bJ
-bd
-bd
-bd
-bd
-bJ
-bd
-di
-di
-dL
-dW
-ea
-ec
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
aj
ef
aa
@@ -3387,6 +7654,110 @@ aa
aa
"}
(33,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
ac
af
af
@@ -3396,25 +7767,25 @@ ac
ag
ak
ao
-au
-aB
-aM
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-bd
-dM
-dX
-eb
-ed
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
aj
ef
aa
@@ -3425,6 +7796,110 @@ aa
aa
"}
(34,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
ab
ab
ab
@@ -3434,25 +7909,25 @@ ab
ab
ab
am
-ap
-am
-aN
-aH
-aH
-HG
-am
-bd
-bd
-bd
-bd
-am
-pn
-aH
-aH
-dN
-am
-ap
-am
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
aj
ef
aa
@@ -3463,6 +7938,110 @@ aa
aa
"}
(35,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3472,25 +8051,25 @@ aa
ae
aj
aj
-ap
-ap
-ap
-be
-be
-am
-ap
-bd
-ck
-bd
-cH
-ap
-am
-dj
-dj
-ap
-ap
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -3501,6 +8080,110 @@ aa
aa
"}
(36,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3510,25 +8193,25 @@ aa
ae
aj
aj
-aq
-aO
-aH
-aH
-aH
-ap
-bK
-bd
-cl
-bd
-bd
-cO
-ap
-dk
-aH
-aH
-dO
-dH
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -3539,6 +8222,110 @@ aa
aa
"}
(37,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3548,25 +8335,25 @@ aa
ae
aj
aj
-as
-aP
-aH
-aH
-bq
-ap
-bL
-bd
-bd
-bd
-bd
-cP
-ap
-dl
-aH
-aH
-dP
-dJ
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -3577,6 +8364,110 @@ aa
aa
"}
(38,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3586,25 +8477,25 @@ aa
ae
aj
aj
-ap
-aQ
-aH
-aH
-br
-am
-ap
-bT
-cm
-cy
-cI
-cQ
-ap
-dm
-aH
-aH
-dQ
-ap
-aj
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
aj
ef
aa
@@ -3615,6 +8506,110 @@ aa
aa
"}
(39,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3624,25 +8619,25 @@ aa
ae
aj
ap
-ap
-aC
-aH
-aH
-aH
-bB
-ap
-ap
-ap
-ap
-ap
-ap
-cY
-aH
-aH
-aH
-dY
-ap
-ap
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
aj
ef
aa
@@ -3653,6 +8648,110 @@ aa
aa
"}
(40,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3662,25 +8761,25 @@ aa
ae
aj
ap
-ap
-aD
-aR
-bf
-bs
-bC
-ap
-av
-av
-av
-av
-ap
-cZ
-aH
-dB
-aR
-dZ
-ap
-ap
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
aj
ef
aa
@@ -3691,6 +8790,110 @@ aa
aa
"}
(41,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3700,25 +8903,25 @@ aa
ae
aj
ap
-ap
-ap
-ap
-ap
-am
-ap
-ap
-aw
-aE
-aE
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
bg
-ap
-ap
-ap
-ap
-ap
-ap
-ap
-ap
+bg
+bg
+bg
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
aj
ef
aa
@@ -3729,6 +8932,110 @@ aa
aa
"}
(42,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+OH
+OH
+OH
+OH
+Fb
+OH
+OH
+OH
+OH
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3738,25 +9045,25 @@ aa
ae
aj
ap
-av
-av
-av
-av
-ap
-ap
-aj
-aj
-aj
-aj
-aj
-aj
-ap
-ap
-av
-av
-av
-av
-ap
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+tx
+tx
+tx
+tx
+tx
+tx
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
+WJ
aj
ef
aa
@@ -3767,6 +9074,110 @@ aa
aa
"}
(43,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+OH
+OH
+OH
+OH
+Fb
+OH
+OH
+OH
+OH
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3776,25 +9187,25 @@ aa
ae
aj
ap
-aw
-aE
-aE
bg
-ap
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-aj
-ap
-aw
-aE
-aE
bg
-ap
+bg
+bg
+WJ
+tx
+tx
+tx
+tx
+tx
+tx
+tx
+tx
+WJ
+bg
+bg
+bg
+bg
+WJ
aj
ef
aa
@@ -3805,6 +9216,110 @@ aa
aa
"}
(44,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+OH
+OH
+OH
+OH
+Fb
+OH
+OH
+OH
+OH
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3843,6 +9358,110 @@ aa
aa
"}
(45,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3881,6 +9500,110 @@ aa
aa
"}
(46,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Fb
+OH
+OH
+OH
+yz
+OH
+OH
+OH
+OH
+Fb
+OH
+OH
+OH
+OH
+yz
+OH
+OH
+OH
+Fb
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3919,6 +9642,110 @@ aa
aa
"}
(47,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+GI
+GI
+TM
+GI
+GI
+GI
+GI
+GI
+GI
+GI
+Tg
+TM
+GI
+GI
+GI
+GI
+GI
+GI
+GI
+GI
+TM
+GI
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3957,6 +9784,110 @@ aa
aa
"}
(48,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+GI
+RH
+Fb
+PH
+PH
+GI
+GI
+zz
+EF
+er
+ks
+Fb
+Wu
+Oh
+xt
+WS
+GI
+Ez
+Lq
+fE
+Fb
+Jk
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -3995,6 +9926,110 @@ aa
aa
"}
(49,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+yu
+XX
+Rc
+yu
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+yz
+yz
+yz
+GI
+RH
+Fb
+OH
+Mm
+NI
+GI
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+GI
+pv
+OH
+OH
+Fb
+Hu
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -4033,6 +10068,110 @@ aa
aa
"}
(50,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+qC
+qC
+qC
+qC
+qC
+yu
+yu
+RC
+VP
+yu
+yu
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+yz
+yz
+GI
+GI
+Ed
+Fb
+OH
+Mm
+NI
+GI
+OH
+Fb
+OH
+Fb
+Fb
+Fb
+OH
+Fb
+OH
+GI
+pv
+OH
+Nf
+Fb
+Cx
+GI
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
aa
aa
@@ -4070,3 +10209,12783 @@ aa
aa
aa
"}
+(51,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+qC
+qC
+qC
+qC
+qC
+Bc
+ZX
+Sr
+hU
+st
+fW
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+yz
+yz
+GI
+GI
+Ed
+Fb
+OH
+Mm
+NI
+GI
+OH
+Fb
+OH
+id
+Fb
+YR
+OH
+Fb
+OH
+GI
+Kb
+OH
+Nf
+Fb
+OH
+Ga
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(52,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+qC
+qC
+qC
+qC
+qC
+QS
+xM
+Vm
+Sr
+Mq
+sy
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+yz
+yz
+GI
+NI
+Mm
+Fb
+OH
+Mm
+NI
+GI
+OH
+Fb
+OH
+QK
+Fb
+xD
+OH
+Fb
+OH
+GI
+Id
+OH
+BU
+Fb
+OH
+Ah
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(53,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+qC
+qC
+qC
+qC
+qC
+yu
+yu
+yu
+Eq
+yu
+yu
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+yz
+yz
+GI
+NI
+Mm
+Fb
+OH
+Mm
+NI
+GI
+OH
+Fb
+OH
+OH
+Cg
+OH
+OH
+Fb
+OH
+GI
+Oy
+OH
+BU
+Fb
+OH
+kP
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(54,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+qC
+qC
+qC
+qC
+qC
+yu
+Dn
+Lk
+HE
+gN
+yu
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+yz
+yz
+GI
+NI
+Mm
+Fb
+OH
+Mm
+NI
+GI
+OH
+Fb
+OH
+OH
+OH
+OH
+OH
+Fb
+OH
+GI
+jD
+OH
+qd
+Fb
+OH
+Yq
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(55,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+yu
+PC
+jY
+yu
+qC
+yu
+yu
+Ac
+HE
+SE
+yu
+qC
+yu
+Na
+lS
+yu
+qC
+qC
+yz
+yz
+GI
+NI
+Mm
+Fb
+OH
+OH
+Mv
+rc
+GI
+ki
+jV
+GI
+GI
+GI
+jV
+ki
+GI
+nB
+CT
+OH
+qd
+Fb
+OH
+Jk
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(56,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+Ac
+mZ
+RB
+yu
+qC
+yu
+sk
+yu
+HE
+On
+yu
+qC
+yu
+Fp
+HE
+Ac
+yu
+qC
+yz
+yz
+GI
+NI
+Mm
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+OH
+JN
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(57,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+RO
+HE
+qE
+yu
+qC
+yu
+hH
+WE
+HE
+yz
+yu
+qC
+yu
+KW
+HE
+RB
+yu
+qC
+yz
+yz
+GI
+NI
+Mm
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+Fb
+OH
+JN
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(58,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+RB
+HE
+RB
+yu
+qC
+yu
+FF
+yu
+LR
+yz
+yu
+qC
+yu
+gn
+HE
+GM
+yu
+qC
+yz
+yz
+GI
+GI
+nT
+Fb
+Fb
+hZ
+hZ
+GI
+Fb
+Fb
+sC
+OH
+OH
+OH
+yo
+Fb
+Fb
+GI
+Tl
+uh
+Fb
+Fb
+OH
+JN
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(59,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yu
+JQ
+yu
+yu
+yu
+yu
+Ac
+os
+HE
+yz
+yu
+yu
+yu
+yu
+gS
+yu
+yu
+qC
+yz
+yz
+GI
+GI
+GI
+Fb
+Fb
+GI
+GI
+GI
+tp
+tp
+GI
+GI
+GI
+GI
+GI
+tp
+tp
+GI
+GI
+Ii
+Fb
+Fb
+GI
+GI
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(60,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+VB
+fU
+VB
+yu
+yu
+yu
+yu
+yu
+JB
+yu
+Ac
+yu
+RG
+vi
+HE
+Cn
+yu
+qC
+yz
+GI
+GI
+NY
+NY
+Fb
+Fb
+ZM
+GI
+If
+Fb
+Fb
+nD
+KR
+OO
+eE
+nD
+Fb
+Fb
+jv
+GI
+HZ
+Fb
+Fb
+HZ
+HZ
+GI
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(61,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+VB
+fU
+fU
+AK
+yu
+HE
+KM
+pt
+HE
+HE
+DS
+yu
+kJ
+HE
+HE
+HE
+yu
+qC
+yz
+GI
+wr
+OH
+OH
+Fb
+Fb
+ZM
+GI
+If
+Fb
+Fb
+Fb
+GC
+OO
+Hh
+Fb
+Fb
+Fb
+vg
+GI
+HZ
+Fb
+Fb
+OH
+OH
+CM
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(62,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Yx
+ZP
+fU
+lt
+HE
+ia
+HE
+HE
+Sr
+Sr
+HE
+HE
+ia
+HE
+uS
+HN
+PX
+AO
+qC
+yz
+GI
+wr
+OH
+ha
+Fb
+Fb
+Ul
+GI
+gk
+Fb
+Pp
+Fb
+PS
+OO
+XG
+Fb
+Pp
+Fb
+rr
+GI
+tE
+Fb
+Fb
+OH
+OH
+DK
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(63,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+iR
+VB
+fU
+lt
+HE
+HE
+HE
+Sr
+Sr
+Sr
+Sr
+HE
+HE
+HE
+fj
+zs
+BW
+WH
+qC
+yz
+GI
+sH
+OH
+HZ
+Fb
+Fb
+zo
+GI
+sS
+Fb
+xC
+Fb
+OH
+OH
+OH
+Fb
+xC
+Fb
+rr
+GI
+tE
+Fb
+Fb
+OH
+OH
+ED
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(64,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+NP
+VB
+fU
+St
+sJ
+yu
+VO
+Sr
+nZ
+Du
+Sr
+FV
+yu
+GF
+wO
+yR
+nx
+IA
+qC
+yz
+GI
+sH
+OH
+HZ
+Fb
+Fb
+zo
+GI
+Bj
+Fb
+xC
+Fb
+OH
+OH
+OH
+Fb
+xC
+Fb
+oS
+GI
+UJ
+Fb
+Fb
+OH
+OH
+xO
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(65,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yu
+yu
+yu
+yu
+Ac
+mV
+Sr
+hj
+Va
+Sr
+fD
+Ac
+yu
+yu
+yu
+yu
+yu
+qC
+yz
+GI
+oh
+OH
+us
+Fb
+Fb
+Pn
+GI
+um
+Fb
+oC
+Fb
+rY
+OO
+DY
+Fb
+oC
+Fb
+oS
+GI
+uK
+Fb
+Fb
+OH
+OH
+Pl
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(66,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+yu
+yu
+yz
+yz
+yz
+sP
+Sr
+Jb
+Ye
+Sr
+lv
+yz
+yz
+yz
+yu
+yu
+qC
+qC
+yz
+GI
+oh
+OH
+OH
+Fb
+Fb
+iy
+GI
+KO
+Fb
+Fb
+Fb
+yY
+OO
+Pi
+Fb
+Fb
+Fb
+mb
+GI
+mT
+Fb
+Fb
+OH
+OH
+yf
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(67,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+qC
+Yx
+yz
+yz
+yz
+HE
+Sr
+BF
+hO
+Sr
+HE
+Kk
+Jd
+yz
+AO
+qC
+qC
+qC
+yz
+GI
+GI
+sA
+sA
+Fb
+Fb
+iy
+GI
+yC
+Fb
+Fb
+Fb
+Zv
+OO
+hd
+Fb
+Fb
+Fb
+mb
+GI
+Oa
+Fb
+Fb
+QZ
+fZ
+GI
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(68,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+qC
+iR
+yz
+yz
+yz
+yz
+Sr
+rO
+Ey
+Sr
+yz
+yz
+Dp
+yz
+WH
+qC
+qC
+qC
+yz
+yz
+GI
+GI
+GI
+Fb
+Fb
+GI
+GI
+GI
+OO
+tp
+tp
+OO
+Yd
+OO
+tp
+tp
+OO
+GI
+GI
+rp
+Fb
+Fb
+GI
+GI
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(69,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+qC
+NP
+yz
+yz
+yz
+HE
+Sr
+yz
+yz
+Sr
+HE
+kK
+WX
+yz
+IA
+qC
+qC
+qC
+yz
+yz
+yz
+wl
+OO
+Fb
+Fb
+FM
+GI
+Zi
+EE
+EE
+EE
+EE
+EE
+EE
+EE
+EE
+EE
+Xx
+GI
+OH
+Fb
+Fb
+OO
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(70,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+qC
+yu
+yu
+yz
+yz
+yz
+RV
+Sr
+yz
+yz
+Sr
+Gw
+ro
+yz
+yz
+yu
+yu
+qC
+qC
+yz
+yz
+yz
+wl
+OO
+Fb
+Fb
+Fb
+tp
+je
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+wd
+AZ
+Fb
+Fb
+Fb
+OO
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(71,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yu
+yu
+sr
+vl
+WV
+yu
+Sr
+yz
+yz
+Sr
+yu
+sr
+vl
+WV
+yu
+yu
+yu
+qC
+yz
+yz
+yz
+wl
+OO
+Fb
+Fb
+Fb
+tp
+je
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+wd
+AZ
+Fb
+Fb
+Fb
+OO
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(72,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+Ac
+qD
+Tx
+MU
+gF
+yu
+Sr
+yz
+yz
+Sr
+yu
+RX
+yz
+yz
+Zo
+Ac
+yu
+Ac
+yz
+yz
+yz
+wl
+OO
+Fb
+Fb
+Rz
+Yd
+je
+Br
+Br
+pm
+Br
+Br
+Br
+pm
+Br
+Br
+wd
+Yd
+kl
+Fb
+Fb
+OO
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(73,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+KJ
+qo
+GO
+Sr
+Sr
+Sr
+xA
+Sr
+Sr
+Sr
+Sr
+xA
+Sr
+ss
+ss
+Ec
+tH
+gx
+SF
+yz
+yz
+wl
+GI
+GI
+TM
+TM
+UH
+GI
+je
+Br
+pm
+GI
+wt
+pq
+NF
+GI
+pm
+Br
+wd
+GI
+eP
+AZ
+AZ
+GI
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(74,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+NZ
+qo
+mq
+Sr
+Sr
+Sr
+Sr
+Sr
+Sr
+Sr
+Sr
+Sr
+Sr
+Sr
+Sr
+so
+tz
+LC
+BJ
+yz
+yz
+wl
+GI
+xZ
+Fb
+Fb
+EK
+GI
+je
+Br
+GI
+GI
+Jn
+Jn
+Jn
+GI
+GI
+Br
+wd
+GI
+vS
+Fb
+Fb
+rA
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(75,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+Ac
+pY
+HE
+HE
+EC
+Ac
+Sr
+Sr
+Sr
+Sr
+Ac
+Rw
+HE
+HE
+MX
+Ac
+yu
+Ac
+yz
+yz
+wl
+GI
+pI
+Fb
+Fb
+gD
+OO
+je
+Br
+QT
+sU
+Fb
+jC
+Fb
+Rt
+JV
+Br
+wd
+OO
+eX
+Fb
+Fb
+FD
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(76,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yu
+yu
+wL
+wL
+Ac
+yz
+yz
+yz
+yz
+yz
+yz
+Ac
+kM
+kM
+yu
+yu
+yu
+qC
+yz
+yz
+wl
+GI
+kC
+Fb
+Fb
+NU
+OO
+je
+Br
+ZW
+lz
+Fb
+Pq
+Fb
+Tn
+TU
+Br
+wd
+OO
+OH
+Fb
+Fb
+OH
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(77,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Yx
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yz
+HE
+HE
+yz
+AO
+qC
+yz
+yz
+wl
+GI
+AX
+Fb
+Fb
+TI
+OO
+je
+Br
+QT
+lz
+iC
+Oo
+UY
+Tn
+JV
+Br
+wd
+OO
+za
+Fb
+Fb
+za
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(78,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+NP
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yz
+HE
+HE
+yz
+IA
+qC
+yz
+yz
+wl
+GI
+Me
+Fb
+Fb
+Ek
+OO
+je
+Br
+ZW
+lz
+iC
+HQ
+UY
+Tn
+TU
+Br
+wd
+OO
+DQ
+Fb
+Fb
+lL
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(79,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yz
+HE
+HE
+yz
+yu
+qC
+yz
+yz
+wl
+GI
+EN
+Fb
+Fb
+lA
+OO
+je
+Br
+QT
+lz
+Fb
+Fb
+Fb
+Tn
+JV
+Br
+wd
+OO
+GI
+Fb
+Fb
+GI
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(80,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yz
+yz
+yz
+yz
+yz
+yu
+yu
+yu
+yu
+yu
+yu
+yz
+HE
+HE
+HE
+yz
+yu
+yu
+yz
+yz
+wl
+GI
+gX
+Fb
+Fb
+my
+OO
+je
+Br
+GI
+GI
+xz
+HC
+UX
+GI
+GI
+Br
+wd
+OO
+pd
+Fb
+Fb
+pd
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(81,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yz
+yz
+yz
+yz
+yz
+yu
+kO
+kO
+kO
+kO
+yu
+yz
+HE
+yz
+AW
+yz
+yu
+yu
+yz
+yz
+wl
+GI
+TR
+Fb
+Fb
+hf
+OO
+je
+Br
+un
+GI
+rN
+ZT
+rN
+GI
+un
+Br
+wd
+OO
+pa
+Fb
+Fb
+Og
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(82,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yu
+yu
+yu
+yu
+Ac
+yu
+yu
+JM
+xJ
+xJ
+Dd
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yu
+yz
+yz
+wl
+GI
+GU
+Fb
+Fb
+WA
+OO
+je
+Br
+Br
+GI
+Br
+Br
+Br
+GI
+Br
+Br
+wd
+OO
+Mt
+Fb
+Fb
+Mt
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(83,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+kO
+kO
+kO
+kO
+yu
+yu
+qC
+qC
+qC
+qC
+qC
+qC
+yu
+yu
+kO
+kO
+kO
+kO
+yu
+yz
+yz
+wl
+GI
+Ur
+Fb
+Fb
+Vn
+OO
+je
+Br
+Br
+GI
+Br
+Br
+Br
+GI
+Br
+Br
+wd
+OO
+Bf
+Fb
+Fb
+Bf
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(84,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+JM
+xJ
+xJ
+Dd
+yu
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+qC
+yu
+JM
+xJ
+xJ
+Dd
+yu
+yz
+yz
+wl
+GI
+AV
+Fb
+Fb
+lc
+OO
+je
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+wd
+OO
+OH
+Fb
+Fb
+OH
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(85,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+wl
+GI
+xs
+Fb
+Fb
+uz
+GI
+je
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+wd
+GI
+Xg
+Fb
+Fb
+Xg
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(86,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+wl
+GI
+pA
+Fb
+Fb
+ei
+GI
+MZ
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+Br
+ls
+GI
+FJ
+Fb
+Fb
+FJ
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(87,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+wl
+GI
+GI
+sg
+HO
+WC
+GI
+zL
+zL
+zL
+zL
+zL
+zL
+zL
+zL
+zL
+zL
+zL
+GI
+GI
+Fb
+Fb
+GI
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(88,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+wl
+GI
+GI
+GI
+GI
+wl
+wl
+wl
+wl
+wl
+wl
+wl
+wl
+wl
+wl
+wl
+wl
+wl
+GI
+GI
+GI
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(89,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+wl
+GI
+GI
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+wl
+GI
+GI
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(90,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+wl
+GI
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+wl
+GI
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(91,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+wl
+GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+GI
+wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(92,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(93,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(94,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(95,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(96,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(97,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(98,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ph
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(99,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(100,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(101,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(102,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(103,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(104,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(105,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(106,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(107,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(108,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(109,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(110,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(111,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(112,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(113,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(114,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(115,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(116,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(117,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(118,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(119,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(120,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(121,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(122,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(123,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(124,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(125,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(126,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(127,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(128,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(129,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(130,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(131,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(132,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(133,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(134,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(135,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(136,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(137,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(138,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(139,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(140,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
diff --git a/maps/submaps/admin_use_vr/ert_base.dmm b/maps/submaps/admin_use_vr/ert_base.dmm
new file mode 100644
index 0000000000..6c09554428
--- /dev/null
+++ b/maps/submaps/admin_use_vr/ert_base.dmm
@@ -0,0 +1,4072 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/unsimulated/wall,
+/area/space)
+"ab" = (
+/turf/unsimulated/wall,
+/area/centcom/specops)
+"ac" = (
+/turf/unsimulated/wall{
+ icon = 'icons/obj/doors/Doorext.dmi';
+ icon_state = "door_locked";
+ name = "Sealed Door"
+ },
+/area/centcom/specops)
+"ad" = (
+/obj/effect/floor_decal/industrial/danger/corner,
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"ae" = (
+/obj/effect/floor_decal/industrial/danger,
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"af" = (
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/specops)
+"ag" = (
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ frequency = 1380;
+ id_tag = "ert_shuttle_bay";
+ name = "shuttle bay controller";
+ pixel_x = 25;
+ pixel_y = 0;
+ tag_door = "ert_shuttle_bay_door"
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/specops)
+"ah" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ icon_state = "dangercorner";
+ dir = 1
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"ai" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 4
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"aj" = (
+/turf/unsimulated/floor/techfloor_grid,
+/area/centcom/specops)
+"ak" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "ert_shuttle_bay_door";
+ locked = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "steel"
+ },
+/area/centcom/specops)
+"al" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 8
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"am" = (
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/shuttle/specops/centcom)
+"an" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "ert1_shuttle_outer";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ao" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "ert1_shuttle_outer";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/structure/fans/tiny,
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1380;
+ master_tag = "ert1_control";
+ pixel_x = 24;
+ req_one_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ap" = (
+/turf/simulated/shuttle/wall/dark,
+/area/shuttle/specops/centcom)
+"aq" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "ertstarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"ar" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "ertstarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"as" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "ertstarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"at" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 2;
+ frequency = 1380;
+ id_tag = "ert1_vent"
+ },
+/obj/machinery/embedded_controller/radio/airlock/docking_port{
+ frequency = 1380;
+ id_tag = "ert1_control";
+ pixel_x = -25;
+ req_access = list(103);
+ tag_airpump = "ert1_vent";
+ tag_chamber_sensor = "ert1_sensor";
+ tag_exterior_door = "ert1_shuttle_outer";
+ tag_interior_door = "ert1_shuttle_inner"
+ },
+/obj/effect/shuttle_landmark/shuttle_initializer{
+ base_area = /area/centcom/specops;
+ base_turf = /turf/unsimulated/floor;
+ landmark_tag = "specops_base";
+ name = "ERT Shuttle Bay";
+ shuttle_type = /datum/shuttle/autodock/multi/specialops
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"au" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 2;
+ frequency = 1380;
+ id_tag = "ert1_vent"
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1380;
+ id_tag = "ert1_sensor";
+ pixel_x = 25
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"av" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 4
+ },
+/turf/simulated/shuttle/plating/airless,
+/area/shuttle/specops/centcom)
+"aw" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_r";
+ dir = 4
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/specops/centcom)
+"ax" = (
+/obj/structure/closet/cabinet,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ay" = (
+/obj/structure/bed/padded,
+/obj/item/weapon/bedsheet/captain,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"az" = (
+/obj/structure/closet/wardrobe/ert,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aA" = (
+/obj/structure/closet/wardrobe/ert,
+/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aB" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1380;
+ icon_state = "door_locked";
+ id_tag = "ert1_shuttle_inner";
+ locked = 1;
+ name = "Shuttle Hatch"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aC" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/ert,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aD" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aE" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/specops/centcom)
+"aF" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertstarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"aG" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aH" = (
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aI" = (
+/obj/machinery/door/airlock/silver{
+ name = "Sleeping"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aJ" = (
+/obj/effect/landmark/late_antag/ert,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aK" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 6
+ },
+/obj/machinery/meter,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aL" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1380;
+ master_tag = "ert1_control";
+ pixel_x = -22;
+ pixel_y = 32;
+ req_one_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aM" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ icon_state = "intact";
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aN" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aO" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/obj/item/clothing/accessory/storage/white_drop_pouches,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aP" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/suit/armor/vest/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/clothing/head/helmet/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aQ" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aR" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aS" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertstarshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"aT" = (
+/obj/machinery/light,
+/obj/machinery/ntnet_relay,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aU" = (
+/obj/structure/table/bench/padded,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aV" = (
+/obj/machinery/shieldgen,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aW" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/sniperrifle{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aX" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/obj/item/weapon/gun/energy/gun/nuclear,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aY" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"aZ" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/storage/box/shotgunshells,
+/obj/item/weapon/storage/box/shotgunshells,
+/obj/item/weapon/storage/box/shotgunshells,
+/obj/item/weapon/storage/box/shotgunammo,
+/obj/item/weapon/storage/box/shotgunammo,
+/obj/item/weapon/storage/box/stunshells,
+/obj/item/weapon/storage/box/stunshells,
+/obj/item/weapon/storage/box/flashshells,
+/obj/item/weapon/storage/box/flashshells,
+/obj/item/weapon/storage/box/beanbags,
+/obj/item/weapon/storage/box/beanbags,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ba" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/advanced_smg,
+/obj/item/ammo_magazine/m9mmAdvanced,
+/obj/item/ammo_magazine/m9mmAdvanced,
+/obj/item/ammo_magazine/m9mmAdvanced,
+/obj/item/ammo_magazine/m9mmAdvanced,
+/obj/item/weapon/gun/projectile/revolver/detective45,
+/obj/item/weapon/gun/projectile/revolver/detective45,
+/obj/item/ammo_magazine/s45,
+/obj/item/ammo_magazine/s45,
+/obj/item/ammo_magazine/s45,
+/obj/item/ammo_magazine/s45,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"bc" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/space_heater,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bd" = (
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"be" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bf" = (
+/obj/machinery/chem_master,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bg" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l";
+ dir = 4
+ },
+/turf/space,
+/turf/simulated/shuttle/plating/airless/carry,
+/area/shuttle/specops/centcom)
+"bh" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bi" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ertstarshutters";
+ name = "remote shutter control";
+ pixel_x = 30;
+ req_access = list(160)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bj" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bl" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bm" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bn" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bo" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"bp" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/meter,
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bq" = (
+/obj/machinery/light,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"br" = (
+/obj/machinery/vending/medical{
+ density = 0;
+ pixel_y = -32;
+ req_access = null
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bs" = (
+/obj/structure/closet/medical_wall{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/firstaid/bonemed,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/storage/firstaid/combat,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bt" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 4;
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bu" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bv" = (
+/obj/machinery/door/window/southleft{
+ name = "Cargo Hold";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bw" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/steel,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bx" = (
+/obj/machinery/door/window/southright{
+ name = "Cargo Hold";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"by" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bz" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"bA" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 1;
+ start_pressure = 740.5
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bB" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/pillbottles,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bC" = (
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose,
+/obj/item/weapon/storage/pill_bottle/iron,
+/obj/item/weapon/storage/pill_bottle/iron,
+/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bD" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"bE" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"bF" = (
+/obj/machinery/vending/security,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bG" = (
+/obj/machinery/atm{
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bI" = (
+/obj/machinery/vending/nifsoft_shop{
+ categories = 111;
+ emagged = 1;
+ name = "Hacked NIFSoft Shop";
+ prices = list()
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bJ" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"bK" = (
+/obj/machinery/sleep_console{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bL" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bM" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bN" = (
+/obj/machinery/vending/food,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bO" = (
+/obj/structure/toilet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/specops/centcom)
+"bP" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/light/small,
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/specops/centcom)
+"bQ" = (
+/obj/structure/mirror{
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/specops/centcom)
+"bR" = (
+/obj/structure/curtain/open/shower,
+/obj/machinery/shower{
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/specops/centcom)
+"bS" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bT" = (
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/storage/box/autoinjectors,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/freezer,
+/obj/item/weapon/storage/box/masks,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bU" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"bV" = (
+/obj/structure/frame/computer,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"bW" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "ERT";
+ tele_network = "centcom"
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"bX" = (
+/obj/machinery/door/airlock/silver{
+ name = "Toilet"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/specops/centcom)
+"bY" = (
+/obj/machinery/door/airlock/silver{
+ name = "Restroom"
+ },
+/turf/simulated/shuttle/floor/white,
+/area/shuttle/specops/centcom)
+"bZ" = (
+/obj/structure/undies_wardrobe,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ca" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/suit/armor/vest/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/clothing/head/helmet/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cb" = (
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/taperoll/police,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/structure/table/rack/steel,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cc" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/emps{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/smokes,
+/obj/item/weapon/storage/box/smokes,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cd" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"ce" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/obj/item/clothing/accessory/storage/black_drop_pouches,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cf" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/weapon/tool/crowbar,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/flashlight,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cg" = (
+/obj/machinery/power/thermoregulator,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"ch" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"ci" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cj" = (
+/obj/machinery/power/emitter,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"ck" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cl" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cm" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cn" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"co" = (
+/obj/machinery/computer/shuttle_control/multi/specops{
+ icon_state = "computer";
+ dir = 4
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cp" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cq" = (
+/obj/machinery/door/airlock/command{
+ name = "Bridge";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cr" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cs" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"ct" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cu" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cv" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cw" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/waist,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/hip,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cx" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cy" = (
+/obj/structure/medical_stand,
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 12;
+ pixel_y = 8
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cz" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cA" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/remote/blast_door{
+ id = "ertbridgeshutters";
+ name = "remote shutter control";
+ pixel_x = 30;
+ req_access = list(150)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cB" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cC" = (
+/obj/machinery/teleport/station,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cD" = (
+/obj/machinery/teleport/hub,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cE" = (
+/obj/machinery/light,
+/obj/structure/table/standard,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cF" = (
+/obj/structure/closet{
+ name = "custodial"
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/rig/ert/janitor,
+/obj/item/device/lightreplacer,
+/obj/item/device/lightreplacer,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cH" = (
+/obj/structure/table/glass,
+/obj/item/roller/adv,
+/obj/item/roller/adv{
+ pixel_y = 6
+ },
+/obj/item/roller/adv{
+ pixel_y = 12
+ },
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"cI" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/stack/nanopaste,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cJ" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"cK" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertbridgeshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"cL" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/melee/energy/sword/blue,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cM" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cN" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cO" = (
+/obj/machinery/computer/operating{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cP" = (
+/obj/machinery/optable,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cQ" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/shuttle/wall/dark/hard_corner,
+/area/shuttle/specops/centcom)
+"cR" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/machinery/cell_charger,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/obj/item/weapon/cell/hyper,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cS" = (
+/obj/machinery/door/window/northleft{
+ name = "Cargo Hold";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cT" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/belt/utility/full,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cU" = (
+/obj/machinery/door/window/northright{
+ name = "Cargo Hold";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cV" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/dispenser/oxygen,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cW" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 2;
+ start_pressure = 740.5
+ },
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cX" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cY" = (
+/obj/machinery/vending/engivend,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"cZ" = (
+/obj/machinery/vending/assist,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"da" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/ert,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"db" = (
+/obj/machinery/button/remote/blast_door{
+ id = "ertportshutters";
+ name = "remote shutter control";
+ pixel_x = 30;
+ req_access = list(160)
+ },
+/obj/structure/table/rack,
+/obj/item/clothing/suit/space/void/responseteam/command,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dc" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"de" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"df" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dg" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/maneuvering_jets,
+/obj/item/rig_module/maneuvering_jets,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dh" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/meter,
+/obj/machinery/shield_gen,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"di" = (
+/obj/machinery/shield_capacitor,
+/turf/simulated/shuttle/floor/darkred,
+/area/shuttle/specops/centcom)
+"dj" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dk" = (
+/obj/item/weapon/circuitboard/aiupload,
+/obj/item/weapon/circuitboard/borgupload,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/aiModule/nanotrasen,
+/obj/item/weapon/aiModule/reset,
+/obj/item/weapon/aiModule/freeformcore,
+/obj/item/weapon/aiModule/protectStation,
+/obj/item/weapon/aiModule/quarantine,
+/obj/item/weapon/aiModule/paladin,
+/obj/item/weapon/aiModule/robocop,
+/obj/item/weapon/aiModule/safeguard,
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil,
+/obj/item/device/t_scanner/advanced,
+/obj/item/device/t_scanner/advanced,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dl" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dm" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/phoron,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/glass,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/steel,
+/obj/fiftyspawner/plasteel,
+/obj/fiftyspawner/plasteel,
+/obj/fiftyspawner/plasteel,
+/obj/fiftyspawner/plasteel,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/rglass,
+/obj/fiftyspawner/phoronglass,
+/obj/fiftyspawner/phoronglass,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rods,
+/obj/fiftyspawner/rods,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dn" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"do" = (
+/obj/structure/table/glass,
+/obj/item/weapon/hand_tele,
+/obj/item/device/perfect_tele,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid,
+/obj/item/device/binoculars,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dq" = (
+/obj/structure/bed/chair/comfy/black,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dr" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/backpack/ert/commander,
+/obj/item/clothing/head/helmet/ert/command,
+/obj/item/clothing/suit/armor/vest/ert/command,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ds" = (
+/turf/simulated/floor/carpet,
+/area/shuttle/specops/centcom)
+"dt" = (
+/obj/structure/bed/chair/office/dark,
+/turf/simulated/floor/carpet,
+/area/shuttle/specops/centcom)
+"du" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor/carpet,
+/area/shuttle/specops/centcom)
+"dv" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/rescue_pharm,
+/obj/item/rig_module/sprinter,
+/obj/item/rig_module/sprinter,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dw" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/mounted,
+/obj/item/rig_module/mounted/egun,
+/obj/item/rig_module/mounted/egun,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dx" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/device/healthscanner,
+/obj/item/rig_module/device/healthscanner,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dy" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/plasmacutter,
+/obj/item/rig_module/device/plasmacutter,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dz" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dA" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1";
+ pixel_y = 0
+ },
+/obj/machinery/shield_gen/external,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dB" = (
+/obj/machinery/autolathe{
+ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
+ hacked = 1;
+ name = "Unlocked Autolathe"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dC" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 8;
+ icon_state = "shutter0";
+ id = "ertportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"dD" = (
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters";
+ req_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dE" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/specops/centcom)
+"dF" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/stamp/centcomm,
+/obj/item/weapon/storage/box/cdeathalarm_kit,
+/obj/item/weapon/storage/box/trackimp,
+/turf/simulated/floor/carpet,
+/area/shuttle/specops/centcom)
+"dG" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/pinpointer/advpinpointer,
+/obj/item/device/aicard,
+/turf/simulated/floor/carpet,
+/area/shuttle/specops/centcom)
+"dH" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"dI" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"dJ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "ertportshutters";
+ name = "Blast Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/simulated/shuttle/plating,
+/area/shuttle/specops/centcom)
+"dK" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/machinery/meter,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dL" = (
+/obj/machinery/access_button{
+ command = "cycle_interior";
+ frequency = 1381;
+ master_tag = "ert2_control";
+ pixel_x = -22;
+ pixel_y = -32;
+ req_one_access = list(103)
+ },
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dM" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dN" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/obj/item/bodybag/cryobag,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dO" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/accessory/storage/brown_drop_pouches,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/obj/item/clothing/glasses/welding/superior,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dP" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/obj/item/weapon/storage/belt/utility/chief/full,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dQ" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/suit/armor/vest/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/clothing/head/helmet/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dR" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = -35
+ },
+/obj/item/weapon/gun/projectile/deagle,
+/obj/item/ammo_magazine/m44,
+/obj/item/ammo_magazine/m44,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dS" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dT" = (
+/obj/machinery/light,
+/turf/simulated/floor/carpet,
+/area/shuttle/specops/centcom)
+"dU" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/turf/simulated/floor/carpet,
+/area/shuttle/specops/centcom)
+"dV" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/carpet,
+/area/shuttle/specops/centcom)
+"dW" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "ert2_shuttle_inner";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dX" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "ert2_shuttle_inner";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dY" = (
+/obj/machinery/vending/engineering,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"dZ" = (
+/obj/machinery/vending/tool,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ea" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "ert2_vent"
+ },
+/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
+ frequency = 1381;
+ id_tag = "ert2_control";
+ pixel_x = -24;
+ req_access = list(103);
+ tag_airpump = "ert2_vent";
+ tag_chamber_sensor = "ert2_sensor";
+ tag_exterior_door = "ert2_shuttle_outer";
+ tag_interior_door = "ert2_shuttle_inner"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"eb" = (
+/obj/machinery/light/small{
+ dir = 4;
+ pixel_y = 0
+ },
+/obj/machinery/airlock_sensor{
+ frequency = 1381;
+ id_tag = "ert2_sensor";
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 1;
+ frequency = 1381;
+ id_tag = "ert2_vent"
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ec" = (
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "ert2_shuttle_outer";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ed" = (
+/obj/machinery/access_button{
+ command = "cycle_exterior";
+ frequency = 1381;
+ master_tag = "ert2_control";
+ pixel_x = 24;
+ req_one_access = list(103)
+ },
+/obj/machinery/door/airlock/glass_external{
+ frequency = 1381;
+ icon_state = "door_locked";
+ id_tag = "ert2_shuttle_outer";
+ locked = 1;
+ name = "Ship Hatch"
+ },
+/obj/structure/fans/tiny,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"ee" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ dir = 4
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"ef" = (
+/obj/effect/floor_decal/industrial/danger{
+ dir = 1
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"eg" = (
+/obj/effect/floor_decal/industrial/danger/corner{
+ icon_state = "dangercorner";
+ dir = 8
+ },
+/turf/unsimulated/floor/steel,
+/area/centcom/specops)
+"mI" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"pn" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"rB" = (
+/obj/structure/table/rack/steel,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"zV" = (
+/obj/machinery/door/airlock/glass_command{
+ req_one_access = list(103)
+ },
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"HG" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = -32
+ },
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"TT" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+"WJ" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/turf/simulated/shuttle/floor/black,
+/area/shuttle/specops/centcom)
+
+(1,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(7,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ai
+ee
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(8,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ap
+bU
+cn
+ap
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ap
+ap
+bV
+co
+ap
+ap
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(10,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+bD
+bM
+bd
+cp
+cz
+cJ
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(11,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+bE
+bN
+bW
+bd
+cA
+cK
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(12,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ap
+ap
+ap
+cq
+ap
+ap
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(13,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ap
+bO
+bX
+aH
+cB
+ap
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+ap
+aF
+aS
+ap
+aj
+ap
+ap
+am
+aH
+cC
+ap
+aj
+ap
+dn
+dC
+ap
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+am
+aG
+ay
+ap
+aj
+ap
+bP
+ap
+aH
+cD
+ap
+aj
+ap
+do
+aH
+am
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+ax
+aH
+aT
+ap
+aj
+ap
+bQ
+bY
+aH
+cE
+ap
+aj
+ap
+dp
+aH
+ay
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+ay
+aH
+ay
+ap
+aj
+ap
+bR
+ap
+cr
+cF
+ap
+aj
+ap
+dq
+aH
+dR
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(18,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+ap
+aI
+ap
+ap
+ap
+ap
+am
+bZ
+aH
+WJ
+ap
+ap
+ap
+ap
+dD
+ap
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(19,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+az
+aJ
+az
+ap
+ap
+ap
+ap
+ap
+zV
+ap
+am
+ap
+da
+dr
+aH
+dS
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(20,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+az
+aJ
+aJ
+bh
+ap
+bF
+bS
+ca
+aH
+aH
+cL
+ap
+cX
+aH
+aH
+aH
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(21,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aq
+aA
+aJ
+aU
+aH
+bt
+aH
+aH
+bd
+bd
+aH
+aH
+bt
+aH
+ds
+dE
+dT
+dH
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(22,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ar
+az
+aJ
+aU
+aH
+aH
+aH
+bd
+bd
+bd
+bd
+aH
+aH
+aH
+dt
+dF
+dU
+dI
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(23,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+as
+az
+aJ
+aV
+bi
+ap
+TT
+bd
+cb
+cs
+bd
+rB
+ap
+db
+du
+dG
+dV
+dJ
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(24,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+ap
+ap
+ap
+ap
+am
+bG
+bd
+cc
+ct
+bd
+mI
+am
+ap
+ap
+ap
+ap
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(25,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+ap
+ap
+aW
+bj
+bu
+bH
+bd
+cd
+cu
+bd
+bq
+cR
+dc
+dv
+ap
+ap
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(26,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+aj
+aq
+aX
+bk
+bv
+aH
+bd
+ce
+cv
+bd
+aH
+cS
+dd
+dw
+dH
+aj
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(27,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+aj
+ar
+aY
+bl
+bw
+aV
+bd
+cf
+cw
+bd
+cM
+cT
+de
+dx
+dI
+aj
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(28,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+aj
+as
+aZ
+bm
+bx
+aH
+bd
+cg
+cx
+bd
+aH
+cU
+df
+dy
+dJ
+aj
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(29,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aj
+ap
+ap
+ba
+bn
+by
+bI
+bd
+ch
+ch
+bd
+cN
+cV
+dg
+dz
+ap
+ap
+aj
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(30,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+ap
+ap
+bb
+bo
+bz
+ap
+bd
+ci
+ci
+bd
+ap
+bb
+bo
+bz
+ap
+ap
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(31,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+am
+ap
+am
+aK
+bc
+bp
+bA
+ap
+bd
+cj
+cj
+bd
+ap
+cW
+dh
+dA
+dK
+am
+ap
+am
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(32,1,1) = {"
+ac
+af
+af
+af
+af
+ac
+af
+ak
+an
+at
+aB
+aL
+bd
+bd
+bd
+bJ
+bd
+bd
+bd
+bd
+bJ
+bd
+di
+di
+dL
+dW
+ea
+ec
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(33,1,1) = {"
+ac
+af
+af
+af
+ag
+ac
+ag
+ak
+ao
+au
+aB
+aM
+bd
+bd
+bd
+bd
+bd
+bd
+bd
+bd
+bd
+bd
+bd
+bd
+dM
+dX
+eb
+ed
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(34,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+am
+ap
+am
+aN
+aH
+aH
+HG
+am
+bd
+bd
+bd
+bd
+am
+pn
+aH
+aH
+dN
+am
+ap
+am
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(35,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+ap
+ap
+be
+be
+am
+ap
+bd
+ck
+bd
+cH
+ap
+am
+dj
+dj
+ap
+ap
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(36,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+aq
+aO
+aH
+aH
+aH
+ap
+bK
+bd
+cl
+bd
+bd
+cO
+ap
+dk
+aH
+aH
+dO
+dH
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(37,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+as
+aP
+aH
+aH
+bq
+ap
+bL
+bd
+bd
+bd
+bd
+cP
+ap
+dl
+aH
+aH
+dP
+dJ
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(38,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+aj
+ap
+aQ
+aH
+aH
+br
+am
+ap
+bT
+cm
+cy
+cI
+cQ
+ap
+dm
+aH
+aH
+dQ
+ap
+aj
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(39,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+ap
+ap
+aC
+aH
+aH
+aH
+bB
+ap
+ap
+ap
+ap
+ap
+ap
+cY
+aH
+aH
+aH
+dY
+ap
+ap
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(40,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+ap
+ap
+aD
+aR
+bf
+bs
+bC
+ap
+av
+av
+av
+av
+ap
+cZ
+aH
+dB
+aR
+dZ
+ap
+ap
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(41,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+ap
+ap
+ap
+ap
+ap
+am
+ap
+ap
+aw
+aE
+aE
+bg
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+ap
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(42,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+ap
+av
+av
+av
+av
+ap
+ap
+aj
+aj
+aj
+aj
+aj
+aj
+ap
+ap
+av
+av
+av
+av
+ap
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(43,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+aj
+ap
+aw
+aE
+aE
+bg
+ap
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ap
+aw
+aE
+aE
+bg
+ap
+aj
+ef
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(44,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ah
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+al
+eg
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(45,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(46,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(47,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(48,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(49,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(50,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
From e9384e92dabd762d1cb66c1526404d94cdfcfaed Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Mon, 7 Sep 2020 01:34:33 +0100
Subject: [PATCH 02/13] armory rework, mechbay isolation
---
maps/submaps/admin_use_vr/ert.dmm | 679 +++++++++++++++++++-----------
1 file changed, 429 insertions(+), 250 deletions(-)
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 5151551a7f..37335c1f4a 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -110,6 +110,16 @@
/turf/space,
/turf/space,
/area/shuttle/specops/centcom)
+"dY" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"ee" = (
/obj/effect/floor_decal/industrial/danger/corner{
dir = 4
@@ -147,18 +157,22 @@
/area/space)
"eE" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun/burst,
-/obj/item/weapon/gun/energy/gun/burst,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/gun/energy/lasershotgun,
-/obj/item/weapon/gun/energy/lasershotgun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/machinery/button/remote/blast_door{
+ desc = "[OOC] DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
+ dir = 4;
+ id = "NRV_DELTA";
+ name = "DELTA ACCESS CONTROL";
+ pixel_x = -24;
+ req_one_access = list(101)
+ },
/turf/simulated/floor/tiled/techfloor,
/area/space)
"eP" = (
@@ -197,6 +211,12 @@
/obj/effect/landmark/late_antag/ert,
/turf/simulated/shuttle/floor/black,
/area/space)
+"fV" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/melee/baton/fluff/stunstaff,
+/obj/item/weapon/melee/baton/fluff/stunstaff,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"fW" = (
/obj/machinery/door/blast/shutters{
density = 0;
@@ -308,7 +328,7 @@
/turf/simulated/shuttle/floor/black,
/area/space)
"gX" = (
-/obj/mecha/combat/gygax,
+/obj/mecha/medical/odysseus/loaded,
/obj/machinery/mech_recharger,
/turf/simulated/floor/tiled/techfloor,
/area/space)
@@ -318,14 +338,8 @@
/area/space)
"hd" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/storage/box/emps,
+/obj/item/weapon/storage/box/emps,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"hf" = (
@@ -428,8 +442,14 @@
/area/space)
"jv" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/xray,
-/obj/item/weapon/gun/energy/xray,
+/obj/item/weapon/gun/energy/gun/burst,
+/obj/item/weapon/gun/energy/gun/burst,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/lasershotgun,
+/obj/item/weapon/gun/energy/lasershotgun,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
@@ -573,9 +593,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/space)
"lA" = (
-/obj/mecha/working/ripley,
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled/techfloor,
+/obj/structure/sign/department/eng{
+ desc = "ACCESS VIA DIRECT AUTHORIZATION FROM CENTRAL ONLY.";
+ name = "MECH BAY"
+ },
+/turf/simulated/wall/rdshull,
/area/space)
"lL" = (
/obj/structure/sink{
@@ -718,16 +740,14 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/space)
-"oS" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
+"oQ" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ id = "NRV_DELTA";
+ layer = 4
},
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"pa" = (
@@ -848,6 +868,16 @@
/obj/machinery/ntnet_relay,
/turf/simulated/shuttle/floor/black,
/area/space)
+"qV" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"rc" = (
/obj/structure/sign/department/conference_room{
name = "OUTFITTING"
@@ -869,8 +899,12 @@
/area/space)
"rr" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/sniperrifle{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/sniperrifle{
+ battery_lock = 0
+ },
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
@@ -956,6 +990,22 @@
/obj/machinery/light/small,
/turf/simulated/shuttle/floor/white,
/area/space)
+"sn" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/weapon/gun/projectile/p92x/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/ammo_magazine/m9mm/large/preban,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"so" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 10
@@ -1014,9 +1064,10 @@
/area/space)
"sC" = (
/obj/structure/sign/department/armory{
- name = "BALLISTIC ARMORY";
+ name = "STANDARD ARMORY";
pixel_x = 32
},
+/obj/structure/table/rack/steel,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"sH" = (
@@ -1136,12 +1187,8 @@
/area/space)
"vg" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/sniperrifle{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/sniperrifle{
- battery_lock = 0
- },
+/obj/item/weapon/gun/energy/xray,
+/obj/item/weapon/gun/energy/xray,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
@@ -1165,6 +1212,15 @@
},
/turf/simulated/shuttle/plating,
/area/space)
+"vN" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(103)
+ },
+/obj/machinery/door/blast/regular{
+ id = "NRV_DELTA"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
"vS" = (
/obj/machinery/bodyscanner{
dir = 8
@@ -1286,9 +1342,11 @@
/area/space)
"yo" = (
/obj/structure/sign/department/armory{
- name = "ENERGY ARMORY";
+ desc = "HAS THE SHIT HIT THE FAN? THIS IS WHAT YOU NEED.";
+ name = "DELTA ARMORY";
pixel_x = 32
},
+/obj/structure/table/rack/steel,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"yu" = (
@@ -1299,8 +1357,18 @@
/area/space)
"yC" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/frags,
-/obj/item/weapon/storage/box/frags,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"yR" = (
@@ -1311,17 +1379,14 @@
/area/space)
"yY" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/as24,
-/obj/item/weapon/gun/projectile/automatic/as24,
-/obj/item/weapon/storage/box/shotgunshells/large,
-/obj/item/weapon/storage/box/shotgunshells/large,
-/obj/item/weapon/storage/box/shotgunammo/large,
-/obj/item/weapon/storage/box/shotgunammo/large,
-/obj/item/weapon/storage/box/empshells/large,
-/obj/item/weapon/storage/box/flashshells/large,
-/obj/item/weapon/storage/box/beanbags/large,
-/obj/item/weapon/storage/box/beanbags/large,
-/obj/item/weapon/storage/box/stunshells/large,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"za" = (
@@ -1363,6 +1428,17 @@
/obj/structure/fans/hardlight,
/turf/simulated/floor/reinforced,
/area/space)
+"zZ" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ dir = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"Ac" = (
/turf/simulated/shuttle/wall/dark/hard_corner,
/area/space)
@@ -1460,9 +1536,9 @@
/turf/simulated/wall/rdshull,
/area/space)
"Bj" = (
+/obj/item/weapon/storage/box/teargas,
+/obj/item/weapon/storage/box/teargas,
/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/emps,
-/obj/item/weapon/storage/box/emps,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"Br" = (
@@ -1607,8 +1683,17 @@
/area/space)
"DY" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/melee/baton/fluff/stunstaff,
-/obj/item/weapon/melee/baton/fluff/stunstaff,
+/obj/item/weapon/gun/projectile/automatic/as24,
+/obj/item/weapon/gun/projectile/automatic/as24,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/stunshells/large,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"Ec" = (
@@ -1731,9 +1816,12 @@
/turf/simulated/floor/tiled/techfloor,
/area/space)
"EN" = (
-/obj/mecha/medical/odysseus/loaded,
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled/techfloor,
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
/area/space)
"Fb" = (
/turf/simulated/floor/tiled/techmaint,
@@ -1744,6 +1832,18 @@
/obj/item/device/perfect_tele,
/turf/simulated/shuttle/floor/black,
/area/space)
+"Fz" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"FD" = (
/obj/machinery/sleep_console{
dir = 8
@@ -1757,12 +1857,30 @@
},
/turf/simulated/shuttle/floor/white,
/area/space)
+"FG" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"FJ" = (
/obj/machinery/sleeper{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
/area/space)
+"FK" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/frags,
+/obj/item/weapon/storage/box/frags,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"FM" = (
/obj/structure/table/rack/steel,
/obj/item/clothing/suit/space/void/responseteam/janitor,
@@ -1812,14 +1930,18 @@
/area/space)
"GC" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"GF" = (
@@ -1865,18 +1987,14 @@
/area/space)
"Hh" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/ionrifle/pistol,
-/obj/item/weapon/gun/energy/ionrifle/pistol,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"Hu" = (
@@ -1942,14 +2060,18 @@
/area/space)
"If" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/p90,
-/obj/item/weapon/gun/projectile/automatic/p90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"Ii" = (
@@ -2090,18 +2212,24 @@
/area/space)
"KR" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"KW" = (
@@ -2304,6 +2432,18 @@
/obj/item/weapon/rig/ert/security,
/turf/simulated/floor/tiled/techfloor,
/area/space)
+"NV" = (
+/obj/structure/closet/crate{
+ dir = 2
+ },
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/turf/simulated/floor/tiled/techmaint,
+/area/space)
"NY" = (
/obj/structure/table/rack/steel,
/obj/item/clothing/shoes/magboots/adv,
@@ -2367,6 +2507,13 @@
/obj/machinery/vending/tool,
/turf/simulated/floor/tiled/techfloor,
/area/space)
+"OG" = (
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id = "NRV_DELTA"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"OH" = (
/turf/simulated/floor/tiled/techfloor,
/area/space)
@@ -2377,14 +2524,12 @@
/area/space)
"Pi" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"Pl" = (
@@ -2474,20 +2619,30 @@
/area/space)
"PS" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/z8,
-/obj/item/weapon/gun/projectile/automatic/z8,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762/ap,
-/obj/item/ammo_magazine/m762/ap,
-/obj/item/ammo_magazine/m762/ap,
-/obj/item/ammo_magazine/m762/ap,
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"PX" = (
@@ -2688,6 +2843,24 @@
/obj/structure/fans/tiny,
/turf/simulated/shuttle/floor/black,
/area/space)
+"SX" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/turf/simulated/floor/tiled/techfloor,
+/area/space)
"Tg" = (
/obj/structure/sign/department/eng,
/turf/simulated/wall/rdshull,
@@ -2728,7 +2901,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/space)
"TR" = (
-/obj/mecha/combat/marauder,
+/obj/mecha/combat/gygax,
/obj/machinery/mech_recharger,
/turf/simulated/floor/tiled/techfloor,
/area/space)
@@ -2940,18 +3113,22 @@
/area/space)
"XG" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/melee/baton,
-/obj/item/weapon/melee/baton,
-/obj/item/weapon/melee/baton,
-/obj/item/weapon/melee/baton,
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"XX" = (
@@ -3042,12 +3219,14 @@
/area/space)
"Zv" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/l6_saw,
-/obj/item/ammo_magazine/m545saw,
-/obj/item/ammo_magazine/m545saw,
-/obj/item/weapon/gun/projectile/automatic/l6_saw,
-/obj/item/ammo_magazine/m545saw,
-/obj/item/ammo_magazine/m545saw,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
/turf/simulated/floor/tiled/techfloor,
/area/space)
"ZM" = (
@@ -11284,9 +11463,9 @@ GI
Fb
Fb
sC
-OH
-OH
-OH
+UJ
+UJ
+UJ
yo
Fb
Fb
@@ -11430,8 +11609,8 @@ GI
GI
GI
GI
-tp
-tp
+vN
+vN
GI
GI
Ii
@@ -11569,7 +11748,7 @@ Fb
Fb
nD
KR
-OO
+zZ
eE
nD
Fb
@@ -11706,12 +11885,12 @@ Fb
Fb
ZM
GI
-If
+fV
Fb
Fb
Fb
GC
-OO
+zZ
Hh
Fb
Fb
@@ -11728,16 +11907,16 @@ GI
yz
yz
yz
+Hh
+Fb
+Fb
+nD
+sn
+OO
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+nD
+Fb
+Fb
yz
yz
yz
@@ -11853,10 +12032,10 @@ Fb
Pp
Fb
PS
-OO
+zZ
XG
Fb
-Pp
+NV
Fb
rr
GI
@@ -11870,16 +12049,16 @@ GI
yz
yz
yz
+Hh
+Fb
+Fb
+Fb
+FG
+OO
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+Fb
+Fb
+Fb
yz
yz
yz
@@ -11995,12 +12174,12 @@ Fb
xC
Fb
OH
-OH
+OG
OH
Fb
xC
Fb
-rr
+SX
GI
tE
Fb
@@ -12012,17 +12191,17 @@ GI
yz
yz
yz
+gk
+Fb
+Pp
+Fb
yz
+OO
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+Fb
+Pp
+Fb
+dY
yz
yz
yz
@@ -12137,12 +12316,12 @@ Fb
xC
Fb
OH
-OH
+OG
OH
Fb
xC
Fb
-oS
+DY
GI
UJ
Fb
@@ -12154,16 +12333,16 @@ GI
yz
yz
yz
+sS
+Fb
+xC
+Fb
+OH
+OH
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+Fb
+xC
+Fb
yz
yz
yz
@@ -12279,12 +12458,12 @@ Fb
oC
Fb
rY
-OO
+zZ
DY
Fb
oC
Fb
-oS
+mb
GI
uK
Fb
@@ -12296,16 +12475,16 @@ GI
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+hd
+Fb
+xC
+Fb
+OH
+OH
+OH
+Fb
+xC
+Fb
yz
yz
yz
@@ -12421,7 +12600,7 @@ Fb
Fb
Fb
yY
-OO
+zZ
Pi
Fb
Fb
@@ -12438,17 +12617,17 @@ GI
yz
yz
yz
+um
+Fb
+oC
+Fb
+rY
+OO
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+Fb
+oC
+Fb
+Fz
yz
yz
yz
@@ -12563,12 +12742,12 @@ Fb
Fb
Fb
Zv
-OO
+zZ
hd
Fb
Fb
Fb
-mb
+FK
GI
Oa
Fb
@@ -12580,16 +12759,16 @@ GI
yz
yz
yz
+KO
+Fb
+Fb
+Fb
yz
+OO
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+Fb
+Fb
+Fb
yz
yz
yz
@@ -12706,10 +12885,10 @@ tp
tp
OO
Yd
-OO
-tp
-tp
-OO
+oQ
+vN
+vN
+oQ
GI
GI
rp
@@ -12722,16 +12901,16 @@ yz
yz
yz
yz
+FK
+Fb
+Fb
+Fb
+qV
+OO
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+Fb
+Fb
+Fb
yz
yz
yz
@@ -14257,11 +14436,11 @@ yz
yz
wl
GI
+GI
+EN
EN
-Fb
-Fb
lA
-OO
+GI
je
Br
QT
@@ -14403,7 +14582,7 @@ gX
Fb
Fb
my
-OO
+GI
je
Br
GI
@@ -14545,7 +14724,7 @@ TR
Fb
Fb
hf
-OO
+GI
je
Br
un
@@ -14687,7 +14866,7 @@ GU
Fb
Fb
WA
-OO
+GI
je
Br
Br
@@ -14829,7 +15008,7 @@ Ur
Fb
Fb
Vn
-OO
+GI
je
Br
Br
@@ -14971,7 +15150,7 @@ AV
Fb
Fb
lc
-OO
+GI
je
Br
Br
From 6e764c247509e96adde6cce37e41a8fbc8a4a4ac Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Mon, 7 Sep 2020 04:15:53 +0100
Subject: [PATCH 03/13] ready for ingame testing
---
maps/submaps/admin_use_vr/ert.dm | 88 +-
maps/submaps/admin_use_vr/ert.dmm | 16984 +++++++++++++----------
maps/tether/submaps/_tether_submaps.dm | 1 +
3 files changed, 10035 insertions(+), 7038 deletions(-)
diff --git a/maps/submaps/admin_use_vr/ert.dm b/maps/submaps/admin_use_vr/ert.dm
index aaec031655..89cf54c617 100644
--- a/maps/submaps/admin_use_vr/ert.dm
+++ b/maps/submaps/admin_use_vr/ert.dm
@@ -8,7 +8,7 @@
/datum/map_template/om_ships/ert_ship
name = "OM Ship - ERT Ship (New Z)"
desc = "NT Emergency Response Ship."
- mappath = 'ertship.dmm'
+ mappath = 'ert.dmm'
// The ship's area(s)
/area/ship/ert
@@ -19,36 +19,72 @@
/area/ship/ert/engineering
name = "\improper NRV Von Braun - Engineering"
-/area/ship/ert/engineeringcntrl
- name = "\improper NRV Von Braun - Engineering Power Room"
+ icon_state = "engineering"
+
+/area/ship/ert/eng_storage
+ name = "\improper NRV Von Braun - Engineering Storage"
+ icon_state = "storage"
+
/area/ship/ert/bridge
name = "\improper NRV Von Braun - Bridge"
+ icon_state = "centcom_command"
+
/area/ship/ert/atmos
name = "\improper NRV Von Braun - Atmospherics"
-/area/ship/ert/engine
+ icon_state = "atmos"
+
+/area/ship/ert/mech_bay
name = "\improper NRV Von Braun - RIG & Mech Bay"
-/area/ship/ert/engine1
- name = "\improper NRV Von Braun - Engine"
-/area/ship/ert/armoury_en
- name = "\improper NRV Von Braun - Energy Armoury"
-/area/ship/ert/armoury_bl
- name = "\improper NRV Von Braun - Ballistics Armoury"
+ icon_state = "yellow"
+
+/area/ship/ert/armoury_st
+ name = "\improper NRV Von Braun - Standard Armoury"
+ icon_state = "security"
+
+/area/ship/ert/armoury_dl
+ name = "\improper NRV Von Braun - Delta Armoury"
+ icon_state = "darkred"
+
/area/ship/ert/hangar
name = "\improper NRV Von Braun - Hangar"
+ icon_state = "hangar"
+
/area/ship/ert/barracks
name = "\improper NRV Von Braun - Barracks"
+ icon_state = "centcom_crew"
+
/area/ship/ert/med
name = "\improper NRV Von Braun - Medical"
-/area/ship/ert/med1
+ icon_state = "centcom_medical"
+
+/area/ship/ert/med_surg
name = "\improper NRV Von Braun - Surgery"
-/area/ship/ert/hall1
- name = "\improper NRV Von Braun - Corridor"
-/area/ship/ert/hall2
- name = "\improper NRV Von Braun - Corridor"
-/area/ship/ert/southairlock
+ icon_state = "surgery"
+
+/area/ship/ert/hallways
+ name = "\improper NRV Von Braun - Corridors"
+ icon_state = "centcom_Hallway"
+
+/area/ship/ert/dock_star
name = "\improper NRV Von Braun - Starboard Airlock"
-/area/ship/ert/northairlock
+ icon_state = "exit"
+
+/area/ship/ert/dock_port
name = "\improper NRV Von Braun - Port Airlock"
+ icon_state = "exit"
+
+/area/ship/ert/teleporter
+ name = "\improper NRV Von Braun - Teleporter"
+ icon_state = "teleporter"
+
+/area/ship/ert/commander
+ name = "\improper NRV Von Braun - Commander's Room"
+ icon_state = "head_quarters"
+
+/area/shuttle/ert_ship_boat
+ name = "\improper NRB Robineau"
+ icon_state = "yellow"
+ requires_power = 0
// The 'shuttle' of the excursion shuttle
// /datum/shuttle/autodock/overmap/ert_ship
@@ -70,15 +106,19 @@
color = "#9999ff" //Red
vessel_mass = 8000
vessel_size = SHIP_SIZE_LARGE
- initial_generic_waypoints = list("ert_ship_fore", "ert_ship_aft", "ert_ship_port", "ert_ship_starboard", "ert_ship_base_dock")
+ initial_generic_waypoints = list("ert_ship_fore", "ert_ship_aft", "ert_ship_port", "ert_ship_star", "ert_ship_base_dock")
initial_restricted_waypoints = list("NRB Von Braun's Bay" = list("omship_spawn_ert_lander"))
+/obj/effect/landmark/map_data/ert_ship
+ height = 1
-//The boat's area
-/area/shuttle/ert_ship_boat
- name = "\improper Carrier's Ship's Boat"
- icon_state = "yellow"
- requires_power = 0
+/obj/effect/shuttle_landmark/premade/ert_ship_port
+ name = "NRV Von Braun - Port Airlock"
+ landmark_tag = "ert_ship_port"
+
+/obj/effect/shuttle_landmark/premade/ert_ship_star
+ name = "NRV Von Braun - Starboard Airlock"
+ landmark_tag = "ert_ship_star"
// The shuttle's 'shuttle' computer
/obj/machinery/computer/shuttle_control/explore/ert_ship_boat
@@ -92,7 +132,7 @@
base_turf = /turf/simulated/floor/plating
landmark_tag = "omship_spawn_ert_lander"
docking_controller = "ert_boarding_shuttle_dock"
- shuttle_type = /datum/shuttle/autodock/overmap/mercboat
+ shuttle_type = /datum/shuttle/autodock/overmap/ert_ship_boat
// The 'shuttle'
/datum/shuttle/autodock/overmap/ert_ship_boat
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 37335c1f4a..66238a82ab 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -1,294 +1,1902 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aa" = (
-/turf/unsimulated/wall,
+/obj/effect/overmap/visitable/ship/ert_ship,
+/turf/space,
/area/space)
"ab" = (
-/turf/unsimulated/wall,
-/area/centcom/specops)
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/barracks)
"ac" = (
-/turf/unsimulated/wall{
- icon = 'icons/obj/doors/Doorext.dmi';
- icon_state = "door_locked";
- name = "Sealed Door"
- },
-/area/centcom/specops)
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/dock_port)
"ad" = (
-/obj/effect/floor_decal/industrial/danger/corner,
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/dock_port)
"ae" = (
-/obj/effect/floor_decal/industrial/danger,
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/machinery/airlock_sensor/airlock_exterior{
+ pixel_x = 24;
+ pixel_y = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
"af" = (
-/turf/unsimulated/floor{
- icon_state = "steel"
- },
-/area/centcom/specops)
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/mech_bay)
"ag" = (
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- frequency = 1380;
- id_tag = "ert_shuttle_bay";
- name = "shuttle bay controller";
- pixel_x = 25;
- pixel_y = 0;
- tag_door = "ert_shuttle_bay_door"
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
},
-/turf/unsimulated/floor{
- icon_state = "steel"
- },
-/area/centcom/specops)
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/mech_bay)
"ah" = (
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 1;
- icon_state = "dangercorner"
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/mech_bay)
"ai" = (
-/obj/effect/floor_decal/industrial/danger{
- dir = 4
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/mech_bay)
"aj" = (
-/turf/unsimulated/floor/techfloor_grid,
-/area/centcom/specops)
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engineering)
"ak" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "ert_shuttle_bay_door";
- locked = 1
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6;
+ icon_state = "intact"
},
-/turf/unsimulated/floor{
- icon_state = "steel"
- },
-/area/centcom/specops)
+/turf/simulated/wall/rdshull,
+/area/ship/ert/dock_port)
"al" = (
-/obj/effect/floor_decal/industrial/danger{
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8
},
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
"am" = (
-/turf/simulated/shuttle/wall/dark/hard_corner,
-/area/shuttle/specops/centcom)
+/obj/machinery/airlock_sensor{
+ pixel_x = 24
+ },
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
"an" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "ert1_shuttle_outer";
- locked = 1;
- name = "Shuttle Hatch"
+/obj/structure/table/rack/steel,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/machinery/light/no_nightshift{
+ dir = 1
},
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
"ao" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "ert1_shuttle_outer";
- locked = 1;
- name = "Shuttle Hatch"
- },
-/obj/structure/fans/tiny,
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1380;
- master_tag = "ert1_control";
- pixel_x = 24;
- req_one_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/shuttle/specops/centcom)
+/obj/structure/table/rack/steel,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
"ap" = (
-/turf/simulated/shuttle/wall/dark,
-/area/shuttle/specops/centcom)
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"aC" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med_surg)
+"aD" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/tritium,
+/obj/fiftyspawner/tritium,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"aI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"aQ" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/stack/nanopaste/advanced,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"aV" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/eng_storage)
"bg" = (
/turf/space,
/turf/space,
-/area/shuttle/specops/centcom)
-"dY" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
/area/space)
-"ee" = (
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 4
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
-"ef" = (
-/obj/effect/floor_decal/industrial/danger{
+"bp" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"br" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"bI" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/machinery/light/no_nightshift{
dir = 1
},
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
-"eg" = (
-/obj/effect/floor_decal/industrial/danger/corner{
- dir = 8;
- icon_state = "dangercorner"
- },
-/turf/unsimulated/floor/steel,
-/area/centcom/specops)
-"ei" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"er" = (
-/obj/machinery/computer/mecha{
+/area/ship/ert/barracks)
+"bJ" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"bM" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/mech_bay)
+"bO" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/atmos)
+"bR" = (
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/atmos)
+"bW" = (
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/atmos)
+"ch" = (
+/obj/machinery/door/airlock/glass_external,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"ci" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med_surg)
+"ck" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_star)
+"cs" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 4;
+ start_pressure = 740.5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
+"cv" = (
+/obj/machinery/shield_gen,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"cC" = (
+/obj/effect/floor_decal/corner/white{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"eE" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/p90,
-/obj/item/weapon/gun/projectile/automatic/p90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/machinery/button/remote/blast_door{
- desc = "[OOC] DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
- dir = 4;
- id = "NRV_DELTA";
- name = "DELTA ACCESS CONTROL";
- pixel_x = -24;
- req_one_access = list(101)
+/area/ship/ert/eng_storage)
+"cO" = (
+/obj/machinery/computer/operating,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"cV" = (
+/obj/machinery/vending/assist,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"cW" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "VB APC - North";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
},
/turf/simulated/floor/tiled/techfloor,
-/area/space)
+/area/ship/ert/dock_port)
+"cY" = (
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"dd" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/wall/rdshull,
+/area/ship/ert/dock_port)
+"dg" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
+"dk" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"dn" = (
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 8;
+ id_tag = "von_braun_port";
+ master_tag = "von_braun_master";
+ name = "Port Docking Control";
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
+"do" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"dp" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/weapon/rig/ert/assetprotection,
+/obj/item/weapon/rig/ert/assetprotection,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"dr" = (
+/obj/structure/table/rack/steel,
+/obj/item/toy/plushie/squid/blue{
+ desc = "A small, cute and loveable squid friend. This one is blue. Despite the name, it seems no more or less deadly than your regular plush squid.";
+ name = "NT \'Deathsquid\' Plushie"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"dx" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"dA" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"dB" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/suit/armor/swat,
+/obj/item/clothing/mask/gas/commando,
+/obj/item/clothing/mask/gas/commando,
+/obj/item/clothing/mask/gas/commando,
+/obj/item/clothing/mask/gas/commando,
+/obj/item/clothing/mask/gas/commando,
+/obj/item/clothing/mask/gas/commando,
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/obj/item/clothing/head/helmet/space/deathsquad{
+ name = "swat helmet"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"dT" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 8;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
+"dV" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"dW" = (
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/mech_bay)
+"dX" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
+"dY" = (
+/obj/machinery/door/airlock/glass_external,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
+"ee" = (
+/obj/machinery/door/airlock/glass_external,
+/obj/effect/map_helper/airlock/door/int_door,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
+"ef" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"eg" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/machinery/atm{
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"es" = (
+/obj/structure/closet/crate{
+ dir = 2
+ },
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/item/ammo_magazine/m9mml/ap,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"eD" = (
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med)
+"eF" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"eH" = (
+/obj/structure/sign/department/cargo{
+ name = "ENGINEERING SUPPLIES"
+ },
+/turf/simulated/wall/rdshull,
+/area/ship/ert/bridge)
+"eI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
"eP" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"eX" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"ff" = (
+/obj/machinery/vending/fitness,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"fj" = (
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ dir = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"fk" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "VB APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"fr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
+"fx" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/rescue_pharm,
+/obj/item/rig_module/sprinter,
+/obj/item/rig_module/sprinter,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"fE" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/mounted,
+/obj/item/rig_module/mounted/egun,
+/obj/item/rig_module/mounted/egun,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"fP" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/combat,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/chem_dispenser/injector,
+/obj/item/rig_module/device/healthscanner,
+/obj/item/rig_module/device/healthscanner,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"fU" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/plasmacutter,
+/obj/item/rig_module/device/plasmacutter,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"fZ" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/device/drill,
+/obj/item/rig_module/maneuvering_jets,
+/obj/item/rig_module/maneuvering_jets,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"ga" = (
/obj/structure/sign/department/operational,
/turf/simulated/wall/rdshull,
-/area/space)
-"eX" = (
-/obj/machinery/body_scanconsole,
+/area/ship/ert/med_surg)
+"gc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"gf" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"fj" = (
-/obj/structure/bed/chair/office/dark,
-/turf/simulated/floor/carpet,
-/area/space)
-"fD" = (
+/area/ship/ert/med_surg)
+"gh" = (
+/obj/mecha/medical/odysseus/loaded,
+/obj/machinery/mech_recharger,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"gk" = (
+/obj/machinery/shieldwallgen,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"gn" = (
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"gw" = (
+/obj/mecha/combat/gygax,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"gx" = (
/obj/structure/table/rack/steel,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/obj/item/clothing/shoes/magboots,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"fE" = (
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/melee/baton,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"gy" = (
+/obj/mecha/combat/durand,
+/obj/machinery/mech_recharger,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"gA" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"gF" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/shocker,
+/obj/item/mecha_parts/mecha_equipment/shocker,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "VB APC - North";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"gN" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"gW" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"gX" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/emps,
+/obj/item/weapon/storage/box/emps,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"gZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"ha" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"hj" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/combat_shield,
+/obj/item/mecha_parts/mecha_equipment/combat_shield,
+/obj/item/mecha_parts/mecha_equipment/omni_shield,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"hk" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"hv" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"hx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
+"hH" = (
+/obj/machinery/airlock_sensor{
+ pixel_y = 21
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
+"hN" = (
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"hP" = (
/obj/machinery/autolathe{
desc = "Your typical Autolathe. It appears to have much more options than your regular one, however...";
hacked = 1;
name = "Unlocked Autolathe"
},
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"fU" = (
-/obj/effect/landmark/late_antag/ert,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"fV" = (
+/area/ship/ert/eng_storage)
+"hU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
+"hV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"hY" = (
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/dock_star)
+"ia" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/melee/baton/fluff/stunstaff,
-/obj/item/weapon/melee/baton/fluff/stunstaff,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
+/obj/item/clothing/accessory/holster/leg,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"fW" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
+/area/ship/ert/barracks)
+"ij" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"ik" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
+"ip" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"iy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced{
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"iC" = (
+/obj/item/device/healthanalyzer/advanced,
+/obj/item/device/healthanalyzer/advanced,
+/obj/item/device/healthanalyzer/advanced,
+/obj/structure/table/rack/steel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/shuttle/plating,
-/area/space)
-"fZ" = (
-/obj/structure/closet/crate/medical,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/weapon/storage/mre/menu11,
-/obj/item/stack/nanopaste/advanced,
-/obj/item/stack/nanopaste/advanced,
-/obj/item/stack/nanopaste/advanced,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose,
-/obj/item/weapon/storage/pill_bottle/iron,
-/obj/item/weapon/storage/pill_bottle/iron,
-/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/extinguisher/mini,
-/obj/item/weapon/storage/box/syringes,
-/obj/item/weapon/storage/box/syringes{
- pixel_x = 2;
- pixel_y = 2
- },
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"gk" = (
+/area/ship/ert/med)
+"iO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"iR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"iW" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"iX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"jv" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"jz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"jA" = (
+/obj/machinery/teleport/hub,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"jD" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"jK" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"jQ" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"jU" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"jY" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"kf" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/anti_photons,
-/obj/item/weapon/storage/box/anti_photons,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/weapon/gun/projectile/automatic/pdw,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
+/obj/item/ammo_magazine/m9mml,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"gn" = (
-/obj/structure/bed/chair/comfy/black,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"gx" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+/area/ship/ert/armoury_st)
+"ki" = (
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"kl" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"kn" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/mortar,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"kx" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"kz" = (
+/obj/structure/closet/crate{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"kG" = (
+/obj/effect/floor_decal/industrial/warning{
dir = 1;
- frequency = 1381;
- id_tag = "ert2_vent"
+ icon_state = "warning"
},
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- frequency = 1381;
- id_tag = "ert2_control";
- pixel_x = -24;
- req_access = list(103);
- tag_airpump = "ert2_vent";
- tag_chamber_sensor = "ert2_sensor";
- tag_exterior_door = "ert2_shuttle_outer";
- tag_interior_door = "ert2_shuttle_inner"
+/obj/effect/floor_decal/corner/white{
+ dir = 10;
+ icon_state = "corner_white"
},
-/turf/simulated/shuttle/floor/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"kJ" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/atmos)
+"kL" = (
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engineering)
+"kM" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"kO" = (
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/barracks)
+"kP" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"kS" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"kT" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"kX" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/turf/simulated/wall/rdshull,
+/area/ship/ert/dock_star)
+"kY" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6;
+ icon_state = "intact"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"lm" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"lq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"ls" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"lt" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"lu" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"lv" = (
+/obj/structure/closet/wardrobe/ert,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/synth,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"lx" = (
+/obj/machinery/door/airlock/external,
+/obj/machinery/airlock_sensor/airlock_exterior{
+ pixel_x = 24;
+ pixel_y = -11
+ },
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"lz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"lL" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
+"lR" = (
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
+"lV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
+"lX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
+"mb" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"mh" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"mj" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"mq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"mr" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"mt" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"my" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"mC" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"mF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"mI" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"mJ" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/durasteel,
+/obj/fiftyspawner/durasteel,
+/obj/fiftyspawner/durasteel,
+/obj/fiftyspawner/durasteel,
+/obj/fiftyspawner/titanium_glass,
+/obj/fiftyspawner/titanium_glass,
+/obj/fiftyspawner/titanium_glass,
+/obj/fiftyspawner/titanium_glass,
+/obj/fiftyspawner/plastitanium_glass,
+/obj/fiftyspawner/plastitanium_glass,
+/obj/fiftyspawner/plastitanium_glass,
+/obj/fiftyspawner/plastitanium_glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"mN" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"mR" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"mT" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"mV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"mZ" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"na" = (
+/obj/machinery/airlock_sensor{
+ pixel_y = -23
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"nb" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/xray,
+/obj/item/weapon/gun/energy/xray,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/machinery/light/no_nightshift,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"nc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"nl" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"nn" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"np" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"nq" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"nt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"nv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"nx" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/atmos)
+"nz" = (
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"nB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"nC" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/dock_star)
+"nP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/mech_bay)
+"nR" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/clusterbang,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"nX" = (
+/turf/space,
+/area/ship/ert/engineering)
+"nZ" = (
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"og" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 8;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
+"ok" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"op" = (
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"os" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"oy" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"oC" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"oE" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"oO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
+"oQ" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"oV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
+"oW" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"oX" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/weapon/storage/backpack/ert/engineer,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/obj/item/clothing/suit/space/void/responseteam/engineer,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"pa" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/item/clothing/accessory/storage/white_vest,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"pb" = (
+/obj/structure/medical_stand,
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 12;
+ pixel_y = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"pd" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"pf" = (
+/obj/effect/landmark/map_data/ert_ship,
+/turf/space,
/area/space)
-"gD" = (
+"pm" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"pn" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/weapon/storage/backpack/ert/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/item/clothing/suit/space/void/responseteam/medical,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"po" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"pq" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"pt" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/clothing/suit/space/void/responseteam/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/item/weapon/storage/belt/janitor,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"pv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"pz" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"pA" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "ERT_Shuttle_Rear";
+ name = "ERT Shuttle Access";
+ pixel_y = -25;
+ req_access = list(101)
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "ERT_Shuttle_Rear";
+ name = "Boarding Hatch"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"pG" = (
+/obj/structure/closet{
+ name = "custodial"
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/mop,
+/obj/item/weapon/rig/ert/janitor,
+/obj/item/device/lightreplacer,
+/obj/item/device/lightreplacer,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"pI" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/obj/item/ammo_magazine/m545/ap/ext,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"pK" = (
+/obj/structure/sign/department/eng{
+ name = "RIG AND MECH BAY"
+ },
+/turf/simulated/wall/rdshull,
+/area/ship/ert/mech_bay)
+"pM" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"pN" = (
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ dir = 8;
+ id_tag = "von_braun_star";
+ master_tag = "von_braun_master";
+ name = "Starboard Docking Control";
+ pixel_x = 22
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"pU" = (
+/obj/machinery/body_scanconsole,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"pW" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"pY" = (
/obj/structure/table/steel_reinforced,
/obj/item/weapon/cell/hyper,
/obj/item/weapon/cell/hyper,
@@ -305,1951 +1913,1183 @@
/obj/item/weapon/cell/hyper,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"gF" = (
-/obj/machinery/atmospherics/pipe/tank/air{
- dir = 1;
- start_pressure = 740.5
- },
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"gN" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"gS" = (
-/obj/machinery/door/airlock/command{
- name = "Captain's Quarters";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"gX" = (
-/obj/mecha/medical/odysseus/loaded,
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"ha" = (
-/obj/machinery/vending/security,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"hd" = (
+/area/ship/ert/mech_bay)
+"qa" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/emps,
-/obj/item/weapon/storage/box/emps,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
+/obj/item/weapon/rig/ert/security,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"hf" = (
+/area/ship/ert/mech_bay)
+"qd" = (
/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/speedboost,
-/obj/item/mecha_parts/mecha_equipment/speedboost,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
+/obj/item/weapon/rig/ert/engineer,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"hj" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/flashbangs,
-/obj/item/weapon/storage/box/flashbangs,
-/obj/item/weapon/storage/box/flashbangs,
-/obj/item/weapon/storage/box/emps{
- pixel_x = 4;
- pixel_y = 4
+/area/ship/ert/mech_bay)
+"ql" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/weapon/storage/box/smokes,
-/obj/item/weapon/storage/box/smokes,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"hH" = (
-/obj/structure/mirror{
- pixel_x = 0;
- pixel_y = 28
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/simulated/shuttle/floor/white,
-/area/space)
-"hO" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"hU" = (
-/obj/structure/bed/chair{
- dir = 8
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"hZ" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"ia" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- dir = 4;
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"id" = (
-/obj/machinery/computer/communications,
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"iy" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/weapon/storage/backpack/ert/medical,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"iC" = (
-/obj/structure/window/plastitanium,
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"iR" = (
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/shutters{
- density = 0;
- icon_state = "shutter0";
- id = "ertstarshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"je" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"jv" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun/burst,
-/obj/item/weapon/gun/energy/gun/burst,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/gun/energy/lasershotgun,
-/obj/item/weapon/gun/energy/lasershotgun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"jC" = (
-/obj/structure/bed/chair/bay/shuttle{
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"jD" = (
-/obj/machinery/vending/engivend,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"jV" = (
-/obj/structure/sign/department/bridge,
-/turf/simulated/wall/rdshull,
-/area/space)
-"jY" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertstarshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"ki" = (
-/obj/machinery/door/airlock/glass_command{
- req_one_access = list(103)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"kl" = (
-/obj/structure/table/standard,
-/obj/item/weapon/soap,
-/obj/item/weapon/soap,
-/obj/item/weapon/soap,
-/obj/item/weapon/soap,
-/obj/item/weapon/towel{
- color = "#0000FF"
- },
-/obj/item/weapon/towel{
- color = "#0000FF"
- },
-/obj/item/weapon/towel{
- color = "#0000FF"
- },
-/obj/item/weapon/towel{
- color = "#0000FF"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"ks" = (
-/obj/machinery/computer/station_alert/all{
- dir = 4;
- icon_state = "computer"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"kC" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/chem_dispenser/combat,
-/obj/item/rig_module/chem_dispenser/combat,
-/obj/item/rig_module/chem_dispenser/injector,
-/obj/item/rig_module/chem_dispenser/injector,
-/obj/item/rig_module/device/healthscanner,
-/obj/item/rig_module/device/healthscanner,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"kJ" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = 32
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"kK" = (
-/obj/machinery/door/window/northright{
- name = "Cargo Hold";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"kM" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"kO" = (
-/obj/structure/shuttle/engine/heater{
- dir = 4;
- icon_state = "heater"
- },
-/turf/simulated/shuttle/plating/airless,
-/area/space)
-"kP" = (
+/area/ship/ert/med)
+"qo" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/belt/utility/chief/full,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/weapon/storage/toolbox/mechanical,
-/obj/item/weapon/storage/toolbox/electrical,
-/obj/item/weapon/storage/toolbox/electrical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
+/obj/item/weapon/rig/ert/medical,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"lc" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/cloak,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"ls" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"lt" = (
-/obj/structure/table/bench/padded,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"lv" = (
-/obj/machinery/light,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"lz" = (
-/obj/structure/bed/chair/bay/shuttle,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"lA" = (
+/area/ship/ert/mech_bay)
+"qy" = (
/obj/structure/sign/department/eng{
desc = "ACCESS VIA DIRECT AUTHORIZATION FROM CENTRAL ONLY.";
name = "MECH BAY"
},
/turf/simulated/wall/rdshull,
-/area/space)
-"lL" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 8
- },
-/obj/structure/medical_stand,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"lS" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/plating,
-/area/space)
-"mb" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"mq" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9;
- icon_state = "intact"
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"my" = (
+/area/ship/ert/mech_bay)
+"qz" = (
/obj/mecha/working/ripley/firefighter,
/obj/machinery/mech_recharger,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"mT" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/obj/item/stack/nanopaste,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"mV" = (
-/obj/machinery/atm{
- pixel_x = 0;
+/area/ship/ert/mech_bay)
+"qA" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 8
+ },
+/obj/machinery/porta_turret/crescent{
+ density = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/alarm/alarms_hidden{
pixel_y = 26
},
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"mZ" = (
-/obj/machinery/newscaster{
- pixel_y = 32
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"qD" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/speedboost,
+/obj/item/mecha_parts/mecha_equipment/speedboost,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"qE" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/item/mecha_parts/mecha_tracking,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
},
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"nx" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/carpet,
-/area/space)
-"nB" = (
-/obj/structure/sign/department/cargo{
- name = "ENGINEERING SUPPLIES"
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"qF" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
},
-/turf/simulated/wall/rdshull,
-/area/space)
-"nD" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = 5
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/eng_storage)
+"qQ" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/gravcatapult,
+/obj/item/mecha_parts/mecha_equipment/wormhole_generator,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"qS" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/cloak,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"qT" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"ra" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
},
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -12
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -4
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"rp" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"rr" = (
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flare,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"rt" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 4;
+ start_pressure = 740.5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"ry" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"rA" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"rD" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"rO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"rR" = (
+/obj/machinery/atmospherics/pipe/tank/phoron{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"rS" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"rV" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"sd" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
},
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"nT" = (
+/area/ship/ert/med)
+"sf" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/machinery/chemical_dispenser/ert,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"sk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"so" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"sp" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/commander)
+"sq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
+"sr" = (
/obj/machinery/vending/food,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"nZ" = (
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/taperoll/police,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/item/device/flash,
-/obj/structure/table/rack/steel,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"oh" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
+/area/ship/ert/barracks)
+"sz" = (
+/obj/structure/closet/wardrobe/ert,
+/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
+/obj/item/weapon/storage/box/survival/comp{
+ starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
+ },
+/obj/item/weapon/storage/box/survival/synth,
+/obj/machinery/light/no_nightshift,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"os" = (
-/obj/structure/undies_wardrobe,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"oC" = (
-/obj/structure/closet/crate{
+/area/ship/ert/barracks)
+"sA" = (
+/obj/machinery/embedded_controller/radio/docking_port_multi{
+ child_names_txt = "Port Airlock Control;Starboard Airlock Control";
+ child_tags_txt = "von_braun_port;von_braun_star";
+ dir = 8;
+ id_tag = "von_braun_master";
+ pixel_x = 22
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"sC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"oQ" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/machinery/door/blast/regular{
- closed_layer = 4;
- id = "NRV_DELTA";
- layer = 4
- },
+/area/ship/ert/dock_star)
+"sF" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
+/obj/item/clothing/glasses/graviton,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"pa" = (
-/obj/machinery/computer/operating,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"pd" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/firstaid/surgery,
-/obj/item/stack/nanopaste,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"ph" = (
-/obj/structure/grille,
-/turf/space,
-/area/space)
-"pm" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
- },
-/turf/simulated/floor/reinforced,
-/area/space)
-"pq" = (
-/obj/machinery/door/blast/regular/open{
- id = "ERT_Shuttle_Rear";
- name = "Boarding Hatch"
+/area/ship/ert/barracks)
+"sH" = (
+/obj/machinery/computer/ship/sensors,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
},
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"pt" = (
+/area/ship/ert/bridge)
+"sJ" = (
/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/armor/vest/ert/security,
-/obj/item/clothing/suit/armor/vest/ert/security,
-/obj/item/clothing/suit/armor/vest/ert/security,
-/obj/item/clothing/suit/armor/vest/ert/security,
-/obj/item/clothing/head/helmet/ert/security,
-/obj/item/clothing/head/helmet/ert/security,
-/obj/item/clothing/head/helmet/ert/security,
-/obj/item/clothing/head/helmet/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"pv" = (
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"sP" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/hangar)
+"sS" = (
/obj/machinery/shieldwallgen,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"pA" = (
+/area/ship/ert/eng_storage)
+"sU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"sW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
+"sX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"ta" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/multi_tile,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"tg" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"tp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_star)
+"tx" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"tA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_star)
+"tE" = (
+/obj/structure/sign/department/dock{
+ name = "ROBINEAU DOCK"
+ },
+/turf/simulated/wall/rdshull,
+/area/ship/ert/hangar)
+"tH" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/armoury_st)
+"tX" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/mech_bay)
+"tZ" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/mech_bay)
+"ug" = (
+/obj/item/device/healthanalyzer/advanced,
+/obj/item/device/healthanalyzer/advanced,
+/obj/item/device/healthanalyzer/advanced,
/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"pI" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/mounted,
-/obj/item/rig_module/mounted/egun,
-/obj/item/rig_module/mounted/egun,
+/area/ship/ert/med)
+"uh" = (
+/obj/machinery/atmospherics/unary/engine/biggest{
+ dir = 4
+ },
+/turf/space,
+/area/ship/ert/engineering)
+"um" = (
+/obj/machinery/vending/engineering,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"pY" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
+/area/ship/ert/eng_storage)
+"un" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
},
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
},
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"up" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
},
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
+/obj/structure/window/plastitanium{
+ dir = 8
},
-/obj/item/weapon/storage/briefcase/inflatable{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"qd" = (
-/obj/machinery/power/emitter,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"qo" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1380;
- icon_state = "door_locked";
- id_tag = "ert1_shuttle_inner";
- locked = 1;
- name = "Shuttle Hatch"
+/area/ship/ert/engineering)
+"us" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"uu" = (
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
},
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_star)
+"ux" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"uE" = (
+/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+ dir = 8
+ },
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"uG" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/modular_computer/console/preset/sysadmin{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"uJ" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"uK" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"uS" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"vb" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"vd" = (
+/obj/machinery/atmospherics/pipe/tank/phoron{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"vg" = (
/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"qC" = (
-/turf/unsimulated/floor/techfloor_grid,
-/area/space)
-"qD" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- icon_state = "intact"
- },
/obj/machinery/meter,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"qE" = (
-/obj/machinery/light,
-/obj/machinery/ntnet_relay,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"qV" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/l6_saw,
-/obj/item/ammo_magazine/m545saw,
-/obj/item/ammo_magazine/m545saw,
-/obj/item/weapon/gun/projectile/automatic/l6_saw,
-/obj/item/ammo_magazine/m545saw,
-/obj/item/ammo_magazine/m545saw,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"rc" = (
+/area/ship/ert/atmos)
+"vi" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"vt" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"vu" = (
+/obj/structure/table/rack,
+/obj/item/weapon/hand_tele,
+/obj/item/device/perfect_tele,
+/obj/item/device/binoculars,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"vA" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"vK" = (
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med_surg)
+"vL" = (
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/obj/item/weapon/bedsheet/captain,
+/obj/structure/bed/pod,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"vQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"vS" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"wb" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"wd" = (
/obj/structure/sign/department/conference_room{
name = "OUTFITTING"
},
/turf/simulated/wall/rdshull,
-/area/space)
-"ro" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/dispenser/oxygen,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"rp" = (
-/obj/structure/sign/department/medbay{
- name = "MEDICAL OUTFITTING & SUPPLIES"
- },
-/turf/simulated/wall/rdshull,
-/area/space)
-"rr" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/sniperrifle{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/sniperrifle{
- battery_lock = 0
- },
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"rA" = (
-/obj/machinery/sleeper{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"rN" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
- dir = 4
- },
-/obj/structure/window/plastitanium{
- dir = 8
- },
-/obj/machinery/door/blast/regular/open{
- dir = 2;
- id = "ERT_Blast_Windows";
- name = "Blast Shield"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"rO" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/weapon/tool/crowbar,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/flashlight,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/obj/item/device/radio/off,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"rY" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/shotgun/pump/combat,
-/obj/item/weapon/gun/projectile/shotgun/pump/combat,
-/obj/item/weapon/storage/box/shotgunshells/large,
-/obj/item/weapon/storage/box/shotgunshells/large,
-/obj/item/weapon/storage/box/shotgunammo/large,
-/obj/item/weapon/storage/box/shotgunammo/large,
-/obj/item/weapon/storage/box/empshells/large,
-/obj/item/weapon/storage/box/flashshells/large,
-/obj/item/weapon/storage/box/beanbags/large,
-/obj/item/weapon/storage/box/beanbags/large,
-/obj/item/weapon/storage/box/stunshells/large,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"sg" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/mortar,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"sk" = (
-/obj/structure/sink{
- dir = 8;
- icon_state = "sink";
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/light/small,
-/turf/simulated/shuttle/floor/white,
-/area/space)
-"sn" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/weapon/gun/projectile/p92x/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/obj/item/ammo_magazine/m9mm/large/preban,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"so" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 10
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"sr" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"ss" = (
-/obj/machinery/shield_capacitor,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"st" = (
-/obj/structure/table/steel_reinforced,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"sy" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"sA" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"sC" = (
-/obj/structure/sign/department/armory{
- name = "STANDARD ARMORY";
- pixel_x = 32
- },
-/obj/structure/table/rack/steel,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"sH" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"sJ" = (
-/obj/machinery/button/remote/blast_door{
- id = "ertstarshutters";
- name = "remote shutter control";
- pixel_x = 30;
- req_access = list(160)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"sP" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"sS" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/smokes,
-/obj/item/weapon/storage/box/smokes,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"sU" = (
-/obj/structure/bed/chair/bay/shuttle,
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = 5
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -4
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -12
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"tp" = (
-/obj/machinery/door/airlock/glass_security{
+/area/ship/ert/bridge)
+"wi" = (
+/obj/machinery/door/airlock/glass{
req_one_access = list(103)
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/multi_tile,
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"tx" = (
-/turf/space,
-/area/centcom/specops)
-"tz" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1381;
- icon_state = "door_locked";
- id_tag = "ert2_shuttle_inner";
- locked = 1;
- name = "Ship Hatch"
- },
-/obj/machinery/atmospherics/pipe/simple/visible,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"tE" = (
-/obj/machinery/vending/medical{
- req_access = null
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"tH" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/door/airlock/glass_external{
- frequency = 1381;
- icon_state = "door_locked";
- id_tag = "ert2_shuttle_inner";
- locked = 1;
- name = "Ship Hatch"
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"uh" = (
-/obj/machinery/shield_gen/external,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"um" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/empslite,
-/obj/item/weapon/storage/box/empslite,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"un" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/turf/simulated/floor/reinforced,
-/area/space)
-"us" = (
-/obj/machinery/vending/fitness,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"uz" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"uK" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/reagent_containers/hypospray,
-/obj/item/weapon/reagent_containers/hypospray,
-/obj/item/weapon/reagent_containers/hypospray,
-/obj/item/weapon/reagent_containers/hypospray,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"uS" = (
-/turf/simulated/floor/carpet,
-/area/space)
-"vg" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/xray,
-/obj/item/weapon/gun/energy/xray,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"vi" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/backpack/ert/commander,
-/obj/item/clothing/head/helmet/ert/command,
-/obj/item/clothing/suit/armor/vest/ert/command,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"vl" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"vN" = (
-/obj/machinery/door/airlock/glass_security{
- req_one_access = list(103)
- },
-/obj/machinery/door/blast/regular{
- id = "NRV_DELTA"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"vS" = (
-/obj/machinery/bodyscanner{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"wd" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
+/area/ship/ert/hallways)
"wl" = (
-/turf/simulated/floor/reinforced/airless,
-/area/space)
-"wr" = (
/obj/structure/table/rack/steel,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"wt" = (
-/obj/machinery/door/blast/regular/open{
- id = "ERT_Shuttle_Rear";
- name = "Boarding Hatch"
- },
-/obj/machinery/button/remote/blast_door{
- id = "ERT_Shuttle_Rear";
- name = "ERT Shuttle Access";
- pixel_y = 24;
- req_access = list(101)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"wL" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Medical Bay";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"wO" = (
-/obj/machinery/shieldwallgen,
-/turf/simulated/floor/carpet,
-/area/space)
-"xs" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/combat_shield,
-/obj/item/mecha_parts/mecha_equipment/combat_shield,
-/obj/item/mecha_parts/mecha_equipment/omni_shield,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"xt" = (
-/obj/machinery/computer/telecomms/server{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"xz" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/button/remote/blast_door{
- id = "ERT_Shuttle_Fore";
- name = "ERT Deployment Access";
- pixel_y = 24;
- req_access = list(101)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"xA" = (
-/obj/machinery/door/airlock/multi_tile/glass{
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"xC" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/recharger,
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"xD" = (
-/obj/machinery/computer/ship/navigation{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"xJ" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
- },
-/turf/simulated/shuttle/plating/airless/carry,
-/area/space)
-"xM" = (
-/obj/machinery/vending/food,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"xO" = (
-/obj/machinery/chem_master,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"xZ" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/rescue_pharm,
-/obj/item/rig_module/sprinter,
-/obj/item/rig_module/sprinter,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"yf" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/chemical_dispenser/biochemistry/full,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"yo" = (
-/obj/structure/sign/department/armory{
- desc = "HAS THE SHIT HIT THE FAN? THIS IS WHAT YOU NEED.";
- name = "DELTA ARMORY";
- pixel_x = 32
- },
-/obj/structure/table/rack/steel,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"yu" = (
-/turf/simulated/shuttle/wall/dark,
-/area/space)
-"yz" = (
-/turf/space,
-/area/space)
-"yC" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/ionrifle/pistol,
-/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"yR" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/pinpointer/advpinpointer,
-/obj/item/device/aicard,
-/turf/simulated/floor/carpet,
-/area/space)
-"yY" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"za" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"zo" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/weapon/storage/backpack/ert/engineer,
-/obj/item/clothing/suit/space/void/responseteam/engineer,
-/obj/item/clothing/suit/space/void/responseteam/engineer,
-/obj/item/clothing/suit/space/void/responseteam/engineer,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"zs" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/stamp/centcomm,
-/obj/item/weapon/storage/box/cdeathalarm_kit,
-/obj/item/weapon/storage/box/trackimp,
-/turf/simulated/floor/carpet,
-/area/space)
-"zz" = (
-/obj/machinery/computer/card/centcom{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"zL" = (
-/obj/structure/fans/hardlight,
-/turf/simulated/floor/reinforced,
-/area/space)
-"zZ" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/machinery/door/blast/regular{
- closed_layer = 4;
- dir = 4;
- id = "NRV_DELTA";
- layer = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Ac" = (
-/turf/simulated/shuttle/wall/dark/hard_corner,
-/area/space)
-"Ah" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/obj/item/weapon/grenade/chem_grenade/metalfoam,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"AK" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = -32
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"AO" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/plating,
-/area/space)
-"AV" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
-/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
-/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
-/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"AW" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"AX" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/device/rcd,
-/obj/item/rig_module/device/rcd,
-/obj/item/rig_module/device/plasmacutter,
-/obj/item/rig_module/device/plasmacutter,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"AZ" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Medical Bay";
- req_access = list(103)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"Bc" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"Bf" = (
-/obj/machinery/oxygen_pump/anesthetic,
-/turf/simulated/wall/rdshull,
-/area/space)
-"Bj" = (
-/obj/item/weapon/storage/box/teargas,
-/obj/item/weapon/storage/box/teargas,
-/obj/structure/table/rack/steel,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Br" = (
-/turf/simulated/floor/reinforced,
-/area/space)
-"BF" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_vest,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/obj/item/clothing/accessory/storage/black_drop_pouches,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"BJ" = (
-/obj/machinery/access_button{
- command = "cycle_exterior";
- frequency = 1381;
- master_tag = "ert2_control";
- pixel_x = 24;
- req_one_access = list(103)
- },
-/obj/machinery/door/airlock/glass_external{
- frequency = 1381;
- icon_state = "door_locked";
- id_tag = "ert2_shuttle_outer";
- locked = 1;
- name = "Ship Hatch"
- },
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"BU" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"BW" = (
-/obj/structure/bed/chair/comfy/black{
- dir = 1
- },
-/turf/simulated/floor/carpet,
-/area/space)
-"Cg" = (
-/obj/machinery/computer/ship/helm{
- dir = 8;
- icon_state = "computer"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Cn" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Cx" = (
-/obj/structure/table/steel_reinforced,
-/obj/fiftyspawner/tritium,
-/obj/fiftyspawner/tritium,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"CM" = (
-/obj/item/roller/adv,
-/obj/item/roller/adv{
- pixel_y = 6
- },
-/obj/item/roller/adv{
- pixel_y = 12
- },
-/obj/structure/table/steel_reinforced,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"CT" = (
-/obj/machinery/vending/assist,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Dd" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion_l"
- },
-/turf/simulated/shuttle/plating/airless/carry,
-/area/space)
-"Dn" = (
-/obj/structure/toilet,
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/simulated/shuttle/floor/white,
-/area/space)
-"Dp" = (
-/obj/effect/floor_decal/industrial/warning,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Du" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"DK" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/box/pillbottles,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"DQ" = (
-/obj/structure/medical_stand,
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 12;
- pixel_y = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"DS" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/melee/energy/sword/blue,
-/obj/item/weapon/shield/energy,
-/obj/item/weapon/shield/energy,
-/obj/item/weapon/shield/energy,
-/obj/item/weapon/shield/energy,
-/obj/item/weapon/shield/energy,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"DY" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/as24,
-/obj/item/weapon/gun/projectile/automatic/as24,
-/obj/item/weapon/storage/box/shotgunshells/large,
-/obj/item/weapon/storage/box/shotgunshells/large,
-/obj/item/weapon/storage/box/shotgunammo/large,
-/obj/item/weapon/storage/box/shotgunammo/large,
-/obj/item/weapon/storage/box/empshells/large,
-/obj/item/weapon/storage/box/flashshells/large,
-/obj/item/weapon/storage/box/beanbags/large,
-/obj/item/weapon/storage/box/beanbags/large,
-/obj/item/weapon/storage/box/stunshells/large,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Ec" = (
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1381;
- master_tag = "ert2_control";
- pixel_x = -22;
- pixel_y = -32;
- req_one_access = list(103)
- },
-/obj/machinery/atmospherics/pipe/manifold/visible{
- dir = 1
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Ed" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/obj/item/clothing/glasses/night,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Ek" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/rig/ert/medical,
-/obj/item/weapon/rig/ert/medical,
-/obj/item/weapon/rig/ert/medical,
-/obj/item/weapon/rig/ert/medical,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Eq" = (
-/obj/machinery/door/airlock/command{
- name = "Bridge";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Ey" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/waist,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/hip,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/obj/item/clothing/accessory/holster/armpit,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"Ez" = (
-/obj/structure/table/steel_reinforced,
-/obj/fiftyspawner/durasteel,
-/obj/fiftyspawner/durasteel,
-/obj/fiftyspawner/durasteel,
-/obj/fiftyspawner/durasteel,
-/obj/fiftyspawner/titanium_glass,
-/obj/fiftyspawner/titanium_glass,
-/obj/fiftyspawner/titanium_glass,
-/obj/fiftyspawner/titanium_glass,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"EC" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = -32
- },
-/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/obj/item/clothing/suit/space/void/responseteam/medical,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"ED" = (
-/obj/structure/closet/crate/medical,
-/obj/item/weapon/storage/box/autoinjectors,
-/obj/item/weapon/storage/box/beakers,
-/obj/item/device/defib_kit/compact/combat/loaded,
-/obj/item/device/defib_kit/compact/combat/loaded,
-/obj/item/weapon/storage/box/bodybags,
-/obj/item/weapon/storage/box/bodybags{
- pixel_x = 2;
- pixel_y = 2
- },
-/obj/item/weapon/storage/box/gloves,
-/obj/item/weapon/storage/box/freezer,
-/obj/item/weapon/storage/box/masks,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"EE" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"EF" = (
-/obj/machinery/computer/ship/engines{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"EK" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/mounted/taser,
-/obj/item/rig_module/mounted/taser,
-/obj/item/rig_module/mounted/taser,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"EN" = (
-/obj/machinery/door/blast/regular{
- closed_layer = 4;
- id = "NRV_DELTA";
- layer = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"Fb" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"Fp" = (
-/obj/structure/table/glass,
-/obj/item/weapon/hand_tele,
-/obj/item/device/perfect_tele,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Fz" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"FD" = (
+/area/ship/ert/armoury_st)
+"wp" = (
/obj/machinery/sleep_console{
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"FF" = (
-/obj/structure/curtain/open/shower,
-/obj/machinery/shower{
- pixel_y = 3
+/area/ship/ert/med_surg)
+"wr" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 8
},
-/turf/simulated/shuttle/floor/white,
-/area/space)
-"FG" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"FJ" = (
-/obj/machinery/sleeper{
+/area/ship/ert/bridge)
+"wt" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/firstaid/bonemed,
+/obj/item/weapon/storage/firstaid/bonemed,
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
+/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"wL" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"wO" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"FK" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/frags,
-/obj/item/weapon/storage/box/frags,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"FM" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/space/void/responseteam/janitor,
-/obj/item/clothing/suit/space/void/responseteam/janitor,
-/obj/item/clothing/suit/space/void/responseteam/janitor,
-/obj/item/clothing/suit/space/void/responseteam/janitor,
-/obj/item/weapon/storage/belt/janitor,
-/obj/item/weapon/storage/belt/janitor,
-/obj/item/weapon/storage/belt/janitor,
-/obj/item/weapon/storage/belt/janitor,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"FV" = (
-/obj/structure/table/rack/steel,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Ga" = (
-/obj/item/weapon/circuitboard/aiupload,
-/obj/item/weapon/circuitboard/borgupload,
-/obj/item/weapon/circuitboard/smes,
-/obj/item/weapon/aiModule/nanotrasen,
-/obj/item/weapon/aiModule/reset,
-/obj/item/weapon/aiModule/freeformcore,
-/obj/item/weapon/aiModule/protectStation,
-/obj/item/weapon/aiModule/quarantine,
-/obj/item/weapon/aiModule/paladin,
-/obj/item/weapon/aiModule/robocop,
-/obj/item/weapon/aiModule/safeguard,
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/smes_coil,
-/obj/item/weapon/smes_coil,
-/obj/item/device/t_scanner/advanced,
-/obj/item/device/t_scanner/advanced,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Gw" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"GC" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/gun/energy/gun,
-/obj/item/weapon/gun/energy/gun,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"GF" = (
-/obj/machinery/button/remote/blast_door{
- id = "ertportshutters";
- name = "remote shutter control";
- pixel_x = 30;
- req_access = list(160)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
},
-/obj/structure/table/rack,
-/obj/item/clothing/suit/space/void/responseteam/command,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"GI" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"wU" = (
/turf/simulated/wall/rdshull,
-/area/space)
-"GM" = (
-/obj/structure/table/glass,
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_y = -35
+/area/ship/ert/hallways)
+"wX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"wZ" = (
+/obj/machinery/oxygen_pump/anesthetic,
+/turf/simulated/wall/rdshull,
+/area/ship/ert/med_surg)
+"xg" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/anti_photons,
+/obj/item/weapon/storage/box/anti_photons,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"xh" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/smokes,
+/obj/item/weapon/storage/box/smokes,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"xi" = (
+/obj/item/weapon/storage/box/teargas,
+/obj/item/weapon/storage/box/teargas,
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"xr" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/empslite,
+/obj/item/weapon/storage/box/empslite,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"xt" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/flashbangs,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"xv" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"xz" = (
+/obj/structure/closet/medical_wall{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/firstaid/bonemed,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/storage/firstaid/combat,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"xA" = (
+/obj/structure/table/rack/steel,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/obj/item/clothing/shoes/magboots/adv,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"xC" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"xG" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"xM" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"xO" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"xU" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"xZ" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/launcher/grenade,
+/obj/item/weapon/gun/launcher/grenade,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"ya" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"yf" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/space_heater,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"yi" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/effect/floor_decal/corner/white{
+ dir = 10;
+ icon_state = "corner_white"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"yj" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"yo" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"yp" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/effect/floor_decal/corner/yellow{
+ dir = 8
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"yv" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/pipedispenser/orderable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"yx" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/pipedispenser/disposal/orderable,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"yz" = (
+/turf/space,
+/area/space)
+"yB" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"yC" = (
+/obj/machinery/vending/engivend,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"yD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"yI" = (
+/obj/structure/sign/department/medbay,
+/turf/simulated/wall/rdshull,
+/area/ship/ert/med)
+"yJ" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"yR" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"yX" = (
+/obj/structure/fans/hardlight,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/reinforced,
+/area/ship/ert/hangar)
+"yY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"za" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/hangar)
+"zb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"zi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"zk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"zo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/modular_computer/console/preset/command{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"zr" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"zs" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"zD" = (
+/obj/structure/table/rack,
/obj/item/weapon/gun/projectile/deagle,
/obj/item/ammo_magazine/m44,
/obj/item/ammo_magazine/m44,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"GO" = (
-/obj/machinery/atmospherics/pipe/manifold/visible,
-/obj/machinery/access_button{
- command = "cycle_interior";
- frequency = 1380;
- master_tag = "ert1_control";
- pixel_x = -22;
- pixel_y = 32;
- req_one_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"GU" = (
-/obj/mecha/combat/durand,
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Hh" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/p90,
-/obj/item/weapon/gun/projectile/automatic/p90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/obj/item/ammo_magazine/m9mmp90,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Hu" = (
-/obj/machinery/power/port_gen/pacman/super,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"HC" = (
-/obj/effect/shuttle_landmark/shuttle_initializer{
- base_area = /area/centcom/specops;
- base_turf = /turf/unsimulated/floor;
- landmark_tag = "specops_base";
- name = "ERT Shuttle Bay";
- shuttle_type = /datum/shuttle/autodock/multi/specialops
- },
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"HE" = (
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"HN" = (
-/obj/structure/table/woodentable,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 8
- },
-/obj/item/weapon/pen{
- pixel_y = 4
- },
-/turf/simulated/floor/carpet,
-/area/space)
-"HO" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/clusterbang,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"HQ" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
- dir = 1
- },
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
- dir = 4
- },
-/obj/structure/window/plastitanium{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"HZ" = (
-/obj/structure/table/steel_reinforced,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Id" = (
-/obj/machinery/vending/engineering,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"If" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/melee/baton,
-/obj/item/weapon/melee/baton,
-/obj/item/weapon/melee/baton,
-/obj/item/weapon/melee/baton,
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Ii" = (
-/obj/structure/sign/department/medbay,
-/turf/simulated/wall/rdshull,
-/area/space)
-"IA" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/plating,
-/area/space)
-"Jb" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/handcuffs,
-/obj/item/weapon/storage/box/handcuffs{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"Jd" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 10
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Jk" = (
-/obj/machinery/power/thermoregulator,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Jn" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"JB" = (
-/obj/machinery/door/airlock/glass_command{
- req_one_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"JM" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4;
- icon_state = "propulsion_r"
- },
-/turf/simulated/shuttle/plating/airless/carry,
-/area/space)
-"JN" = (
-/obj/machinery/shield_capacitor,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"JQ" = (
-/obj/machinery/door/airlock/silver{
- name = "Sleeping"
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"JV" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
- dir = 1
- },
-/obj/machinery/door/blast/regular/open{
- dir = 8;
- id = "ERT_Blast_Windows";
- name = "Blast Shield"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Kb" = (
-/obj/machinery/shieldgen,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Kk" = (
-/obj/machinery/door/window/northleft{
- name = "Cargo Hold";
- req_access = list(103)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"KJ" = (
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
- frequency = 1380;
- id_tag = "ert1_vent"
- },
-/obj/machinery/embedded_controller/radio/airlock/docking_port{
- frequency = 1380;
- id_tag = "ert1_control";
- pixel_x = -25;
- req_access = list(103);
- tag_airpump = "ert1_vent";
- tag_chamber_sensor = "ert1_sensor";
- tag_exterior_door = "ert1_shuttle_outer";
- tag_interior_door = "ert1_shuttle_inner"
- },
-/obj/effect/shuttle_landmark/shuttle_initializer{
- base_area = /area/centcom/specops;
- base_turf = /turf/unsimulated/floor;
- landmark_tag = "specops_base";
- name = "ERT Shuttle Bay";
- shuttle_type = /datum/shuttle/autodock/multi/specialops
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"KM" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/rig/ert/security,
-/obj/item/weapon/rig/ert/security,
-/obj/item/weapon/rig/ert/security,
-/obj/item/weapon/rig/ert/security,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"KO" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/box/flashbangs,
-/obj/item/weapon/storage/box/flashbangs,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"KR" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/pdw,
-/obj/item/weapon/gun/projectile/automatic/pdw,
-/obj/item/weapon/gun/projectile/automatic/pdw,
-/obj/item/weapon/gun/projectile/automatic/pdw,
-/obj/item/weapon/gun/projectile/automatic/pdw,
-/obj/item/weapon/gun/projectile/automatic/pdw,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/obj/item/ammo_magazine/m9mml,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"KW" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/table/glass,
/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid,
-/obj/item/device/binoculars,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Lk" = (
-/obj/machinery/door/airlock/silver{
- name = "Toilet"
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"zP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"zT" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/simulated/shuttle/floor/white,
-/area/space)
-"Lq" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"Af" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Ah" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"An" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"Ao" = (
+/obj/item/modular_computer/console/preset/ert{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Aq" = (
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Ar" = (
/obj/structure/table/steel_reinforced,
/obj/fiftyspawner/phoron,
/obj/fiftyspawner/glass,
@@ -2274,293 +3114,2210 @@
/obj/fiftyspawner/rods,
/obj/fiftyspawner/rods,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"LC" = (
-/obj/machinery/light/small{
+/area/ship/ert/eng_storage)
+"Av" = (
+/obj/item/modular_computer/console/preset/security,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Ay" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(103)
+ },
+/obj/machinery/door/blast/regular{
+ id = "NRV_DELTA"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"AI" = (
+/obj/machinery/power/thermoregulator,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"AK" = (
+/obj/item/modular_computer/console/preset/research,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"AL" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/box/pillbottles,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"AS" = (
+/obj/item/modular_computer/console/preset/medical,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"AZ" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Bb" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"Bc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"Bf" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"Bj" = (
+/obj/machinery/shieldgen,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"Bp" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/weapon/gun/projectile/automatic/z8,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/obj/item/ammo_magazine/m762/ap,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"Bq" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"Br" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
+"BE" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"BF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"BU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"BW" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"Ce" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"Ci" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/eng_storage)
+"Cn" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/machinery/vending/nifsoft_shop{
+ categories = 111;
+ desc = "For all your mindware and mindware accessories. Now paid for by Central!";
+ dir = 8;
+ emagged = 1;
+ name = "ERT NIFSoft Vendor"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways)
+"Cq" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"Cr" = (
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med_surg)
+"CI" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"CL" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"CM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
pixel_y = 0
},
-/obj/machinery/airlock_sensor{
- frequency = 1381;
- id_tag = "ert2_sensor";
- pixel_x = 25
+/turf/simulated/floor/reinforced,
+/area/ship/ert/hangar)
+"CN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"CP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"CT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"CZ" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Dd" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ dir = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"Dh" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Di" = (
+/obj/machinery/vending/medical{
+ req_access = null
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"Dn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"Do" = (
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engineering)
+"DJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"DK" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"DM" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/storage/firstaid/surgery,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"DQ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"DR" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
dir = 1;
- frequency = 1381;
- id_tag = "ert2_vent"
+ name = "VB APC - North";
+ pixel_y = 24
},
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"LR" = (
-/obj/structure/noticeboard{
- pixel_y = 32
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
},
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Me" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/rig_module/device/drill,
-/obj/item/rig_module/device/drill,
-/obj/item/rig_module/maneuvering_jets,
-/obj/item/rig_module/maneuvering_jets,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Mm" = (
-/obj/effect/landmark/late_antag/ert,
-/obj/structure/table/bench/steel,
+/area/ship/ert/med)
+"DV" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/ert,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Mq" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/button/remote/blast_door{
- id = "ertbridgeshutters";
- name = "remote shutter control";
- pixel_x = 30;
- req_access = list(150)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Mt" = (
-/obj/machinery/optable,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Mv" = (
+/area/ship/ert/commander)
+"Ec" = (
/obj/structure/table/rack/steel,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
-/obj/item/clothing/glasses/graviton,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/weapon/storage/backpack/ert/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/item/clothing/suit/space/void/responseteam/security,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"MU" = (
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/meter,
-/obj/machinery/portable_atmospherics/powered/pump/filled,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"MX" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/obj/item/bodybag/cryobag,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"MZ" = (
+/area/ship/ert/barracks)
+"Ed" = (
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"Ee" = (
/obj/effect/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/effect/floor_decal/corner/white{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/powered/pump/filled,
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"Eh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"Eo" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
+"Ez" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"EA" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/box/trackimp,
+/obj/item/weapon/storage/box/cdeathalarm_kit,
+/obj/item/weapon/stamp/centcomm,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"EB" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/white,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"EC" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"ED" = (
+/obj/item/modular_computer/console/preset/ert{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"EP" = (
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/storage/box/autoinjectors,
+/obj/item/weapon/storage/box/beakers,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/gloves,
+/obj/item/weapon/storage/box/freezer,
+/obj/item/weapon/storage/box/masks,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"Fd" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med)
+"Ff" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"Fg" = (
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"Fp" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall/rdshull,
+/area/ship/ert/engineering)
+"Fq" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/frags,
+/obj/item/weapon/storage/box/frags,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"Fz" = (
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"FD" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"FF" = (
+/obj/effect/shuttle_landmark/premade/ert_ship_port,
+/turf/space,
+/area/space)
+"FJ" = (
+/obj/machinery/door/airlock/glass_command{
+ req_one_access = list(103)
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"FK" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"FM" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/effect/floor_decal/corner/blue{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"FN" = (
+/obj/effect/floor_decal/corner/red{
dir = 6
},
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"Na" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
+/area/ship/ert/hallways)
+"FO" = (
+/obj/machinery/light/no_nightshift{
dir = 1
},
-/turf/simulated/shuttle/plating,
-/area/space)
-"Nf" = (
-/obj/machinery/portable_atmospherics/powered/scrubber,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"NF" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "ERT_Shuttle_Rear";
- name = "ERT Shuttle Access";
- pixel_y = -25;
- req_access = list(101)
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/dock_star)
+"FP" = (
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med_surg)
+"FQ" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(103)
},
-/obj/machinery/door/blast/regular/open{
- id = "ERT_Shuttle_Rear";
- name = "Boarding Hatch"
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
},
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"NI" = (
+/area/ship/ert/armoury_st)
+"FR" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"FT" = (
+/obj/structure/closet/crate{
+ dir = 2
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"FX" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"FY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"Ga" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"Gl" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/heavysniper,
+/obj/item/weapon/storage/box/sniperammo,
+/obj/item/weapon/storage/box/sniperammo,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"Gr" = (
+/obj/machinery/power/emitter,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"Gw" = (
/obj/structure/closet/wardrobe/ert,
/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
/obj/item/weapon/storage/box/survival/comp{
starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
},
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"NP" = (
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/shutters{
- density = 0;
- icon_state = "shutter0";
- id = "ertstarshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
+/obj/item/weapon/storage/box/survival/synth,
+/obj/machinery/light/no_nightshift{
dir = 1
},
-/obj/structure/window/reinforced{
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"GI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
-/turf/simulated/shuttle/plating,
-/area/space)
-"NU" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/rig/ert/security,
-/obj/item/weapon/rig/ert/security,
-/obj/item/weapon/rig/ert/security,
-/obj/item/weapon/rig/ert/security,
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"NV" = (
+/area/ship/ert/engineering)
+"GJ" = (
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/eng_storage)
+"GK" = (
/obj/structure/closet/crate{
- dir = 2
+ dir = 1
},
-/obj/item/ammo_magazine/m9mml/ap,
-/obj/item/ammo_magazine/m9mml/ap,
-/obj/item/ammo_magazine/m9mml/ap,
-/obj/item/ammo_magazine/m9mml/ap,
-/obj/item/ammo_magazine/m9mml/ap,
-/obj/item/ammo_magazine/m9mml/ap,
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"NY" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/shoes/magboots/adv,
-/obj/item/clothing/shoes/magboots/adv,
-/obj/item/clothing/shoes/magboots/adv,
-/obj/item/clothing/shoes/magboots/adv,
-/obj/item/clothing/shoes/magboots/adv,
-/obj/item/clothing/shoes/magboots/adv,
+/area/ship/ert/armoury_st)
+"GM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"GO" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(103)
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"GR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"GS" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
+"GT" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "VB APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"NZ" = (
-/obj/machinery/light/small{
+/area/ship/ert/med_surg)
+"GU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/foam,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"Hf" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced,
+/area/shuttle/ert_ship_boat)
+"Hp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"Hq" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
dir = 4;
- pixel_y = 0
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
},
-/obj/machinery/atmospherics/unary/vent_pump/high_volume{
- dir = 2;
- frequency = 1380;
- id_tag = "ert1_vent"
- },
-/obj/machinery/airlock_sensor{
- frequency = 1380;
- id_tag = "ert1_sensor";
- pixel_x = 25
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Oa" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/firstaid/surgery,
-/obj/item/weapon/storage/firstaid/surgery,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Og" = (
+/area/shuttle/ert_ship_boat)
+"Hu" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
+"HB" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/gun/burst,
+/obj/item/weapon/gun/energy/gun/burst,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/lasershotgun,
+/obj/item/weapon/gun/energy/lasershotgun,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"HC" = (
+/obj/structure/closet/crate/medical,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/weapon/storage/mre/menu11,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose,
+/obj/item/weapon/storage/pill_bottle/iron,
+/obj/item/weapon/storage/pill_bottle/iron,
+/obj/item/weapon/storage/pill_bottle/sleevingcure/full,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/extinguisher/mini,
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/syringes{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"HE" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/dock_port)
+"HO" = (
+/turf/simulated/wall/rdshull,
+/area/shuttle/ert_ship_boat)
+"HR" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/shuttle/ert_ship_boat)
+"HZ" = (
+/obj/machinery/computer/ship/navigation{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"Id" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Ig" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Ii" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Io" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"Ip" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
+"Iv" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/backpack/ert/commander,
+/obj/item/clothing/suit/space/void/responseteam/command,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"Ix" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "VB APC - South";
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"IA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"IF" = (
+/obj/structure/table/rack/steel,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"IG" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"IK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"IL" = (
+/obj/structure/table/woodentable,
+/obj/item/device/aicard,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"IZ" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/commander)
+"Jb" = (
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Jc" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"Jd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"Jf" = (
+/obj/effect/floor_decal/corner/yellow{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"Jg" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med_surg)
+"Jk" = (
+/obj/structure/sign/department/bridge,
+/turf/simulated/wall/rdshull,
+/area/ship/ert/bridge)
+"Jl" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"Js" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"Jw" = (
+/obj/structure/sign/department/armory{
+ name = "STANDARD ARMORY";
+ pixel_x = 32
+ },
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/effect/floor_decal/corner/red{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways)
+"Jx" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"JB" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/dock_port)
+"JE" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
+"JG" = (
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"JJ" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"JM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"JN" = (
+/obj/structure/bed/chair/bay/shuttle,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
+"JQ" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"JY" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"JZ" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/machinery/light/no_nightshift,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"Kb" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Kk" = (
+/obj/effect/landmark/late_antag/ert,
+/obj/structure/table/bench/steel,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"Kq" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Kr" = (
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"Ks" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Commander";
+ opacity = 1;
+ req_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/commander)
+"Kt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_star)
+"Kw" = (
+/obj/structure/sign/department/eng,
+/turf/simulated/wall/rdshull,
+/area/ship/ert/bridge)
+"KG" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/storage/toolbox/electrical,
+/obj/item/weapon/storage/toolbox/electrical,
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/briefcase/inflatable{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "VB APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"KJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"KM" = (
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"KO" = (
+/obj/machinery/vending/tool,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"KS" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Reactor Access";
+ req_access = list(103)
+ },
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"KT" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"KW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"La" = (
+/obj/item/modular_computer/console/preset/ert{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Lg" = (
+/obj/structure/table/rack/steel,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/item/taperoll/engineering,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"Lh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"Lk" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways)
+"Lq" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/gun/martin{
+ battery_lock = 0
+ },
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"LA" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"LB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"LC" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/melee/baton/fluff/stunstaff,
+/obj/item/weapon/melee/baton/fluff/stunstaff,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"LH" = (
+/obj/machinery/shield_gen/external,
+/obj/effect/floor_decal/corner/white,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"LJ" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"LR" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_port)
+"LV" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"LZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"Mb" = (
/obj/machinery/computer/operating{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
-/area/space)
+/area/ship/ert/med_surg)
+"Md" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"Me" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/as24,
+/obj/item/weapon/gun/projectile/automatic/as24,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/storage/box/empshells/large,
+/obj/item/weapon/storage/box/flashshells/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/beanbags/large,
+/obj/item/weapon/storage/box/stunshells/large,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"Mm" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/teleporter)
+"Ms" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"Mt" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_st)
+"Mv" = (
+/obj/machinery/teleport/station,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"My" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable/green{
+ d2 = 8;
+ dir = 2;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"MC" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 12;
+ pixel_y = 8
+ },
+/obj/structure/medical_stand,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"MD" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"MK" = (
+/obj/machinery/door/blast/regular/open{
+ id = "ERT_Shuttle_Rear";
+ name = "Boarding Hatch"
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "ERT_Shuttle_Rear";
+ name = "ERT Shuttle Access";
+ pixel_y = 24;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"ML" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"MQ" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
+"MT" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"MU" = (
+/obj/structure/window/plastitanium,
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"MX" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/obj/item/clothing/accessory/storage/brown_vest,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"MZ" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/med_surg)
+"Na" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
+"Nb" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Nf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "ERT_Shuttle_Fore";
+ name = "ERT Deployment Access";
+ pixel_y = 24;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"Ng" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 2;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
+"Nk" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engineering)
+"Np" = (
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Nz" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"NH" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"NI" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"NJ" = (
+/obj/machinery/optable,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
+"NP" = (
+/obj/machinery/atmospherics/binary/pump/high_power/on,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"NR" = (
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"NU" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"NY" = (
+/obj/machinery/door/airlock/glass_command{
+ req_one_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"NZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"Oa" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"Of" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Og" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/corner/yellow{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
"Oh" = (
-/obj/machinery/computer/security/mining{
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"Oi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"On" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"Oq" = (
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"Ox" = (
+/obj/structure/cable/green{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Oy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"OE" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"OF" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"OH" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"OO" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/energy/sniperrifle{
+ battery_lock = 0
+ },
+/obj/item/weapon/gun/energy/sniperrifle{
+ battery_lock = 0
+ },
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"OR" = (
+/obj/effect/floor_decal/corner/red{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"OS" = (
+/obj/structure/bed/chair/bay/comfy/captain{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"OT" = (
+/obj/machinery/computer/ship/helm{
+ dir = 8;
+ icon_state = "computer"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"OW" = (
+/obj/machinery/pointdefense_control{
+ id_tag = "vonbraun_pd"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"On" = (
-/obj/machinery/teleport/hub,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Oo" = (
-/obj/machinery/computer/shuttle_control/multi/specops{
- dir = 8
+/area/ship/ert/bridge)
+"OX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
},
-/obj/structure/window/plastitanium{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"OY" = (
+/obj/effect/shuttle_landmark/premade/ert_ship_star,
+/turf/space,
+/area/space)
+"OZ" = (
+/obj/structure/table/standard,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/soap,
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/item/weapon/towel{
+ color = "#0000FF"
+ },
+/obj/effect/floor_decal/corner/white,
+/obj/machinery/light/no_nightshift{
dir = 1
},
-/obj/structure/window/plastitanium,
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"Oy" = (
-/obj/machinery/vending/tool,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"OG" = (
+/area/ship/ert/med)
+"Pc" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/wall/rdshull,
+/area/ship/ert/bridge)
+"Pl" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ dir = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"Pn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Pq" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"PC" = (
/obj/machinery/door/blast/regular{
dir = 4;
id = "NRV_DELTA"
},
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"OH" = (
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"OO" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Pi" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/l6_saw,
-/obj/item/weapon/gun/projectile/automatic/l6_saw,
-/obj/item/ammo_magazine/m545saw,
-/obj/item/ammo_magazine/m545saw,
-/obj/item/ammo_magazine/m545saw,
-/obj/item/ammo_magazine/m545saw,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Pl" = (
-/obj/structure/table/steel_reinforced,
-/obj/machinery/chemical_dispenser/ert,
-/obj/item/weapon/reagent_containers/glass/beaker/large,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Pn" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/weapon/storage/belt/medical/emt,
-/obj/item/clothing/accessory/storage/white_vest,
-/obj/item/clothing/accessory/storage/white_vest,
-/obj/item/clothing/accessory/storage/white_vest,
-/obj/item/clothing/accessory/storage/white_vest,
-/obj/item/clothing/accessory/storage/white_vest,
-/obj/item/clothing/accessory/storage/white_vest,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Pp" = (
-/obj/structure/closet/crate{
- dir = 2
+/obj/machinery/door/firedoor,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"PD" = (
+/obj/structure/sign/department/medbay{
+ name = "MEDICAL OUTFITTING & SUPPLIES"
+ },
+/turf/simulated/wall/rdshull,
+/area/ship/ert/med)
+"PE" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
+"PG" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
},
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"Pq" = (
+/area/ship/ert/med_surg)
+"PH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"PJ" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"PS" = (
+/obj/machinery/shield_capacitor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"PX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"Qc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 8;
+ name = "VB APC - West";
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"Qh" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "ERT";
+ tele_network = "centcom"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/ert/hangar)
+"Ql" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_star)
+"Qz" = (
+/obj/item/weapon/circuitboard/aiupload,
+/obj/item/weapon/circuitboard/borgupload,
+/obj/item/weapon/circuitboard/smes,
+/obj/item/weapon/aiModule/nanotrasen,
+/obj/item/weapon/aiModule/reset,
+/obj/item/weapon/aiModule/freeformcore,
+/obj/item/weapon/aiModule/protectStation,
+/obj/item/weapon/aiModule/quarantine,
+/obj/item/weapon/aiModule/paladin,
+/obj/item/weapon/aiModule/robocop,
+/obj/item/weapon/aiModule/safeguard,
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/smes_coil,
+/obj/item/weapon/smes_coil,
+/obj/item/device/t_scanner/advanced,
+/obj/item/device/t_scanner/advanced,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"QE" = (
+/obj/machinery/door/blast/regular/open{
+ id = "ERT_Shuttle_Rear";
+ name = "Boarding Hatch"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"QM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"QP" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"QR" = (
/obj/structure/bed/chair/bay/shuttle{
dir = 4
},
@@ -2579,152 +5336,585 @@
pixel_y = -5
},
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"PC" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertstarshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"PH" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/weapon/storage/belt/security/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/obj/item/clothing/glasses/sunglasses/sechud/tactical,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"PS" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/gun/energy/gun/martin{
- battery_lock = 0
- },
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"PX" = (
-/obj/machinery/light,
-/turf/simulated/floor/carpet,
-/area/space)
-"QK" = (
-/obj/machinery/computer/ship/sensors,
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
+/area/shuttle/ert_ship_boat)
"QS" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"QT" = (
-/obj/machinery/door/firedoor,
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium,
/obj/structure/window/plastitanium{
dir = 1
},
+/obj/structure/window/plastitanium,
+/obj/machinery/computer/shuttle_control/explore/ert_ship_boat{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"QT" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"QX" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"QZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/shuttle_landmark/shuttle_initializer/ert_ship_boat,
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"Rc" = (
+/obj/machinery/door/blast/regular{
+ id = "ERT_Shuttle_Fore"
+ },
/obj/machinery/door/blast/regular/open{
- dir = 4;
+ dir = 2;
id = "ERT_Blast_Windows";
name = "Blast Shield"
},
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"QZ" = (
-/obj/structure/closet/medical_wall{
- pixel_x = 32;
- pixel_y = 0
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"Rd" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
},
-/obj/item/weapon/storage/firstaid/clotting,
-/obj/item/weapon/storage/firstaid/bonemed,
-/obj/item/weapon/storage/firstaid/adv,
-/obj/item/weapon/storage/firstaid/adv,
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/o2,
-/obj/item/weapon/storage/firstaid/o2,
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/item/weapon/storage/firstaid/toxin,
-/obj/item/weapon/storage/firstaid/combat,
-/obj/item/weapon/storage/firstaid/combat,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engineering)
+"Rh" = (
+/obj/machinery/door/airlock/glass_external,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/machinery/door/firedoor/multi_tile,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Rc" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
+/area/ship/ert/dock_star)
+"Rv" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
},
-/obj/structure/grille,
-/obj/structure/window/reinforced{
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"Rw" = (
+/obj/machinery/vending/security,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
+"Rz" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(103)
+ },
+/obj/machinery/door/blast/regular{
+ id = "NRV_DELTA"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"RB" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"RC" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
dir = 8
},
-/turf/simulated/shuttle/plating,
-/area/space)
-"Rt" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"RG" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"RO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"RQ" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"RS" = (
+/obj/machinery/door/airlock/glass_command{
+ req_one_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/teleporter)
+"RV" = (
+/obj/structure/sign/department/telecoms{
+ name = "TELEPORTER"
+ },
+/turf/simulated/wall/rdshull,
+/area/ship/ert/teleporter)
+"Sc" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Sj" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Sl" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Sp" = (
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"Sr" = (
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/barracks)
+"St" = (
+/obj/structure/table/rack/steel,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways)
+"Sx" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/machinery/button/remote/blast_door{
+ desc = "[OOC] DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
+ dir = 4;
+ id = "NRV_DELTA";
+ name = "DELTA ACCESS CONTROL";
+ pixel_x = -24;
+ req_one_access = list(101)
+ },
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/weapon/gun/projectile/automatic/p90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/obj/item/ammo_magazine/m9mmp90,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"Sy" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/weapon/gun/projectile/automatic/l6_saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/obj/item/ammo_magazine/m545saw,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"Sz" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/dock_star)
+"SB" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
+"SE" = (
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"SF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_st)
+"SI" = (
+/obj/machinery/portable_atmospherics/powered/scrubber,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"SJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/wall/rdshull,
+/area/ship/ert/dock_star)
+"SV" = (
+/obj/structure/table/rack/steel,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"SZ" = (
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"Tl" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "ERT_Shuttle_Fore";
+ name = "ERT Deployment Access";
+ pixel_y = -25;
+ req_access = list(101)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"Tx" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"TB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"TI" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"TM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
+"TR" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/armoury_dl)
+"TU" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med)
+"TZ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"Ul" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"Un" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_star)
+"Ut" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "VB APC - North";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"UH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"UJ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"UT" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(103)
+ },
+/obj/machinery/door/blast/regular{
+ id = "NRV_DELTA"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"UY" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"Vg" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/recharger,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"Vm" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"Vn" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/ert/hangar)
+"VB" = (
+/obj/machinery/ntnet_relay,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"VC" = (
+/obj/machinery/power/port_gen/pacman/super/potato,
+/obj/structure/cable/green,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"VJ" = (
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"VO" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"VP" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"VQ" = (
+/obj/structure/sign/department/armory{
+ desc = "HAS THE SHIT HIT THE FAN? THIS IS WHAT YOU NEED.";
+ name = "DELTA ARMORY";
+ pixel_x = 32
+ },
+/obj/structure/table/rack/steel,
+/obj/effect/floor_decal/corner/red,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways)
+"Wa" = (
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
+"Wl" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/item/stack/nanopaste,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"Wu" = (
+/obj/machinery/door/airlock/glass_security{
+ req_one_access = list(103)
+ },
+/obj/machinery/door/blast/regular{
+ id = "NRV_DELTA"
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/armoury_dl)
+"WA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"WC" = (
+/turf/simulated/floor/reinforced,
+/area/ship/ert/hangar)
+"WE" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/effect/floor_decal/corner/red{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"WF" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med)
+"WG" = (
/obj/structure/bed/chair/bay/shuttle{
dir = 1
},
@@ -2741,552 +5931,318 @@
pixel_y = 5
},
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Rw" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = 32
- },
-/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/space/void/responseteam/engineer,
-/obj/item/clothing/suit/space/void/responseteam/engineer,
-/obj/item/clothing/suit/space/void/responseteam/engineer,
-/obj/item/clothing/suit/space/void/responseteam/engineer,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Rz" = (
-/obj/structure/closet{
- name = "custodial"
- },
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/mop,
-/obj/item/weapon/mop,
-/obj/item/weapon/mop,
-/obj/item/weapon/mop,
-/obj/item/weapon/rig/ert/janitor,
-/obj/item/device/lightreplacer,
-/obj/item/device/lightreplacer,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/storage/box/lights/mixed,
+/area/shuttle/ert_ship_boat)
+"WH" = (
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"RB" = (
-/obj/structure/bed/padded,
-/obj/item/weapon/bedsheet/captain,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"RC" = (
-/obj/structure/frame/computer,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"RG" = (
-/obj/structure/table/rack,
-/obj/item/weapon/rig/ert,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"RH" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/accessory/holster/leg,
-/obj/item/clothing/accessory/holster/leg,
-/obj/item/clothing/accessory/holster/leg,
-/obj/item/clothing/accessory/holster/leg,
-/obj/item/clothing/accessory/holster/leg,
-/obj/item/clothing/accessory/holster/leg,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"RO" = (
-/obj/structure/closet/cabinet,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"RV" = (
-/obj/machinery/vending/nifsoft_shop{
- categories = 111;
- emagged = 1;
- name = "Hacked NIFSoft Shop";
- prices = list()
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"RX" = (
-/obj/machinery/atmospherics/pipe/tank/air{
- dir = 2;
- start_pressure = 740.5
- },
-/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Sr" = (
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"St" = (
-/obj/machinery/shieldgen,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"SE" = (
-/obj/machinery/teleport/station,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"SF" = (
-/obj/machinery/door/airlock/glass_external{
- frequency = 1381;
- icon_state = "door_locked";
- id_tag = "ert2_shuttle_outer";
- locked = 1;
- name = "Ship Hatch"
- },
-/obj/structure/fans/tiny,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"SX" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/z8,
-/obj/item/weapon/gun/projectile/automatic/z8,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762,
-/obj/item/ammo_magazine/m762/ap,
-/obj/item/ammo_magazine/m762/ap,
-/obj/item/ammo_magazine/m762/ap,
-/obj/item/ammo_magazine/m762/ap,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Tg" = (
-/obj/structure/sign/department/eng,
-/turf/simulated/wall/rdshull,
-/area/space)
-"Tl" = (
-/obj/machinery/shield_gen,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Tn" = (
+/area/ship/ert/barracks)
+"WJ" = (
/obj/structure/bed/chair/bay/shuttle{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Tx" = (
-/obj/machinery/light{
- dir = 8;
- icon_state = "tube1";
+/area/shuttle/ert_ship_boat)
+"WK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/visible,
-/obj/machinery/space_heater,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"TI" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/rig/ert/engineer,
-/obj/item/weapon/rig/ert/engineer,
-/obj/item/weapon/rig/ert/engineer,
-/obj/item/weapon/rig/ert/engineer,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_star)
+"WO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"TM" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
+/area/ship/ert/engineering)
+"WR" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"TR" = (
-/obj/mecha/combat/gygax,
-/obj/machinery/mech_recharger,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"TU" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
- dir = 1
- },
-/obj/machinery/door/blast/regular/open{
- dir = 8;
- id = "ERT_Blast_Windows";
- name = "Blast Shield"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Ul" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/weapon/storage/belt/utility/full,
-/obj/item/clothing/accessory/storage/brown_vest,
-/obj/item/clothing/accessory/storage/brown_vest,
-/obj/item/clothing/accessory/storage/brown_vest,
-/obj/item/clothing/accessory/storage/brown_vest,
-/obj/item/clothing/accessory/storage/brown_vest,
-/obj/item/clothing/accessory/storage/brown_vest,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Ur" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/shocker,
-/obj/item/mecha_parts/mecha_equipment/shocker,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"UH" = (
-/obj/structure/sign/department/eng{
- name = "RIG AND MECH BAY"
- },
-/turf/simulated/wall/rdshull,
-/area/space)
-"UJ" = (
-/obj/structure/table/rack/steel,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"UX" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "ERT_Shuttle_Fore";
- name = "ERT Deployment Access";
- pixel_y = -25;
- req_access = list(101)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"UY" = (
-/obj/structure/window/plastitanium{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"Va" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/item/weapon/gun/energy/stunrevolver,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/obj/item/weapon/gun/energy/taser,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"Vm" = (
-/obj/machinery/light{
- dir = 4
- },
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "ERT";
- tele_network = "centcom"
- },
-/obj/machinery/newscaster{
- pixel_x = 32
- },
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"Vn" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/gravcatapult,
-/obj/item/mecha_parts/mecha_equipment/wormhole_generator,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"VB" = (
-/obj/structure/closet/wardrobe/ert,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"VO" = (
-/obj/structure/table/rack/steel,
-/obj/item/clothing/suit/space/void/responseteam/security,
-/obj/item/clothing/suit/space/void/responseteam/security,
-/obj/item/clothing/suit/space/void/responseteam/security,
-/obj/item/clothing/suit/space/void/responseteam/security,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"VP" = (
-/obj/machinery/computer/shuttle_control/multi/specops{
- dir = 4;
- icon_state = "computer"
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Wu" = (
-/obj/machinery/computer/security{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"WA" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/repair_droid,
-/obj/item/mecha_parts/mecha_equipment/repair_droid,
-/obj/item/mecha_parts/mecha_equipment/repair_droid,
-/obj/item/mecha_parts/mecha_equipment/repair_droid,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"WC" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flare,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"WE" = (
-/obj/machinery/door/airlock/silver{
- name = "Restroom"
- },
-/turf/simulated/shuttle/floor/white,
-/area/space)
-"WH" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 2;
- icon_state = "shutter0";
- id = "ertportshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced,
-/turf/simulated/shuttle/plating,
-/area/space)
-"WJ" = (
-/turf/space,
-/area/shuttle/specops/centcom)
+/area/ship/ert/med)
"WS" = (
-/obj/machinery/computer/crew{
+/obj/machinery/computer/ship/engines{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
-/area/space)
+/area/ship/ert/engineering)
"WV" = (
-/obj/structure/window/reinforced{
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"WX" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/barracks)
+"Xg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Xo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"Xu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"Xx" = (
+/obj/machinery/light/no_nightshift{
dir = 8
},
-/obj/structure/window/reinforced,
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"XB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"XG" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/eng_storage)
+"XH" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
},
-/turf/simulated/shuttle/plating,
-/area/space)
-"WX" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"XM" = (
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ pixel_x = 24
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/dock_star)
+"XS" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"XW" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/engineering)
+"XX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"Yd" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/armoury_dl)
+"Ye" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/barracks)
+"Yq" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"Yt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"Yx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"YN" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/rdshull,
+/area/ship/ert/engineering)
+"YR" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engineering)
+"Zi" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/eng_storage)
+"Zo" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/barracks)
+"Zv" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"Zx" = (
/obj/effect/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"ZC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/bed/chair/bay/chair/padded/blue,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"ZF" = (
+/obj/item/roller_holder,
+/obj/item/roller/adv,
+/obj/item/roller/adv{
+ pixel_y = 6
+ },
+/obj/item/roller/adv{
+ pixel_y = 12
+ },
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
+"ZI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"ZL" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engineering)
+"ZM" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/bridge)
+"ZP" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"ZR" = (
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"ZT" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/med)
+"ZU" = (
+/obj/machinery/power/port_gen/pacman/mrs,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
+"ZW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Xg" = (
-/obj/machinery/sleep_console{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Xx" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"XG" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/weapon/gun/projectile/automatic/sts35,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
-/obj/item/ammo_magazine/m545/ap/ext,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"XX" = (
-/obj/machinery/door/blast/shutters{
- density = 0;
- dir = 8;
- icon_state = "shutter0";
- id = "ertbridgeshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"Yd" = (
-/obj/structure/sign/department/dock{
- name = "ROBINEAU DOCK"
- },
-/turf/simulated/wall/rdshull,
-/area/space)
-"Ye" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/material/knife/tacknife/combatknife,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/obj/item/weapon/melee/baton/loaded,
-/turf/simulated/shuttle/floor/darkred,
-/area/space)
-"Yq" = (
-/obj/structure/table/rack/steel,
-/obj/item/taperoll/engineering,
-/obj/item/taperoll/engineering,
-/obj/item/taperoll/engineering,
-/obj/item/taperoll/engineering,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"Yx" = (
-/obj/structure/window/reinforced,
-/obj/machinery/door/blast/shutters{
- density = 0;
- icon_state = "shutter0";
- id = "ertstarshutters";
- name = "Blast Shutters";
- opacity = 0
- },
-/obj/structure/grille,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/simulated/shuttle/plating,
-/area/space)
-"YR" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"Zi" = (
-/obj/effect/floor_decal/industrial/warning/corner,
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"Zo" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
-/obj/machinery/meter,
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"Zv" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/gun/energy/netgun,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"ZM" = (
-/obj/structure/table/rack/steel,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/weapon/storage/backpack/ert/security,
-/obj/item/clothing/suit/space/void/responseteam/security,
-/obj/item/clothing/suit/space/void/responseteam/security,
-/obj/item/clothing/suit/space/void/responseteam/security,
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
-"ZP" = (
-/obj/structure/closet/wardrobe/ert,
-/obj/item/modular_computer/laptop/preset/custom_loadout/elite,
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/weapon/storage/box/survival/comp{
- starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
- },
-/turf/simulated/shuttle/floor/black,
-/area/space)
-"ZT" = (
-/obj/machinery/door/blast/regular{
- id = "ERT_Shuttle_Fore"
- },
-/obj/machinery/door/blast/regular/open{
- dir = 2;
- id = "ERT_Blast_Windows";
- name = "Blast Shield"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
-"ZW" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
- dir = 1
- },
-/obj/machinery/door/blast/regular/open{
- dir = 4;
- id = "ERT_Blast_Windows";
- name = "Blast Shield"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/space)
+/area/ship/ert/med)
"ZX" = (
-/obj/structure/table/steel_reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 8
+/obj/machinery/door/airlock/glass_command{
+ req_one_access = list(103)
},
-/obj/item/weapon/pen{
- pixel_y = 4
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/simulated/shuttle/floor/black,
-/area/space)
+/obj/machinery/door/firedoor/border_only,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"ZY" = (
+/obj/effect/floor_decal/corner/blue{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
(1,1,1) = {"
yz
@@ -3393,42 +6349,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+pf
"}
(2,1,1) = {"
yz
@@ -3535,42 +6491,42 @@ yz
yz
yz
yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+yz
"}
(3,1,1) = {"
yz
@@ -3677,42 +6633,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(4,1,1) = {"
yz
@@ -3819,42 +6775,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(5,1,1) = {"
yz
@@ -3961,42 +6917,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(6,1,1) = {"
yz
@@ -4103,42 +7059,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(7,1,1) = {"
yz
@@ -4245,42 +7201,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ad
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ai
-ee
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(8,1,1) = {"
yz
@@ -4387,42 +7343,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(9,1,1) = {"
yz
@@ -4529,42 +7485,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(10,1,1) = {"
yz
@@ -4671,42 +7627,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(11,1,1) = {"
yz
@@ -4813,42 +7769,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(12,1,1) = {"
yz
@@ -4955,42 +7911,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(13,1,1) = {"
yz
@@ -5097,42 +8053,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-tx
-tx
-tx
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(14,1,1) = {"
yz
@@ -5239,42 +8195,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-WJ
-WJ
-WJ
-WJ
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(15,1,1) = {"
yz
@@ -5381,42 +8337,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(16,1,1) = {"
yz
@@ -5523,42 +8479,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(17,1,1) = {"
yz
@@ -5665,42 +8621,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(18,1,1) = {"
yz
@@ -5807,42 +8763,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(19,1,1) = {"
yz
@@ -5949,42 +8905,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(20,1,1) = {"
yz
@@ -6091,42 +9047,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(21,1,1) = {"
yz
@@ -6233,42 +9189,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(22,1,1) = {"
yz
@@ -6375,42 +9331,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(23,1,1) = {"
yz
@@ -6517,42 +9473,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(24,1,1) = {"
yz
@@ -6659,42 +9615,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(25,1,1) = {"
yz
@@ -6801,42 +9757,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(26,1,1) = {"
yz
@@ -6943,42 +9899,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(27,1,1) = {"
yz
@@ -7085,42 +10041,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(28,1,1) = {"
yz
@@ -7227,42 +10183,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(29,1,1) = {"
yz
@@ -7369,42 +10325,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(30,1,1) = {"
yz
@@ -7511,42 +10467,42 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(31,1,1) = {"
yz
@@ -7653,42 +10609,42 @@ yz
yz
yz
yz
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-am
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(32,1,1) = {"
yz
@@ -7795,42 +10751,42 @@ yz
yz
yz
yz
-ac
-af
-af
-af
-af
-ac
-af
-ak
-an
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(33,1,1) = {"
yz
@@ -7937,42 +10893,42 @@ yz
yz
yz
yz
-ac
-af
-af
-af
-ag
-ac
-ag
-ak
-ao
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(34,1,1) = {"
yz
@@ -8045,6 +11001,42 @@ yz
yz
yz
yz
+Nk
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -8079,42 +11071,6 @@ yz
yz
yz
yz
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-ab
-am
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
"}
(35,1,1) = {"
yz
@@ -8183,6 +11139,42 @@ yz
yz
yz
yz
+Do
+nX
+nX
+uh
+XW
+nX
+nX
+uh
+Do
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -8221,42 +11213,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
"}
(36,1,1) = {"
yz
@@ -8319,6 +11275,42 @@ yz
yz
yz
yz
+ZL
+YR
+kL
+nX
+nX
+uh
+XW
+nX
+nX
+nX
+XW
+nX
+nX
+nX
+XW
+nX
+nX
+uh
+kL
+YR
+ZL
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -8363,42 +11355,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
"}
(37,1,1) = {"
yz
@@ -8461,6 +11417,42 @@ yz
yz
yz
yz
+YR
+XW
+XW
+OH
+OH
+OH
+XW
+OH
+OH
+OH
+XW
+OH
+OH
+OH
+XW
+OH
+OH
+OH
+XW
+XW
+YR
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -8505,42 +11497,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
"}
(38,1,1) = {"
yz
@@ -8603,6 +11559,42 @@ yz
yz
yz
yz
+YR
+XW
+XW
+OH
+OH
+OH
+XW
+nZ
+rA
+nZ
+Fp
+nZ
+rA
+nZ
+XW
+OH
+OH
+OH
+XW
+XW
+YR
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -8647,42 +11639,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-aj
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
"}
(39,1,1) = {"
yz
@@ -8745,86 +11701,86 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
aj
-ap
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+XW
+XW
+nZ
+rA
+up
+Fp
+OH
+Id
+JQ
+Np
+RB
+Id
+OH
+Fp
+GI
+rA
+nZ
+XW
+XW
+Rd
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(40,1,1) = {"
yz
@@ -8887,6 +11843,42 @@ yz
yz
yz
yz
+YR
+XW
+XW
+ok
+rD
+ux
+zk
+CN
+Ig
+JY
+NH
+RC
+Tx
+WO
+CZ
+Of
+RG
+XH
+XW
+XW
+YR
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -8931,42 +11923,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-ap
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
"}
(41,1,1) = {"
yz
@@ -9029,6 +11985,27 @@ yz
yz
yz
yz
+YR
+XW
+XW
+op
+rO
+uK
+uK
+uK
+uK
+Kb
+NP
+RO
+OH
+OH
+OH
+OH
+OH
+cY
+XW
+XW
+YR
yz
yz
yz
@@ -9068,47 +12045,26 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-ap
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
bg
bg
bg
bg
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(42,1,1) = {"
yz
@@ -9171,32 +12127,68 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ZL
+XW
+XW
+OH
+rR
+vd
+vd
+vd
+Ii
+Kq
+uS
+SE
OH
OH
OH
OH
-Fb
-OH
-OH
-OH
+SE
OH
+XW
+XW
+ZL
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -9215,42 +12207,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-ap
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-tx
-tx
-tx
-tx
-tx
-tx
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-WJ
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
"}
(43,1,1) = {"
yz
@@ -9312,6 +12268,29 @@ yz
yz
yz
yz
+bO
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+vi
+Fp
+Dh
+Dh
+Dh
+Dh
+Fp
+XW
+XW
+XW
+XW
+YR
yz
yz
yz
@@ -9330,15 +12309,6 @@ yz
yz
yz
yz
-OH
-OH
-OH
-OH
-Fb
-OH
-OH
-OH
-OH
yz
yz
yz
@@ -9352,47 +12322,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-aa
-aa
-aa
-aa
-aa
-aa
-ae
-aj
-ap
bg
bg
bg
bg
-WJ
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-tx
-WJ
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
bg
bg
bg
bg
-WJ
-aj
-ef
-aa
-aa
-aa
-aa
-aa
-aa
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
"}
(44,1,1) = {"
yz
@@ -9454,33 +12410,69 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-OH
-OH
-OH
-OH
-Fb
-OH
-OH
+bO
+kJ
+kJ
+kP
+kP
+rS
+gA
+gA
+CT
+gA
+kJ
+wO
+XW
OH
+WS
OH
+Ox
+KS
+JG
+VC
+XW
+XW
+YR
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -9499,42 +12491,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-ah
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-al
-eg
-aa
-aa
-aa
-aa
-aa
-aa
"}
(45,1,1) = {"
yz
@@ -9596,6 +12552,61 @@ yz
yz
yz
yz
+bR
+kJ
+kJ
+kS
+os
+os
+vg
+bp
+Dn
+gn
+kJ
+NR
+XW
+ry
+Xg
+Sc
+Nb
+YN
+XW
+XW
+XW
+XW
+Rd
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -9609,25 +12620,6 @@ yz
yz
yz
yz
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
yz
yz
yz
@@ -9641,42 +12633,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
"}
(46,1,1) = {"
yz
@@ -9738,38 +12694,74 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-Fb
+bO
+kJ
+kJ
+kT
+gA
+gA
+gA
+gA
+gA
+gN
+nx
+yR
+RQ
+TB
OH
OH
-OH
-yz
-OH
-OH
-OH
-OH
-Fb
-OH
-OH
-OH
-OH
-yz
-OH
-OH
-OH
-Fb
+Nb
+YN
+XW
+XW
+XW
+XW
+YR
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -9783,42 +12775,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
"}
(47,1,1) = {"
yz
@@ -9880,6 +12836,65 @@ yz
yz
yz
yz
+bO
+kJ
+kJ
+kY
+oy
+oy
+vg
+bp
+DK
+Io
+kJ
+NZ
+XW
+XS
+Xu
+ZI
+mt
+KS
+JG
+VC
+XW
+XW
+YR
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -9891,29 +12906,6 @@ yz
yz
yz
yz
-GI
-GI
-TM
-GI
-GI
-GI
-GI
-GI
-GI
-GI
-Tg
-TM
-GI
-GI
-GI
-GI
-GI
-GI
-GI
-GI
-TM
-GI
-GI
yz
yz
yz
@@ -9925,42 +12917,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
"}
(48,1,1) = {"
yz
@@ -10022,40 +12978,76 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-GI
-RH
-Fb
+bW
+kJ
+kJ
+ls
+ls
+ls
+gA
+gA
+DQ
+Ip
+kJ
+NZ
+XW
+hN
PH
-PH
-GI
-GI
-zz
-EF
-er
-ks
-Fb
-Wu
-Oh
-xt
-WS
-GI
-Ez
-Lq
-fE
-Fb
-Jk
-GI
+IG
+My
+XW
+XW
+XW
+XW
+XW
+Do
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -10067,42 +13059,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
"}
(49,1,1) = {"
yz
@@ -10153,51 +13109,87 @@ yz
yz
yz
yz
-qC
-qC
-qC
-qC
-qC
-qC
-qC
-yu
-XX
-Rc
-yu
-qC
-qC
-qC
-qC
-qC
-qC
-qC
-qC
yz
yz
yz
-GI
-RH
-Fb
-OH
-Mm
-NI
-GI
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-GI
-pv
-OH
-OH
-Fb
-Hu
-GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+YR
+XW
+XW
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+kJ
+Oa
+XW
+XW
+XW
+XW
+XW
+XW
+XW
+XW
+XW
+XW
+XW
+YR
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -10209,42 +13201,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
"}
(50,1,1) = {"
yz
@@ -10295,52 +13251,88 @@ yz
yz
yz
yz
-qC
-qC
-qC
-qC
-qC
-qC
-yu
-yu
-RC
-VP
-yu
-yu
-qC
-qC
-qC
-qC
-qC
-qC
-qC
yz
yz
-GI
-GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+aj
+XW
+XW
+XW
+lt
+oE
+sk
+sk
+sk
+sk
+sk
+Kr
+Og
Ed
-Fb
-OH
-Mm
-NI
-GI
-OH
-Fb
-OH
-Fb
-Fb
-Fb
-OH
-Fb
-OH
-GI
-pv
-OH
-Nf
-Fb
-Cx
-GI
-GI
+TM
+TM
+TM
+TM
+TM
+ya
+Oq
+XW
+XW
+XW
+Rd
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -10351,42 +13343,6 @@ yz
yz
yz
yz
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
"}
(51,1,1) = {"
yz
@@ -10437,52 +13393,52 @@ yz
yz
yz
yz
-qC
-qC
-qC
-qC
-qC
-qC
-Bc
-ZX
-Sr
-hU
-st
-fW
-qC
-qC
-qC
-qC
-qC
-qC
-qC
yz
yz
-GI
-GI
-Ed
-Fb
-OH
-Mm
-NI
-GI
-OH
-Fb
-OH
-id
-Fb
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
YR
-OH
-Fb
-OH
-GI
-Kb
-OH
-Nf
-Fb
-OH
-Ga
-GI
+XW
+XW
+XW
+lu
+XW
+XW
+XW
+XW
+XW
+XW
+XW
+Oh
+XW
+XW
+XW
+XW
+XW
+XW
+XW
+lu
+XW
+XW
+XW
+YR
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -10579,52 +13535,52 @@ yz
yz
yz
yz
-qC
-qC
-qC
-qC
-qC
-qC
-QS
-xM
-Vm
-Sr
-Mq
-sy
-qC
-qC
-qC
-qC
-qC
-qC
-qC
yz
yz
-GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ZL
+XW
+XW
+XW
+lu
+XW
+sp
+sp
+sp
+sp
+sp
+sp
NI
Mm
-Fb
-OH
Mm
-NI
-GI
-OH
-Fb
-OH
-QK
-Fb
-xD
-OH
-Fb
-OH
-GI
-Id
-OH
-BU
-Fb
-OH
-Ah
-GI
+Mm
+Mm
+Mm
+Mm
+XW
+lu
+XW
+XW
+XW
+ZL
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -10721,52 +13677,52 @@ yz
yz
yz
yz
-qC
-qC
-qC
-qC
-qC
-qC
-yu
-yu
-yu
-Eq
-yu
-yu
-qC
-qC
-qC
-qC
-qC
-qC
-qC
yz
yz
-GI
-NI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+YR
+XW
+XW
+XW
+XW
+lu
+XW
+sp
+vu
+zD
+DV
+Iv
+sp
+Oi
Mm
-Fb
-OH
+TZ
+Xx
+eF
+TZ
Mm
-NI
-GI
-OH
-Fb
-OH
-OH
-Cg
-OH
-OH
-Fb
-OH
-GI
-Oy
-OH
-BU
-Fb
-OH
-kP
-GI
+XW
+lu
+XW
+XW
+XW
+XW
+YR
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -10863,52 +13819,52 @@ yz
yz
yz
yz
-qC
-qC
-qC
-qC
-qC
-qC
-yu
-Dn
-Lk
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
HE
-gN
-yu
-qC
-qC
-qC
-qC
-qC
-qC
-qC
+JB
+JB
+JB
+XW
+lu
+XW
+sp
+vA
+zP
+Eh
+Ix
+sp
+Oi
+Mm
+Ut
+XB
+vQ
+Ms
+Mm
+XW
+lu
+XW
+Sz
+Sz
+Sz
+nC
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
-GI
-NI
-Mm
-Fb
-OH
-Mm
-NI
-GI
-OH
-Fb
-OH
-OH
-OH
-OH
-OH
-Fb
-OH
-GI
-jD
-OH
-qd
-Fb
-OH
-Yq
-GI
yz
yz
yz
@@ -11005,52 +13961,52 @@ yz
yz
yz
yz
-qC
-yu
-PC
-jY
-yu
-qC
-yu
-yu
-Ac
-HE
-SE
-yu
-qC
-yu
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ac
+JB
+cs
+JB
+JB
Na
-lS
-yu
-qC
-qC
-yz
-yz
-GI
-NI
-Mm
-Fb
-OH
-OH
+JB
+sp
+vL
+zT
+Ez
+IK
+Ks
+Oy
+RS
+UJ
+PX
+TZ
Mv
-rc
-GI
-ki
-jV
-GI
-GI
-GI
-jV
-ki
-GI
-nB
-CT
-OH
-qd
-Fb
-OH
-Jk
-GI
+Mm
+Sz
+Un
+Sz
+Sz
+rt
+Sz
+FO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -11147,52 +14103,52 @@ yz
yz
yz
yz
-yu
-Ac
-mZ
-RB
-yu
-qC
-yu
-sk
-yu
-HE
-On
-yu
-qC
-yu
-Fp
-HE
-Ac
-yu
-qC
yz
yz
-GI
-NI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ad
+JB
+cW
+dX
+hx
+lL
+JB
+sp
+vS
+Ah
+EA
+IL
+sp
+Oi
+RV
+Vm
+XX
+lq
+jA
Mm
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-OH
-JN
-GI
+Sz
+ck
+uJ
+JJ
+fk
+Sz
+hY
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -11289,52 +14245,52 @@ yz
yz
yz
yz
-yu
-RO
-HE
-qE
-yu
-qC
-yu
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+JB
+ak
+dd
+JB
hH
-WE
-HE
-yz
-yu
-qC
-yu
-KW
-HE
-RB
-yu
-qC
-yz
-yz
-GI
-NI
+lR
+JB
+sp
+wb
+An
+EC
+IZ
+sp
+Oi
Mm
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-Fb
-OH
-JN
-GI
+VB
+Yq
+eF
+TZ
+Mm
+Sz
+uu
+na
+Sz
+kX
+SJ
+Sz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -11431,52 +14387,52 @@ yz
yz
yz
yz
-yu
-RB
-HE
-RB
-yu
-qC
-yu
+yz
+yz
+yz
+yz
+yz
+yz
+yz
FF
-yu
+yz
LR
-yz
-yu
-qC
-yu
-gn
-HE
-GM
-yu
-qC
-yz
-yz
-GI
-GI
-nT
-Fb
-Fb
-hZ
-hZ
-GI
-Fb
-Fb
+al
+dg
+dY
+hU
+lV
+JB
+JB
+ZM
+ZM
+ZM
+ZM
+ZM
+NY
+ZM
+ZM
+ZM
+ZM
+ZM
+Sz
+Sz
+Ql
sC
-UJ
-UJ
-UJ
+Rh
+bJ
+uE
yo
-Fb
-Fb
-GI
-Tl
-uh
-Fb
-Fb
-OH
-JN
-GI
+yz
+OY
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -11573,52 +14529,52 @@ yz
yz
yz
yz
-yu
-yu
-JQ
-yu
-yu
-yu
-yu
-Ac
-os
-HE
-yz
-yu
-yu
-yu
-yu
-gS
-yu
-yu
-qC
yz
yz
-GI
-GI
-GI
-Fb
-Fb
-GI
-GI
-GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ae
+am
+dn
+ee
+ik
+lX
+oV
+sq
+KW
+KW
+KW
+KW
+KW
+OE
+KW
+KW
+KW
+KW
+KW
+Kt
tp
-tp
-GI
-GI
-GI
-GI
-GI
-vN
-vN
-GI
-GI
-Ii
-Fb
-Fb
-GI
-GI
-GI
+WK
+tA
+ch
+pN
+XM
+lx
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -11715,53 +14671,53 @@ yz
yz
yz
yz
-yu
-VB
-fU
-VB
-yu
-yu
-yu
-yu
-yu
-JB
-yu
-Ac
-yu
-RG
-vi
-HE
-Cn
-yu
-qC
yz
-GI
-GI
-NY
-NY
-Fb
-Fb
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+JB
+JB
+JB
+JB
+Na
+JB
+JB
+JB
ZM
-GI
-If
-Fb
-Fb
-nD
-KR
-zZ
-eE
-nD
-Fb
-Fb
-jv
-GI
-HZ
-Fb
-Fb
-HZ
-HZ
-GI
-GI
+ZM
+ZM
+ZM
+Kw
+NY
+ZM
+ZM
+ZM
+ZM
+ZM
+Sz
+Sz
+Sz
+Un
+Sz
+Sz
+Sz
+Sz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -11857,66 +14813,66 @@ yz
yz
yz
yz
-yu
-VB
-fU
-fU
-AK
-yu
-HE
-KM
-pt
-HE
-HE
-DS
-yu
-kJ
-HE
-HE
-HE
-yu
-qC
yz
-GI
-wr
-OH
-OH
-Fb
-Fb
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+kO
+Zo
+Zo
+ia
+ip
+mb
+mb
+Zo
ZM
-GI
-fV
-Fb
-Fb
-Fb
-GC
-zZ
-Hh
-Fb
-Fb
-Fb
-vg
-GI
-HZ
-Fb
-Fb
-OH
-OH
-CM
-GI
+Ao
+ED
+Ao
+wr
+lm
+Sj
+Ao
+ED
+Ao
+ZM
+mJ
+Ar
+hP
+Br
+PS
+XG
+XG
+GJ
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
-Hh
-Fb
-Fb
-nD
-sn
-OO
yz
-nD
-Fb
-Fb
yz
yz
yz
@@ -11999,66 +14955,66 @@ yz
yz
yz
yz
-Yx
-ZP
-fU
-lt
-HE
-ia
-HE
-HE
-Sr
-Sr
-HE
-HE
-ia
-HE
-uS
-HN
-PX
-AO
-qC
yz
-GI
-wr
-OH
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Sr
+Zo
+Zo
+ia
+ip
+WH
+Kk
+lv
+ZM
+Aq
+Fg
+FD
+FD
+OF
ha
-Fb
-Fb
+ha
+Yt
Ul
-GI
+ZM
gk
-Fb
-Pp
-Fb
+Zv
+Zv
+Br
PS
-zZ
XG
-Fb
-NV
-Fb
-rr
-GI
-tE
-Fb
-Fb
-OH
-OH
-DK
-GI
+XG
+qF
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
-Hh
-Fb
-Fb
-Fb
-FG
-OO
yz
-Fb
-Fb
-Fb
yz
yz
yz
@@ -12141,67 +15097,67 @@ yz
yz
yz
yz
-iR
-VB
-fU
-lt
-HE
-HE
-HE
-Sr
-Sr
-Sr
-Sr
-HE
-HE
-HE
-fj
-zs
-BW
-WH
-qC
yz
-GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ab
+Zo
+Zo
+ef
+iO
+mj
+Kk
+sz
+ZM
+Av
+us
+FD
sH
-OH
+OS
HZ
-Fb
-Fb
+FD
+Yx
zo
-GI
+ZM
sS
-Fb
+Zv
xC
-Fb
-OH
-OG
-OH
-Fb
-xC
-Fb
-SX
-GI
-tE
-Fb
-Fb
-OH
-OH
-ED
-GI
+sW
+PS
+XG
+XG
+aV
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
-gk
-Fb
-Pp
-Fb
yz
-OO
yz
-Fb
-Pp
-Fb
-dY
yz
yz
yz
@@ -12283,66 +15239,66 @@ yz
yz
yz
yz
-NP
-VB
-fU
-St
-sJ
-yu
-VO
-Sr
-nZ
-Du
-Sr
-FV
-yu
-GF
-wO
-yR
-nx
-IA
-qC
yz
-GI
-sH
-OH
-HZ
-Fb
-Fb
-zo
-GI
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Ye
+Zo
+Zo
+eg
+iR
+mq
+Kk
+lv
+ZM
+AK
+Fz
+FD
+KJ
+OT
+Sl
+FD
+ZC
+uG
+ZM
Bj
-Fb
-xC
-Fb
-OH
-OG
-OH
-Fb
-xC
-Fb
-DY
-GI
-UJ
-Fb
-Fb
-OH
-OH
-xO
-GI
+Zv
+SI
+oO
+Zv
+Qz
+XG
+Ci
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
-sS
-Fb
-xC
-Fb
-OH
-OH
yz
-Fb
-xC
-Fb
yz
yz
yz
@@ -12425,66 +15381,66 @@ yz
yz
yz
yz
-yu
-yu
-yu
-yu
-yu
-Ac
-mV
-Sr
-hj
-Va
-Sr
-fD
-Ac
-yu
-yu
-yu
-yu
-yu
-qC
yz
-GI
-oh
-OH
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Ye
+Zo
+Gw
+Kk
+Jd
+WH
+Kk
+lv
+ZM
+AS
us
-Fb
-Fb
+FD
+us
+OW
+us
+FD
+Yx
Pn
-GI
+ZM
um
-Fb
+Zv
oC
-Fb
-rY
-zZ
-DY
-Fb
-oC
-Fb
-mb
-GI
-uK
-Fb
-Fb
-OH
-OH
-Pl
-GI
+fr
+Zv
+KT
+XG
+Ci
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
-hd
-Fb
-xC
-Fb
-OH
-OH
-OH
-Fb
-xC
-Fb
yz
yz
yz
@@ -12567,67 +15523,67 @@ yz
yz
yz
yz
-qC
-yu
-yu
yz
yz
yz
-sP
-Sr
-Jb
+yz
+yz
+yz
+yz
+yz
+yz
Ye
-Sr
+Zo
lv
-yz
-yz
-yz
-yu
-yu
-qC
-qC
-yz
-GI
-oh
-OH
-OH
-Fb
-Fb
+Kk
+Jd
+WH
+Kk
+sz
+ZM
+AZ
+FD
+FD
+KM
+OX
+KM
+FD
+ZP
iy
-GI
+ZM
KO
-Fb
-Fb
-Fb
+Zv
+oC
+Eo
yY
-zZ
-Pi
-Fb
-Fb
-Fb
-mb
-GI
-mT
-Fb
-Fb
-OH
-OH
-yf
-GI
+KG
+XG
+Ci
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
-um
-Fb
-oC
-Fb
-rY
-OO
yz
-Fb
-oC
-Fb
-Fz
yz
yz
yz
@@ -12709,66 +15665,66 @@ yz
yz
yz
yz
-qC
-qC
-Yx
yz
yz
yz
-HE
-Sr
-BF
-hO
-Sr
-HE
+yz
+yz
+yz
+yz
+yz
+yz
+Ye
+Zo
+lv
Kk
Jd
-yz
-AO
-qC
-qC
-qC
-yz
-GI
-GI
+WH
+Kk
+lv
+ZM
+us
+FD
+Jb
+La
sA
-sA
-Fb
-Fb
-iy
-GI
+La
+Jb
+ZP
+Af
+ZM
yC
-Fb
-Fb
-Fb
Zv
-zZ
-hd
-Fb
-Fb
-Fb
-FK
-GI
-Oa
-Fb
-Fb
-QZ
-fZ
-GI
-GI
+Gr
+eI
+Zv
+Lg
+XG
+Ci
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
-KO
-Fb
-Fb
-Fb
yz
-OO
yz
-Fb
-Fb
-Fb
yz
yz
yz
@@ -12851,66 +15807,66 @@ yz
yz
yz
yz
-qC
-qC
-iR
yz
yz
yz
yz
-Sr
-rO
-Ey
-Sr
yz
yz
-Dp
yz
+yz
+yz
+Ye
+Zo
+lv
+Kk
+Jd
+mr
WH
-qC
-qC
-qC
-yz
-yz
-GI
-GI
-GI
-Fb
-Fb
-GI
-GI
-GI
-OO
-tp
-tp
-OO
-Yd
-oQ
-vN
-vN
-oQ
-GI
-GI
-rp
-Fb
-Fb
-GI
-GI
-GI
+sF
+wd
+ZM
+FJ
+Jk
+ZM
+Pc
+ZM
+Jk
+ZX
+ZM
+eH
+cV
+Zv
+Gr
+eI
+Zv
+AI
+XG
+Ci
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
yz
-FK
-Fb
-Fb
-Fb
-qV
-OO
yz
-Fb
-Fb
-Fb
yz
yz
yz
@@ -12993,51 +15949,51 @@ yz
yz
yz
yz
-qC
-qC
-NP
yz
yz
yz
-HE
-Sr
yz
yz
-Sr
-HE
-kK
+yz
+yz
+yz
+yz
+Ye
+Zo
+lv
+Kk
WX
-yz
+mC
IA
-qC
-qC
-qC
-yz
-yz
-yz
-wl
-OO
-Fb
-Fb
+IA
+wi
+Bb
+FK
+Jl
+GM
+zs
+GM
+VO
+ZY
FM
-GI
+ra
Zi
-EE
-EE
-EE
-EE
-EE
-EE
-EE
-EE
-EE
-Xx
-GI
-OH
-Fb
-Fb
-OO
-wl
+Zi
+Zi
+PE
+Zv
+AI
+XG
+Ci
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -13135,51 +16091,51 @@ yz
yz
yz
yz
-qC
-yu
-yu
yz
yz
yz
-RV
-Sr
yz
yz
-Sr
+yz
+yz
+yz
+yz
+ab
+Zo
Gw
-ro
-yz
-yz
-yu
-yu
-qC
-qC
+Kk
+Jd
+mF
+ip
+ip
+wL
+Bc
+BW
+Js
+BW
+BW
+BW
+VP
+sX
+Jf
+Wa
+Br
+Br
+Br
+eI
+Zv
+ZU
+XG
+aV
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
-wl
-OO
-Fb
-Fb
-Fb
-tp
-je
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-wd
-AZ
-Fb
-Fb
-Fb
-OO
-wl
yz
yz
yz
@@ -13277,51 +16233,51 @@ yz
yz
yz
yz
-yu
-yu
-yu
-sr
-vl
-WV
-yu
-Sr
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
Sr
-yu
+Zo
+Zo
sr
-vl
+Jd
WV
-yu
-yu
-yu
-qC
+oW
+sJ
+wU
+Bf
+FN
+Jw
+Lk
+Cn
+St
+VQ
+OR
+vt
+wU
+cv
+LH
+GS
+MQ
+cC
+aD
+XG
+qF
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
-wl
-OO
-Fb
-Fb
-Fb
-tp
-je
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-wd
-AZ
-Fb
-Fb
-Fb
-OO
-wl
yz
yz
yz
@@ -13419,51 +16375,51 @@ yz
yz
yz
yz
-yu
-Ac
-qD
-Tx
-MU
-gF
-yu
-Sr
yz
yz
-Sr
-yu
-RX
yz
yz
+yz
+yz
+yz
+yz
+yz
+kO
Zo
-Ac
-yu
-Ac
-yz
-yz
-yz
-wl
-OO
-Fb
-Fb
+Zo
+Zo
+iW
+mI
+Zo
+tH
+tH
+Bq
+FQ
+tH
+tH
+Yd
+Yd
+Yd
+Ay
Rz
Yd
-je
-Br
-Br
-pm
-Br
-Br
-Br
-pm
-Br
-Br
-wd
-Yd
-kl
-Fb
-Fb
-OO
-wl
+ZT
+yI
+ZR
+pz
+ZT
+ZT
+ZT
+eD
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -13561,52 +16517,52 @@ yz
yz
yz
yz
-KJ
-qo
-GO
-Sr
-Sr
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
Sr
+Zo
+Zo
xA
-Sr
-Sr
-Sr
-Sr
xA
-Sr
-ss
-ss
+Jd
+mF
Ec
tH
gx
SF
-yz
-yz
-wl
-GI
-GI
-TM
-TM
+FR
+Jx
+kf
+Pl
+Sx
+PJ
+FY
UH
-GI
-je
-Br
+HB
+ZT
+yp
pm
-GI
+sd
wt
pq
-NF
-GI
-pm
-Br
-wd
-GI
-eP
-AZ
-AZ
-GI
-GI
-wl
+ZT
+ZT
+Fd
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -13703,52 +16659,52 @@ yz
yz
yz
yz
-NZ
-qo
-mq
-Sr
-Sr
-Sr
-Sr
-Sr
-Sr
-Sr
-Sr
-Sr
-Sr
-Sr
-Sr
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ab
+Zo
+an
+WH
+WH
+Jd
+mF
so
-tz
+tH
LC
-BJ
-yz
-yz
+SF
+FR
+FR
wl
-GI
+Pl
xZ
-Fb
-Fb
-EK
-GI
-je
-Br
-GI
-GI
-Jn
-Jn
-Jn
-GI
-GI
-Br
-wd
-GI
-vS
-Fb
-Fb
-rA
-GI
-wl
+On
+FY
+UH
+nb
+ZT
+Jc
+QT
+sU
+Pq
+Pq
+ZF
+ZT
+WF
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -13845,52 +16801,52 @@ yz
yz
yz
yz
-yu
-Ac
-pY
-HE
-HE
-EC
-Ac
-Sr
-Sr
-Sr
-Sr
-Ac
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Ye
+Zo
+ao
+WH
Rw
-HE
-HE
+Jd
+mF
MX
-Ac
-yu
-Ac
-yz
-yz
-wl
-GI
+tH
+xg
+SF
+FT
+FR
+Lq
+Pl
pI
-Fb
-Fb
-gD
+On
+es
+UH
OO
-je
-Br
+ZT
+Di
QT
sU
-Fb
-jC
-Fb
-Rt
-JV
-Br
-wd
-OO
-eX
-Fb
-Fb
-FD
-GI
-wl
+IF
+Pq
+AL
+ZT
+TU
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -13987,52 +16943,52 @@ yz
yz
yz
yz
-yu
-yu
-yu
-wL
-wL
-Ac
yz
yz
yz
yz
yz
yz
-Ac
+yz
+yz
+Ye
+Zo
+ap
+WH
+eP
kM
-kM
-yu
-yu
-yu
-qC
-yz
-yz
-wl
-GI
-kC
-Fb
-Fb
+mR
+oX
+tH
+xh
+BE
+FX
+FR
+FR
+PC
+On
+On
+LV
NU
-OO
-je
-Br
+Bp
+ZT
+Di
ZW
lz
-Fb
+ug
Pq
-Fb
-Tn
+EP
+ZT
TU
-Br
-wd
-OO
-OH
-Fb
-Fb
-OH
-GI
-wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -14129,7 +17085,6 @@ yz
yz
yz
yz
-Yx
yz
yz
yz
@@ -14138,43 +17093,44 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yu
-yz
-HE
-HE
-yz
-AO
-qC
-yz
-yz
-wl
-GI
-AX
-Fb
-Fb
+Ye
+Zo
+ap
+WH
+eX
+iX
+mT
+oX
+tH
+xi
+BF
+Ga
+FR
+FR
+PC
+On
+On
+Vg
TI
-OO
-je
-Br
-QT
-lz
+Gl
+ZT
+DR
+aI
+ql
iC
-Oo
+Pq
UY
-Tn
-JV
-Br
-wd
-OO
-za
-Fb
-Fb
-za
-GI
-wl
+ZT
+TU
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -14271,7 +17227,6 @@ yz
yz
yz
yz
-NP
yz
yz
yz
@@ -14280,43 +17235,44 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yu
-yz
-HE
-HE
-yz
-IA
-qC
-yz
-yz
-wl
-GI
+Ye
+Zo
+br
+WH
+ff
+ip
+mV
+pa
+tH
+xr
+BU
+GK
+FR
+LA
+Pl
Me
-Fb
-Fb
-Ek
-OO
-je
-Br
-ZW
-lz
-iC
-HQ
-UY
-Tn
+On
+kz
+On
+pW
+ZT
+SV
+DJ
+WR
+IF
+Pq
+sf
+ZT
TU
-Br
-wd
-OO
-DQ
-Fb
-Fb
-lL
-GI
-wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -14413,7 +17369,43 @@ yz
yz
yz
yz
-yu
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ab
+Zo
+bI
+WH
+WH
+ip
+mV
+pd
+tH
+xt
+BU
+FR
+FR
+Md
+Pl
+Sy
+On
+FY
+On
+JZ
+ZT
+Wl
+DJ
+WR
+Pq
+Pq
+yJ
+ZT
+WF
yz
yz
yz
@@ -14425,42 +17417,6 @@ yz
yz
yz
yz
-yu
-yz
-HE
-HE
-yz
-yu
-qC
-yz
-yz
-wl
-GI
-GI
-EN
-EN
-lA
-GI
-je
-Br
-QT
-lz
-Fb
-Fb
-Fb
-Tn
-JV
-Br
-wd
-OO
-GI
-Fb
-Fb
-GI
-GI
-wl
-yz
-yz
yz
yz
yz
@@ -14555,52 +17511,52 @@ yz
yz
yz
yz
-yu
yz
yz
yz
yz
yz
-yu
-yu
-yu
-yu
-yu
-yu
-yz
-HE
-HE
-HE
-yz
-yu
-yu
yz
yz
-wl
-GI
+yz
+Sr
+Zo
+Zo
+do
+do
+ip
+mV
+pn
+tH
+xv
+Ce
+FR
+FR
+Mt
+Pl
gX
-Fb
-Fb
+On
+QM
my
-GI
-je
-Br
-GI
-GI
+Fq
+ZT
+DM
+DJ
+WR
xz
HC
-UX
-GI
-GI
-Br
-wd
-OO
-pd
-Fb
-Fb
-pd
-GI
-wl
+ZT
+ZT
+Fd
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -14697,52 +17653,52 @@ yz
yz
yz
yz
-yu
yz
yz
yz
yz
yz
-yu
+yz
+yz
+yz
+yz
kO
-kO
-kO
-kO
-yu
-yz
-HE
-yz
-AW
-yz
-yu
-yu
-yz
-yz
-wl
-GI
+Zo
+Zo
+Zo
+jv
+mZ
+Zo
+tH
+tH
+CI
+GO
+GO
+CI
+Yd
TR
-Fb
-Fb
-hf
-GI
-je
-Br
-un
-GI
-rN
+Wu
+UT
+TR
+Yd
ZT
-rN
-GI
+PD
un
-Br
-wd
-OO
-pa
-Fb
-Fb
-Og
-GI
-wl
+VJ
+ZT
+ZT
+ZT
+eD
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -14839,52 +17795,52 @@ yz
yz
yz
yz
-yu
-yu
-yu
-yu
-Ac
-yu
-yu
-JM
-xJ
-xJ
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Ye
Dd
-yu
-yu
-yu
-yu
-yu
-yu
-yu
-yu
-yz
-yz
-wl
-GI
+dp
+fj
+ip
+mV
+pt
+sP
+xG
+CL
+GR
+GR
+MD
+Qc
GU
-Fb
-Fb
+WE
+hV
WA
-GI
-je
-Br
-Br
-GI
-Br
-Br
-Br
-GI
-Br
-Br
-wd
-OO
-Mt
-Fb
-Fb
-Mt
-GI
-wl
+EB
+sP
+qA
+oQ
+dx
+Pq
+Pq
+kx
+TU
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -14981,52 +17937,52 @@ yz
yz
yz
yz
-kO
-kO
-kO
-kO
-yu
-yu
-qC
-qC
-qC
-qC
-qC
-qC
-yu
-yu
-kO
-kO
-kO
-kO
-yu
yz
yz
-wl
-GI
-Ur
-Fb
-Fb
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Ye
+Dd
+dr
+fj
+jz
+nc
+pv
+ta
+xM
+CM
+WC
+WC
+WC
+Qh
+WC
+WC
+WC
Vn
-GI
-je
-Br
-Br
-GI
-Br
-Br
-Br
-GI
-Br
-Br
-wd
-OO
-Bf
-Fb
-Fb
-Bf
-GI
-wl
+kG
+rV
+Hp
+Sp
+wX
+Pq
+Pq
+kx
+TU
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -15123,52 +18079,52 @@ yz
yz
yz
yz
-JM
-xJ
-xJ
-Dd
-yu
-qC
-qC
-qC
-qC
-qC
-qC
-qC
-qC
-yu
-JM
-xJ
-xJ
-Dd
-yu
yz
yz
-wl
-GI
-AV
-Fb
-Fb
-lc
-GI
-je
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-wd
-OO
-OH
-Fb
-Fb
-OH
-GI
-wl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Ye
+Dd
+dB
+fj
+jD
+JM
+ip
+tx
+xO
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+yi
+dA
+QT
+Lh
+Xo
+Pq
+Pq
+kx
+TU
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -15274,6 +18230,33 @@ yz
yz
yz
yz
+Ye
+Dd
+dV
+fj
+ip
+mV
+pG
+tE
+yf
+WC
+WC
+Hf
+WC
+WC
+WC
+Hf
+WC
+WC
+Ee
+tE
+OZ
+Cq
+tg
+Pq
+Pq
+kx
+TU
yz
yz
yz
@@ -15286,33 +18269,6 @@ yz
yz
yz
yz
-wl
-GI
-xs
-Fb
-Fb
-uz
-GI
-je
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-wd
-GI
-Xg
-Fb
-Fb
-Xg
-GI
-wl
-yz
-yz
yz
yz
yz
@@ -15416,43 +18372,43 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-wl
-GI
+af
+bM
+bM
+bM
+jK
+nn
+pK
+bM
+yj
+WC
+Hf
+HO
+MK
+QE
pA
-Fb
-Fb
-ei
-GI
+HO
+Hf
+WC
+dk
MZ
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-Br
-ls
-GI
-FJ
-Fb
-Fb
-FJ
-GI
-wl
+ga
+po
+Rv
+MZ
+MZ
+MZ
+Jg
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -15558,43 +18514,43 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-wl
-GI
-GI
-sg
+ag
+bM
+bM
+fx
+jQ
+np
+pM
+bM
+yj
+WC
+HO
+HO
+ML
+ML
+ML
+HO
HO
WC
-GI
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-zL
-GI
-GI
-Fb
-Fb
-GI
-GI
-wl
+dk
+MZ
+gf
+zi
+gc
+hv
+MZ
+MZ
+aC
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
yz
yz
yz
@@ -15700,6 +18656,33 @@ yz
yz
yz
yz
+ah
+bM
+bM
+fE
+jQ
+np
+pY
+tX
+yv
+WC
+Hq
+JE
+MT
+QP
+MT
+WG
+og
+WC
+Nz
+nl
+pU
+zi
+gc
+wp
+MZ
+MZ
+ci
yz
yz
yz
@@ -15713,33 +18696,6 @@ yz
yz
yz
yz
-wl
-GI
-GI
-GI
-GI
-wl
-wl
-wl
-wl
-wl
-wl
-wl
-wl
-wl
-wl
-wl
-wl
-wl
-GI
-GI
-GI
-GI
-wl
-yz
-yz
-yz
-yz
yz
yz
yz
@@ -15842,6 +18798,33 @@ yz
yz
yz
yz
+ah
+bM
+bM
+fP
+jU
+nt
+qa
+tX
+yx
+WC
+Hu
+JN
+MT
+QR
+MT
+WJ
+dT
+WC
+Nz
+nl
+ij
+LB
+xU
+GT
+MZ
+MZ
+ci
yz
yz
yz
@@ -15856,33 +18839,6 @@ yz
yz
yz
yz
-wl
-GI
-GI
-GI
-wl
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-wl
-GI
-GI
-GI
-wl
-yz
-yz
-yz
-yz
-yz
-yz
yz
yz
yz
@@ -15984,6 +18940,33 @@ yz
yz
yz
yz
+ah
+bM
+bM
+fU
+jY
+nv
+qd
+tX
+xO
+WC
+Hq
+JN
+MU
+QS
+SZ
+WJ
+og
+WC
+Nz
+nl
+mh
+LZ
+LJ
+mh
+MZ
+MZ
+ci
yz
yz
yz
@@ -15999,33 +18982,6 @@ yz
yz
yz
yz
-wl
-GI
-GI
-wl
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-wl
-GI
-GI
-wl
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
yz
yz
yz
@@ -16126,6 +19082,33 @@ yz
yz
yz
yz
+ai
+bM
+bM
+fZ
+jQ
+np
+qo
+tX
+xO
+WC
+Hu
+JN
+MU
+QX
+SZ
+WJ
+dT
+WC
+Zx
+nl
+pb
+zi
+SB
+MC
+MZ
+MZ
+Cr
yz
yz
yz
@@ -16142,33 +19125,6 @@ yz
yz
yz
yz
-wl
-GI
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-GI
-wl
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
yz
yz
yz
@@ -16268,33 +19224,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ah
+bM
+bM
+bM
+ki
+nz
+qy
+bM
+xO
+WC
+Hq
+JN
+MT
+MT
+MT
+WJ
+og
+WC
+Zx
+nl
+MZ
+zb
+PG
+MZ
+MZ
+MZ
+ci
yz
yz
yz
@@ -16410,33 +19366,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ah
+bM
+bM
+gh
+jQ
+np
+qz
+bM
+xO
+WC
+HO
+HO
+Nf
+QZ
+Tl
+HO
+HO
+WC
+Zx
+nl
+aQ
+zi
+SB
+aQ
+MZ
+MZ
+ci
yz
yz
yz
@@ -16552,33 +19508,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ah
+bM
+bM
+gw
+jQ
+np
+qD
+bM
+xO
+WC
+HR
+HO
+Ng
+Rc
+Ng
+HO
+HR
+WC
+Zx
+nl
+cO
+zi
+SB
+Mb
+MZ
+MZ
+ci
yz
yz
yz
@@ -16694,33 +19650,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ah
+bM
+bM
+gy
+jQ
+np
+qE
+bM
+xO
+WC
+WC
+HO
+WC
+WC
+WC
+HO
+WC
+WC
+Zx
+nl
+NJ
+zi
+SB
+NJ
+MZ
+MZ
+ci
yz
yz
yz
@@ -16836,33 +19792,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ah
+bM
+bM
+gF
+kl
+nB
+qQ
+bM
+xO
+WC
+WC
+HO
+WC
+WC
+WC
+HO
+WC
+WC
+Zx
+nl
+wZ
+gZ
+CP
+wZ
+MZ
+MZ
+ci
yz
yz
yz
@@ -16978,33 +19934,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ah
+bM
+bM
+gW
+jY
+nP
+qS
+bM
+xO
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+Zx
+nl
+ij
+nq
+LJ
+ij
+MZ
+MZ
+ci
yz
yz
yz
@@ -17120,33 +20076,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-ph
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ah
+bM
+bM
+hj
+jQ
+jQ
+qT
+bM
+yB
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+zr
+MZ
+mN
+SB
+SB
+mN
+MZ
+MZ
+ci
yz
yz
yz
@@ -17262,33 +20218,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ag
+bM
+bM
+hk
+jQ
+jQ
+rp
+bM
+yD
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+WC
+Ff
+MZ
+vb
+SB
+SB
+vb
+MZ
+MZ
+aC
yz
yz
yz
@@ -17404,33 +20360,33 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+af
+bM
+bM
+bM
+kn
+nR
+rr
+bM
+yX
+yX
+yX
+yX
+yX
+yX
+yX
+yX
+yX
+yX
+yX
+MZ
+MZ
+ij
+ij
+MZ
+MZ
+MZ
+Jg
yz
yz
yz
@@ -17547,31 +20503,31 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ai
+bM
+bM
+bM
+bM
+bM
+bM
+za
+za
+za
+za
+za
+za
+za
+za
+za
+za
+za
+MZ
+MZ
+MZ
+MZ
+MZ
+MZ
+Cr
yz
yz
yz
@@ -17690,6 +20646,12 @@ yz
yz
yz
yz
+dW
+bM
+bM
+bM
+bM
+ai
yz
yz
yz
@@ -17701,18 +20663,12 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+Cr
+MZ
+MZ
+MZ
+MZ
+vK
yz
yz
yz
@@ -17833,6 +20789,11 @@ yz
yz
yz
yz
+ag
+bM
+bM
+bM
+ah
yz
yz
yz
@@ -17844,16 +20805,11 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+ci
+MZ
+MZ
+MZ
+aC
yz
yz
yz
@@ -17976,6 +20932,10 @@ yz
yz
yz
yz
+ai
+bM
+bM
+tZ
yz
yz
yz
@@ -17987,14 +20947,10 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
-yz
+FP
+MZ
+MZ
+Cr
yz
yz
yz
@@ -18119,6 +21075,9 @@ yz
yz
yz
yz
+dW
+bM
+ah
yz
yz
yz
@@ -18130,12 +21089,9 @@ yz
yz
yz
yz
-yz
-yz
-yz
-yz
-yz
-yz
+ci
+MZ
+vK
yz
yz
yz
@@ -18262,6 +21218,7 @@ yz
yz
yz
yz
+ag
yz
yz
yz
@@ -18275,8 +21232,7 @@ yz
yz
yz
yz
-yz
-yz
+aC
yz
yz
yz
diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm
index 8eeadd4bc2..57feeafecd 100644
--- a/maps/tether/submaps/_tether_submaps.dm
+++ b/maps/tether/submaps/_tether_submaps.dm
@@ -331,6 +331,7 @@
#include "../../submaps/admin_use_vr/spa.dmm"
#endif
+#include "../../submaps/admin_use_vr/ert.dm"
#include "../../submaps/admin_use_vr/fun.dm"
/datum/map_template/tether_lateload/fun/spa
name = "Space Spa"
From 5b4dc6069ad5b82a793eb1e64f71ce0ab6671566 Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Mon, 7 Sep 2020 07:56:41 +0100
Subject: [PATCH 04/13] all tests complete
---
.../crates_lockers/closets/wardrobe_vr.dm | 9 +
maps/submaps/admin_use_vr/ert.dm | 52 +-
maps/submaps/admin_use_vr/ert.dmm | 782 ++++++++++++------
vorestation.dme | 1 +
4 files changed, 579 insertions(+), 265 deletions(-)
create mode 100644 code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm
diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm
new file mode 100644
index 0000000000..55d38d0e95
--- /dev/null
+++ b/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm
@@ -0,0 +1,9 @@
+/obj/structure/closet/wardrobe/ert
+ starts_with = list(
+ /obj/item/clothing/under/ert,
+ /obj/item/device/radio/headset/ert/alt,
+ /obj/item/clothing/glasses/sunglasses,
+ /obj/item/clothing/shoes/boots/swat,
+ /obj/item/clothing/gloves/swat,
+ /obj/item/clothing/mask/balaclava/tactical,
+ /obj/item/clothing/mask/balaclava)
\ No newline at end of file
diff --git a/maps/submaps/admin_use_vr/ert.dm b/maps/submaps/admin_use_vr/ert.dm
index 89cf54c617..0f443bd0ba 100644
--- a/maps/submaps/admin_use_vr/ert.dm
+++ b/maps/submaps/admin_use_vr/ert.dm
@@ -98,19 +98,20 @@
// The 'ship'
/obj/effect/overmap/visitable/ship/ert_ship
name = "NRV Von Braun"
- desc = "Spacefaring vessel. Broadcasting Emergency Response IFF."
+ desc = "Spacefaring vessel. Broadcasting Corporate Emergency Responder IFF."
scanner_desc = @{"[i]Registration[/i]: Nanotrasen Rapid Response Vessel [i]Von Braun[/i]
[i]Class[/i]: [i]Kepler[/i]-class Frigate
-[i]Transponder[/i]: Broadcasting
+[i]Transponder[/i]: Broadcasting (ER-CORP)
[b]Notice[/b]: Impeding or interfering with emergency response vessels is a breach of numerous interstellar codes. Approach with caution."}
- color = "#9999ff" //Red
+ color = "#9999ff" //Blue
vessel_mass = 8000
vessel_size = SHIP_SIZE_LARGE
- initial_generic_waypoints = list("ert_ship_fore", "ert_ship_aft", "ert_ship_port", "ert_ship_star", "ert_ship_base_dock")
- initial_restricted_waypoints = list("NRB Von Braun's Bay" = list("omship_spawn_ert_lander"))
+ fore_dir = EAST
+ initial_generic_waypoints = list("ert_ship_near_fore", "ert_ship_near_aft", "ert_ship_near_port", "ert_ship_near_star", "ert_ship_port", "ert_ship_star", "ert_ship_base_dock", "omship_spawn_ert_lander")
+// initial_restricted_waypoints = list("NRV Von Braun's Bay" = list("omship_spawn_ert_lander"))
/obj/effect/landmark/map_data/ert_ship
- height = 1
+ height = 1
/obj/effect/shuttle_landmark/premade/ert_ship_port
name = "NRV Von Braun - Port Airlock"
@@ -120,6 +121,22 @@
name = "NRV Von Braun - Starboard Airlock"
landmark_tag = "ert_ship_star"
+/obj/effect/shuttle_landmark/premade/ert_ship_near_fore
+ name = "Near NRV Von Braun (Fore)"
+ landmark_tag = "ert_ship_near_fore"
+
+/obj/effect/shuttle_landmark/premade/ert_ship_near_aft
+ name = "Near NRV Von Braun (Aft)"
+ landmark_tag = "ert_ship_near_aft"
+
+/obj/effect/shuttle_landmark/premade/ert_ship_near_port
+ name = "Near NRV Von Braun (Port)"
+ landmark_tag = "ert_ship_near_port"
+
+/obj/effect/shuttle_landmark/premade/ert_ship_near_star
+ name = "Near NRV Von Braun (Starboard)"
+ landmark_tag = "ert_ship_near_star"
+
// The shuttle's 'shuttle' computer
/obj/machinery/computer/shuttle_control/explore/ert_ship_boat
name = "boat control console"
@@ -141,4 +158,25 @@
docking_controller_tag = "ert_boarding_shuttle"
shuttle_area = /area/shuttle/ert_ship_boat
fuel_consumption = 0
- defer_initialisation = TRUE
\ No newline at end of file
+ defer_initialisation = TRUE
+
+/obj/machinery/cryopod/ert_ship
+ announce_channel = "Response Team"
+ on_store_message = "has entered cryogenic storage."
+ on_store_name = "NRV Von Braun Cryo"
+ on_enter_visible_message = "starts climbing into the"
+ on_enter_occupant_message = "You feel cool air surround you. You go numb as your senses turn inward."
+ on_store_visible_message_1 = "hums and hisses as it moves"
+ on_store_visible_message_2 = "into cryogenic storage."
+
+//Misc Stuff
+/obj/item/weapon/paper/ert_armory_cells
+ name = "ERT Armory Cell Supply"
+ info = {"To All Current ERT Members,
\
+All energy weapons here come installed with standard power cells, but the spares on the racks are self-charging tech.
\
+
\
+Some fancy new micro-RTG cells or something, I think?
\
+
\
+Point is they're fairly expensive and probably prototypes or something, so for the love of God and your own career don't lose any of them and put them back when you return from a sortie.
\
+
\
+Lt. Cmdr. Sykes"}
\ No newline at end of file
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 66238a82ab..ea681b3b6a 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -95,6 +95,12 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"az" = (
+/obj/machinery/shipsensors{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/med_surg)
"aC" = (
/obj/machinery/power/pointdefense{
id_tag = "vonbraun_pd"
@@ -209,6 +215,10 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_star)
+"cl" = (
+/obj/effect/shuttle_landmark/premade/ert_ship_near_aft,
+/turf/space,
+/area/space)
"cs" = (
/obj/machinery/atmospherics/pipe/tank/air{
dir = 4;
@@ -318,7 +328,7 @@
/obj/structure/table/rack/steel,
/obj/item/toy/plushie/squid/blue{
desc = "A small, cute and loveable squid friend. This one is blue. Despite the name, it seems no more or less deadly than your regular plush squid.";
- name = "NT \'Deathsquid\' Plushie"
+ name = "NT 'Deathsquid' Plushie"
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
@@ -473,6 +483,15 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
+"et" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/ert/engineering)
"eD" = (
/obj/machinery/porta_turret/industrial/military,
/turf/simulated/floor/reinforced/airless,
@@ -538,16 +557,6 @@
/obj/structure/cable/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
-"fr" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/eng_storage)
"fx" = (
/obj/structure/table/steel_reinforced,
/obj/item/rig_module/rescue_pharm,
@@ -741,8 +750,15 @@
/obj/machinery/light/no_nightshift{
dir = 1
},
+/obj/item/mecha_parts/mecha_equipment/tool/powertool/medanalyzer,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
+"hs" = (
+/obj/machinery/pointdefense_control{
+ id_tag = "vonbraun_pd"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
"hv" = (
/obj/machinery/sleeper{
dir = 8
@@ -912,6 +928,10 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
+"jn" = (
+/obj/machinery/chem_master,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
"jv" = (
/obj/machinery/door/airlock/glass{
req_one_access = list(103)
@@ -996,10 +1016,28 @@
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/mortar,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
+"kt" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ id_tag = "ert_boarding_shuttle";
+ pixel_x = -8;
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
"kx" = (
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"kz" = (
@@ -1113,12 +1151,6 @@
/obj/machinery/portable_atmospherics/canister/empty,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
-"lt" = (
-/obj/machinery/light/no_nightshift{
- dir = 1
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
"lu" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
@@ -1128,7 +1160,6 @@
/obj/item/weapon/storage/box/survival/comp{
starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
},
-/obj/item/weapon/storage/box/survival/synth,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"lx" = (
@@ -1191,6 +1222,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_port)
+"lZ" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
"mb" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/belt/security/tactical,
@@ -1554,6 +1594,13 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"nX" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/engine{
+ dir = 4;
+ icon_state = "nozzle"
+ },
/turf/space,
/area/ship/ert/engineering)
"nZ" = (
@@ -1587,6 +1634,9 @@
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
},
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"os" = (
@@ -1609,6 +1659,10 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
+"oN" = (
+/obj/effect/shuttle_landmark/premade/ert_ship_near_fore,
+/turf/space,
+/area/space)
"oO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -1617,6 +1671,11 @@
dir = 5;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/eng_storage)
"oQ" = (
@@ -1800,7 +1859,7 @@
id = "ERT_Shuttle_Rear";
name = "ERT Shuttle Access";
pixel_y = -25;
- req_access = list(101)
+ req_access = list(103)
},
/obj/machinery/door/blast/regular/open{
id = "ERT_Shuttle_Rear";
@@ -1882,16 +1941,18 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
+"pS" = (
+/obj/effect/shuttle_landmark/premade/ert_ship_near_port,
+/turf/space,
+/area/space)
"pU" = (
/obj/machinery/body_scanconsole,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"pW" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/cell/device/weapon/recharge,
-/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/gun/energy/plasmastun,
+/obj/item/weapon/gun/energy/plasmastun,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/turf/simulated/floor/tiled/techfloor,
@@ -1973,9 +2034,6 @@
/obj/effect/floor_decal/corner/white{
dir = 8
},
-/obj/machinery/porta_turret/crescent{
- density = 1
- },
/obj/machinery/light/no_nightshift{
dir = 1
},
@@ -1986,8 +2044,14 @@
/area/ship/ert/med)
"qD" = (
/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/speedboost,
-/obj/item/mecha_parts/mecha_equipment/speedboost,
+/obj/item/mecha_parts/mecha_equipment/tool/cable_layer,
+/obj/item/mecha_parts/mecha_equipment/tool/rcd,
+/obj/item/mecha_parts/mecha_equipment/tool/powertool,
+/obj/item/mecha_parts/mecha_equipment/tool/powertool/cutter,
+/obj/item/mecha_parts/mecha_equipment/tool/powertool/inflatables,
+/obj/item/mecha_parts/mecha_equipment/tool/powertool/prybar,
+/obj/item/mecha_parts/mecha_equipment/tool/powertool/screwdriver,
+/obj/item/mecha_parts/mecha_equipment/tool/powertool/welding,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qE" = (
@@ -1996,16 +2060,12 @@
/obj/item/mecha_parts/mecha_equipment/repair_droid,
/obj/item/mecha_parts/mecha_equipment/repair_droid,
/obj/item/mecha_parts/mecha_equipment/repair_droid,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
-/obj/item/mecha_parts/mecha_tracking,
/obj/machinery/alarm/alarms_hidden{
dir = 1;
pixel_y = -26
},
+/obj/item/mecha_parts/mecha_equipment/tool/extinguisher,
+/obj/item/mecha_parts/mecha_equipment/tool/extinguisher,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qF" = (
@@ -2022,7 +2082,10 @@
/area/ship/ert/mech_bay)
"qS" = (
/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/cloak,
+/obj/item/mecha_parts/mecha_equipment/tool/jetpack,
+/obj/item/mecha_parts/mecha_equipment/tool/jetpack,
+/obj/item/mecha_parts/mecha_equipment/tool/jetpack,
+/obj/item/mecha_parts/mecha_equipment/tool/jetpack,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qT" = (
@@ -2063,6 +2126,10 @@
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
+"rs" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
"rt" = (
/obj/machinery/atmospherics/pipe/tank/air{
dir = 4;
@@ -2080,26 +2147,28 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"rA" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
- },
/obj/structure/window/plastitanium{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8;
+ icon_state = "intact-fuel"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"rD" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10;
+ icon_state = "intact-fuel"
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"rO" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 6
+/obj/machinery/shipsensors{
+ dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/mech_bay)
"rR" = (
/obj/machinery/atmospherics/pipe/tank/phoron{
dir = 8
@@ -2182,13 +2251,16 @@
/obj/machinery/vending/food,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"sw" = (
+/obj/machinery/telecomms/allinone/talon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
"sz" = (
/obj/structure/closet/wardrobe/ert,
/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
/obj/item/weapon/storage/box/survival/comp{
starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
},
-/obj/item/weapon/storage/box/survival/synth,
/obj/machinery/light/no_nightshift,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
@@ -2235,7 +2307,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/turf/simulated/floor/tiled/techmaint,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"sJ" = (
/obj/structure/table/rack/steel,
@@ -2261,6 +2336,10 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
+"sT" = (
+/obj/machinery/cryopod/ert_ship,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
"sU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -2349,6 +2428,23 @@
"tH" = (
/turf/simulated/wall/rdshull,
/area/ship/ert/armoury_st)
+"tK" = (
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"tL" = (
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 9
+ },
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/ert/engineering)
"tX" = (
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
@@ -2372,10 +2468,15 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"uh" = (
-/obj/machinery/atmospherics/unary/engine/biggest{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/visible/fuel{
+ dir = 10
},
-/turf/space,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
/area/ship/ert/engineering)
"um" = (
/obj/machinery/vending/engineering,
@@ -2414,10 +2515,10 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_star)
"ux" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"uE" = (
@@ -2529,6 +2630,13 @@
/obj/item/device/survivalcapsule,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/commander)
+"vv" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "NRV Von Braun Corridor";
+ tele_network = "centcom"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways)
"vA" = (
/obj/machinery/alarm/alarms_hidden{
pixel_y = 26
@@ -2545,11 +2653,11 @@
/obj/structure/closet/walllocker/emerglocker{
pixel_y = 32
},
-/obj/item/weapon/bedsheet/captain,
/obj/structure/bed/pod,
/obj/machinery/light/no_nightshift{
dir = 1
},
+/obj/item/weapon/bedsheet/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/commander)
"vQ" = (
@@ -2841,6 +2949,10 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
+"yl" = (
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
"yo" = (
/obj/machinery/door/airlock/external,
/obj/effect/map_helper/airlock/door/ext_door,
@@ -2934,21 +3046,28 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
+/obj/effect/catwalk_plated,
+/turf/simulated/floor/plating,
/area/ship/ert/engineering)
"yX" = (
-/obj/structure/fans/hardlight,
/obj/machinery/door/firedoor/border_only,
+/obj/structure/fans/hardlight,
+/obj/machinery/door/blast/regular/open{
+ id = "Von_Braun_Hangar";
+ name = "Hangar Blast Door"
+ },
/turf/simulated/floor/reinforced,
/area/ship/ert/hangar)
"yY" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/eng_storage)
+/area/ship/ert/barracks)
"za" = (
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/hangar)
@@ -2976,11 +3095,11 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
"zk" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/no_nightshift{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"zo" = (
@@ -3020,7 +3139,8 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
+/obj/effect/catwalk_plated,
+/turf/simulated/floor/plating,
/area/ship/ert/hallways)
"zD" = (
/obj/structure/table/rack,
@@ -3364,8 +3484,8 @@
/turf/simulated/floor/reinforced,
/area/ship/ert/hangar)
"CN" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"CP" = (
@@ -3381,11 +3501,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
"CZ" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light/no_nightshift{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Dd" = (
@@ -3404,6 +3524,12 @@
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Di" = (
@@ -3422,6 +3548,13 @@
/obj/machinery/porta_turret/industrial/military,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/engineering)
+"Dt" = (
+/obj/structure/railing/grey,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
"DJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3444,6 +3577,13 @@
/obj/item/weapon/storage/firstaid/surgery,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
+"DN" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 4;
+ icon_state = "nozzle"
+ },
+/turf/space,
+/area/ship/ert/engineering)
"DQ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -3518,11 +3658,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/commander)
"Eo" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -3530,6 +3665,11 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/eng_storage)
"Ez" = (
@@ -3722,10 +3862,10 @@
/area/ship/ert/armoury_st)
"FX" = (
/obj/structure/table/steel_reinforced,
-/obj/machinery/recharger,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/item/weapon/paper/ert_armory_cells,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
"FY" = (
@@ -3755,13 +3895,16 @@
/obj/machinery/power/emitter,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
+"Gv" = (
+/obj/structure/bed/chair/bay/chair/padded/blue,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
"Gw" = (
/obj/structure/closet/wardrobe/ert,
/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
/obj/item/weapon/storage/box/survival/comp{
starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
},
-/obj/item/weapon/storage/box/survival/synth,
/obj/machinery/light/no_nightshift{
dir = 1
},
@@ -3942,24 +4085,27 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/turf/simulated/floor/tiled/techmaint,
+/obj/structure/railing/grey,
+/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Id" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8;
+ icon_state = "intact-fuel"
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Ig" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Ii" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 8;
+ icon_state = "map_connector-fuel"
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
@@ -4002,11 +4148,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/commander)
"Ix" = (
-/obj/machinery/power/apc/hyper{
- alarms_hidden = 1;
- name = "VB APC - South";
- pixel_y = -24
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
@@ -4066,6 +4207,7 @@
dir = 1;
pixel_y = -26
},
+/obj/item/toy/figure/ert,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/commander)
"Jb" = (
@@ -4204,6 +4346,8 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/fiftyspawner/uranium,
+/obj/fiftyspawner/uranium,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"JJ" = (
@@ -4241,11 +4385,19 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
+"JW" = (
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/unary/engine{
+ dir = 4;
+ icon_state = "nozzle"
+ },
+/turf/space,
+/area/ship/ert/engineering)
"JY" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"JZ" = (
@@ -4264,24 +4416,27 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Kb" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
},
-/obj/machinery/meter,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/bridge)
"Kk" = (
/obj/effect/landmark/late_antag/ert,
/obj/structure/table/bench/steel,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"Kq" = (
-/obj/machinery/atmospherics/portables_connector{
- dir = 8
- },
/obj/machinery/light/no_nightshift{
dir = 4
},
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 8;
+ icon_state = "map_connector-fuel"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Kr" = (
@@ -4323,6 +4478,16 @@
/obj/structure/sign/department/eng,
/turf/simulated/wall/rdshull,
/area/ship/ert/bridge)
+"KB" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
"KG" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/toolbox/mechanical,
@@ -4345,18 +4510,15 @@
pixel_x = 3;
pixel_y = 3
},
-/obj/machinery/power/apc/hyper{
- alarms_hidden = 1;
- name = "VB APC - South";
- pixel_y = -24
- },
-/obj/structure/cable/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"KJ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
+/obj/structure/railing/grey{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"KM" = (
@@ -4423,10 +4585,6 @@
/obj/item/taperoll/engineering,
/obj/item/taperoll/engineering,
/obj/item/taperoll/engineering,
-/obj/machinery/firealarm/alarms_hidden{
- dir = 1;
- pixel_y = -26
- },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"Lh" = (
@@ -4503,14 +4661,16 @@
/area/ship/ert/med_surg)
"LC" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/melee/baton/fluff/stunstaff,
-/obj/item/weapon/melee/baton/fluff/stunstaff,
/obj/machinery/light/no_nightshift{
dir = 1
},
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
},
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/cell/device/weapon/recharge,
+/obj/item/weapon/cell/device/weapon/recharge,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"LH" = (
@@ -4648,7 +4808,7 @@
id = "ERT_Shuttle_Rear";
name = "ERT Shuttle Access";
pixel_y = 24;
- req_access = list(101)
+ req_access = list(103)
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
@@ -4726,7 +4886,7 @@
id = "ERT_Shuttle_Fore";
name = "ERT Deployment Access";
pixel_y = 24;
- req_access = list(101)
+ req_access = list(103)
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
@@ -4775,14 +4935,15 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"NH" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/turf/simulated/floor/tiled/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor/plating,
/area/ship/ert/engineering)
"NI" = (
/obj/machinery/door/airlock/glass_engineering{
@@ -4809,7 +4970,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"NP" = (
-/obj/machinery/atmospherics/binary/pump/high_power/on,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
@@ -4817,6 +4977,7 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/machinery/atmospherics/binary/pump/fuel/on,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"NR" = (
@@ -4896,10 +5057,10 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"Of" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Og" = (
@@ -4954,11 +5115,25 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/bridge)
+"Ok" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ id_tag = "ert_boarding_shuttle_dock";
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
"On" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"Oq" = (
-/obj/machinery/light/no_nightshift,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"Ox" = (
@@ -4987,7 +5162,8 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
+/obj/effect/catwalk_plated,
+/turf/simulated/floor/plating,
/area/ship/ert/bridge)
"OE" = (
/obj/structure/cable/yellow{
@@ -5007,7 +5183,8 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
+/obj/effect/catwalk_plated,
+/turf/simulated/floor/plating,
/area/ship/ert/bridge)
"OF" = (
/obj/structure/cable/yellow{
@@ -5022,6 +5199,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/bridge)
"OH" = (
@@ -5060,6 +5242,11 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 1
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/bridge)
"OT" = (
@@ -5074,12 +5261,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"OW" = (
-/obj/machinery/pointdefense_control{
- id_tag = "vonbraun_pd"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4;
icon_state = "intact-scrubbers"
@@ -5087,6 +5276,14 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/power/shield_generator/charged,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"OX" = (
@@ -5137,6 +5334,13 @@
},
/turf/simulated/wall/rdshull,
/area/ship/ert/bridge)
+"Pe" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
"Pl" = (
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
@@ -5258,7 +5462,7 @@
/area/ship/ert/hangar)
"Qh" = (
/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "ERT";
+ tele_name = "NRV Von Braun Hangar";
tele_network = "centcom"
},
/turf/simulated/floor/reinforced,
@@ -5289,6 +5493,12 @@
/obj/item/weapon/smes_coil,
/obj/item/device/t_scanner/advanced,
/obj/item/device/t_scanner/advanced,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "VB APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"QE" = (
@@ -5329,12 +5539,6 @@
pixel_y = 7;
req_one_access = list(101)
},
-/obj/machinery/embedded_controller/radio/airlock/airlock_controller{
- dir = 8;
- id_tag = "ert_boarding_shuttle";
- pixel_x = 52;
- pixel_y = -5
- },
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"QS" = (
@@ -5440,25 +5644,18 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"RC" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
-"RG" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 8
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"RO" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 9
},
-/obj/machinery/meter,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"RQ" = (
@@ -5468,6 +5665,11 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"RS" = (
@@ -5505,6 +5707,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/obj/structure/railing/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Sp" = (
@@ -5542,7 +5745,7 @@
id = "NRV_DELTA";
name = "DELTA ACCESS CONTROL";
pixel_x = -24;
- req_one_access = list(101)
+ req_one_access = list(108)
},
/obj/item/weapon/gun/projectile/automatic/p90,
/obj/item/weapon/gun/projectile/automatic/p90,
@@ -5591,6 +5794,14 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
+"SG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/eng_storage)
"SI" = (
/obj/machinery/portable_atmospherics/powered/scrubber,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -5628,15 +5839,15 @@
id = "ERT_Shuttle_Fore";
name = "ERT Deployment Access";
pixel_y = -25;
- req_access = list(101)
+ req_access = list(103)
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"Tx" = (
-/obj/machinery/atmospherics/pipe/manifold/visible/yellow{
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"TB" = (
@@ -5655,6 +5866,16 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
+"TG" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
"TI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -5703,12 +5924,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_star)
"Ut" = (
-/obj/machinery/power/apc/hyper{
- alarms_hidden = 1;
- dir = 1;
- name = "VB APC - North";
- pixel_y = 24
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
@@ -5756,7 +5971,9 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"UY" = (
-/obj/machinery/chem_master,
+/obj/structure/table/steel_reinforced,
+/obj/machinery/chemical_dispenser/full,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"Vg" = (
@@ -5879,6 +6096,10 @@
/obj/machinery/door/firedoor/border_only,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
+"Wv" = (
+/obj/effect/shuttle_landmark/premade/ert_ship_near_star,
+/turf/space,
+/area/space)
"WA" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -5955,8 +6176,8 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_star)
"WO" = (
-/obj/machinery/atmospherics/pipe/simple/visible/yellow,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"WR" = (
@@ -6114,9 +6335,50 @@
/obj/structure/sign/warning/radioactive,
/turf/simulated/wall/rdshull,
/area/ship/ert/engineering)
+"YP" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
"YR" = (
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/engineering)
+"YU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"YW" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
+"YZ" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "Von_Braun_Hangar";
+ name = "Hangar Blast Shields";
+ pixel_y = 24;
+ req_one_access = list(101)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
"Zi" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -6200,6 +6462,10 @@
"ZU" = (
/obj/machinery/power/port_gen/pacman/mrs,
/obj/machinery/light/no_nightshift,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"ZW" = (
@@ -7876,7 +8142,7 @@ yz
yz
yz
yz
-yz
+cl
yz
yz
yz
@@ -11140,13 +11406,13 @@ yz
yz
yz
Do
-nX
-nX
-uh
+yz
+yz
+yz
XW
-nX
-nX
-uh
+yz
+yz
+yz
Do
yz
yz
@@ -11275,27 +11541,27 @@ yz
yz
yz
yz
-ZL
-YR
-kL
-nX
-nX
-uh
-XW
-nX
-nX
-nX
-XW
-nX
-nX
-nX
-XW
-nX
-nX
-uh
-kL
YR
ZL
+kL
+yz
+yz
+yz
+XW
+nX
+DN
+JW
+XW
+nX
+DN
+JW
+XW
+yz
+yz
+yz
+kL
+ZL
+YR
yz
yz
yz
@@ -11420,21 +11686,21 @@ yz
YR
XW
XW
-OH
-OH
-OH
+nX
+DN
+JW
XW
-OH
-OH
-OH
+uh
+et
+tL
XW
-OH
-OH
-OH
+uh
+et
+tL
XW
-OH
-OH
-OH
+nX
+DN
+JW
XW
XW
YR
@@ -11559,12 +11825,12 @@ yz
yz
yz
yz
-YR
+Do
XW
XW
-OH
-OH
-OH
+uh
+et
+tL
XW
nZ
rA
@@ -11574,12 +11840,12 @@ nZ
rA
nZ
XW
-OH
-OH
-OH
+uh
+et
+tL
XW
XW
-YR
+Do
yz
yz
yz
@@ -11859,7 +12125,7 @@ Tx
WO
CZ
Of
-RG
+RO
XH
XW
XW
@@ -11989,12 +12255,12 @@ YR
XW
XW
op
-rO
uK
uK
uK
-uK
-Kb
+rs
+YP
+YP
NP
RO
OH
@@ -12130,11 +12396,11 @@ yz
ZL
XW
XW
-OH
+vd
rR
vd
vd
-vd
+OH
Ii
Kq
uS
@@ -13119,7 +13385,7 @@ yz
yz
yz
yz
-YR
+aj
XW
XW
kJ
@@ -13143,7 +13409,7 @@ XW
XW
XW
XW
-YR
+Rd
yz
yz
yz
@@ -13261,11 +13527,11 @@ yz
yz
yz
yz
-aj
-XW
-XW
-XW
-lt
+YR
+TG
+yl
+tK
+Oq
oE
sk
sk
@@ -13282,10 +13548,10 @@ TM
TM
ya
Oq
-XW
-XW
-XW
-Rd
+Gv
+yl
+TG
+YR
yz
yz
yz
@@ -13404,9 +13670,9 @@ yz
yz
yz
YR
-XW
-XW
-XW
+TG
+yl
+tK
lu
XW
XW
@@ -13424,9 +13690,9 @@ XW
XW
XW
lu
-XW
-XW
-XW
+Gv
+yl
+TG
YR
yz
yz
@@ -13701,7 +13967,7 @@ Iv
sp
Oi
Mm
-TZ
+sw
Xx
eF
TZ
@@ -14549,11 +14815,11 @@ sq
KW
KW
KW
-KW
+YU
KW
OE
KW
-KW
+YU
KW
KW
KW
@@ -15271,7 +15537,7 @@ Bj
Zv
SI
oO
-Zv
+SG
Qz
XG
Ci
@@ -15402,9 +15668,9 @@ ZM
AS
us
FD
-us
+Kb
OW
-us
+Dt
FD
Yx
Pn
@@ -15412,10 +15678,10 @@ ZM
um
Zv
oC
-fr
+Eo
Zv
KT
-XG
+KB
Ci
yz
yz
@@ -15533,7 +15799,7 @@ yz
yz
yz
Ye
-Zo
+yY
lv
Kk
Jd
@@ -15555,9 +15821,9 @@ KO
Zv
oC
Eo
-yY
+Zv
KG
-XG
+KB
Ci
yz
yz
@@ -15675,7 +15941,7 @@ yz
yz
yz
Ye
-Zo
+yY
lv
Kk
Jd
@@ -15683,7 +15949,7 @@ WH
Kk
lv
ZM
-us
+hs
FD
Jb
La
@@ -15699,7 +15965,7 @@ Gr
eI
Zv
Lg
-XG
+KB
Ci
yz
yz
@@ -15817,7 +16083,7 @@ yz
yz
yz
Ye
-Zo
+yY
lv
Kk
Jd
@@ -15841,7 +16107,7 @@ Gr
eI
Zv
AI
-XG
+KB
Ci
yz
yz
@@ -15959,7 +16225,7 @@ yz
yz
yz
Ye
-Zo
+yY
lv
Kk
WX
@@ -16113,7 +16379,7 @@ Bc
BW
Js
BW
-BW
+vv
BW
VP
sX
@@ -16206,7 +16472,7 @@ yz
yz
yz
yz
-yz
+pS
yz
yz
yz
@@ -16299,7 +16565,7 @@ yz
yz
yz
yz
-yz
+Wv
yz
yz
yz
@@ -16810,7 +17076,7 @@ yz
yz
yz
Ye
-Zo
+yY
ao
WH
Rw
@@ -16836,7 +17102,7 @@ sU
IF
Pq
AL
-ZT
+kx
TU
yz
yz
@@ -16952,7 +17218,7 @@ yz
yz
yz
Ye
-Zo
+yY
ap
WH
eP
@@ -16978,7 +17244,7 @@ lz
ug
Pq
EP
-ZT
+kx
TU
yz
yz
@@ -17094,7 +17360,7 @@ yz
yz
yz
Ye
-Zo
+yY
ap
WH
eX
@@ -17120,7 +17386,7 @@ ql
iC
Pq
UY
-ZT
+kx
TU
yz
yz
@@ -17236,7 +17502,7 @@ yz
yz
yz
Ye
-Zo
+yY
br
WH
ff
@@ -17259,10 +17525,10 @@ ZT
SV
DJ
WR
-IF
+jn
Pq
sf
-ZT
+kx
TU
yz
yz
@@ -18526,9 +18792,9 @@ yj
WC
HO
HO
+kt
ML
-ML
-ML
+Pe
HO
HO
WC
@@ -18940,7 +19206,7 @@ yz
yz
yz
yz
-ah
+ai
bM
bM
fU
@@ -18966,7 +19232,7 @@ LJ
mh
MZ
MZ
-ci
+Cr
yz
yz
yz
@@ -19082,7 +19348,7 @@ yz
yz
yz
yz
-ai
+ah
bM
bM
fZ
@@ -19108,7 +19374,7 @@ SB
MC
MZ
MZ
-Cr
+ci
yz
yz
yz
@@ -19232,14 +19498,14 @@ ki
nz
qy
bM
-xO
+YZ
WC
Hq
-JN
+YW
MT
MT
MT
-WJ
+lZ
og
WC
Zx
@@ -19374,7 +19640,7 @@ jQ
np
qz
bM
-xO
+Ok
WC
HO
HO
@@ -19792,7 +20058,7 @@ yz
yz
yz
yz
-ah
+ai
bM
bM
gF
@@ -19818,7 +20084,7 @@ CP
wZ
MZ
MZ
-ci
+Cr
yz
yz
yz
@@ -20381,8 +20647,8 @@ yX
yX
MZ
MZ
-ij
-ij
+sT
+sT
MZ
MZ
MZ
@@ -21075,7 +21341,7 @@ yz
yz
yz
yz
-dW
+rO
bM
ah
yz
@@ -21091,7 +21357,7 @@ yz
yz
ci
MZ
-vK
+az
yz
yz
yz
@@ -24490,7 +24756,7 @@ yz
yz
yz
yz
-yz
+oN
yz
yz
yz
diff --git a/vorestation.dme b/vorestation.dme
index e5112bfc0e..e0ba6b01fe 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -1454,6 +1454,7 @@
#include "code\game\objects\structures\crates_lockers\closets\utility_closets_vr.dm"
#include "code\game\objects\structures\crates_lockers\closets\walllocker.dm"
#include "code\game\objects\structures\crates_lockers\closets\wardrobe.dm"
+#include "code\game\objects\structures\crates_lockers\closets\wardrobe_vr.dm"
#include "code\game\objects\structures\crates_lockers\closets\secure\bar.dm"
#include "code\game\objects\structures\crates_lockers\closets\secure\cargo.dm"
#include "code\game\objects\structures\crates_lockers\closets\secure\cargo_vr.dm"
From 8edc51c7600f66c53af48686064fcb7c6c971d6b Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Mon, 7 Sep 2020 08:44:12 +0100
Subject: [PATCH 05/13] Update ert.dmm
---
maps/submaps/admin_use_vr/ert.dmm | 53 +++++++++++++++++++++++++------
1 file changed, 44 insertions(+), 9 deletions(-)
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index ea681b3b6a..3de48fc0fd 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -887,6 +887,13 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
+"iB" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
"iC" = (
/obj/item/device/healthanalyzer/advanced,
/obj/item/device/healthanalyzer/advanced,
@@ -1007,6 +1014,12 @@
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
+"km" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
"kn" = (
/obj/structure/table/rack/steel,
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive,
@@ -1447,7 +1460,8 @@
},
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
+/obj/effect/catwalk_plated,
+/turf/simulated/floor/plating,
/area/ship/ert/barracks)
"nl" = (
/obj/structure/grille,
@@ -3338,6 +3352,12 @@
/obj/machinery/shieldgen,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
+"Bo" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/engineering)
"Bp" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/projectile/automatic/z8,
@@ -4878,6 +4898,12 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
+"Nd" = (
+/obj/effect/floor_decal/corner/white{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
"Nf" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
@@ -5394,7 +5420,8 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
-/turf/simulated/floor/tiled/techmaint,
+/obj/effect/catwalk_plated,
+/turf/simulated/floor/plating,
/area/ship/ert/eng_storage)
"PG" = (
/obj/machinery/alarm/alarms_hidden{
@@ -5713,7 +5740,8 @@
"Sp" = (
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
+/obj/effect/catwalk_plated,
+/turf/simulated/floor/plating,
/area/ship/ert/med)
"Sr" = (
/obj/machinery/light/no_nightshift,
@@ -5927,6 +5955,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"UH" = (
@@ -6000,7 +6031,9 @@
/turf/simulated/floor/reinforced,
/area/ship/ert/hangar)
"VB" = (
-/obj/machinery/ntnet_relay,
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"VC" = (
@@ -6214,7 +6247,8 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/turf/simulated/floor/tiled/techmaint,
+/obj/effect/catwalk_plated,
+/turf/simulated/floor/plating,
/area/ship/ert/barracks)
"Xg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6239,6 +6273,7 @@
/obj/machinery/light/no_nightshift{
dir = 8
},
+/obj/machinery/ntnet_relay,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"XB" = (
@@ -13815,7 +13850,7 @@ ZL
XW
XW
XW
-lu
+Bo
XW
sp
sp
@@ -13831,7 +13866,7 @@ Mm
Mm
Mm
XW
-lu
+iB
XW
XW
XW
@@ -18093,7 +18128,7 @@ sP
qA
oQ
dx
-Pq
+Nd
Pq
kx
TU
@@ -18519,7 +18554,7 @@ tE
OZ
Cq
tg
-Pq
+km
Pq
kx
TU
From bdaadc57260965677d75fad5f45dcd4191834599 Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Tue, 8 Sep 2020 01:17:45 +0100
Subject: [PATCH 06/13] general polish and prep
includes some groundwork for the second phase of this PR
---
code/game/antagonist/outsider/ert_vr.dm | 6 +
.../crates_lockers/closets/wardrobe_vr.dm | 20 +-
maps/submaps/admin_use_vr/ert.dm | 16 +-
maps/submaps/admin_use_vr/ert.dmm | 2100 ++++++++++-------
vorestation.dme | 1 +
5 files changed, 1306 insertions(+), 837 deletions(-)
create mode 100644 code/game/antagonist/outsider/ert_vr.dm
diff --git a/code/game/antagonist/outsider/ert_vr.dm b/code/game/antagonist/outsider/ert_vr.dm
new file mode 100644
index 0000000000..e808272614
--- /dev/null
+++ b/code/game/antagonist/outsider/ert_vr.dm
@@ -0,0 +1,6 @@
+//boosted ERT spawn/cap numbers to match the Von Braun's spawns, just to be safe. not much point going to all the effort of giving you twelve slots if only seven can ever be used without admin fuckery. -Killian
+/datum/antagonist/ert
+ hard_cap = 12
+ hard_cap_round = 12
+ initial_spawn_req = 4
+ initial_spawn_target = 12
\ No newline at end of file
diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm
index 55d38d0e95..aab815a73f 100644
--- a/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm
+++ b/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm
@@ -1,4 +1,6 @@
+//ert wardrobe override, because these guys really don't need edgy red lockers with CCO dress uniforms, syndi(!!) turtlenecks, two edgy skull bandanas, or facemasks with no sprite. -Killian
/obj/structure/closet/wardrobe/ert
+ closet_appearance = /decl/closet_appearance/tactical //because ert lockers are red for some dumb reason
starts_with = list(
/obj/item/clothing/under/ert,
/obj/item/device/radio/headset/ert/alt,
@@ -6,4 +8,20 @@
/obj/item/clothing/shoes/boots/swat,
/obj/item/clothing/gloves/swat,
/obj/item/clothing/mask/balaclava/tactical,
- /obj/item/clothing/mask/balaclava)
\ No newline at end of file
+ /obj/item/clothing/mask/balaclava)
+
+//would you believe mercs have no official locker? well, now they do. basically just a rebranded ERT locker but hey, it's an option. -Killian
+/obj/structure/closet/wardrobe/merc
+ name = "mercenary equipment"
+ closet_appearance = /decl/closet_appearance/ert //because ert lockers are red for some dumb reason
+
+ starts_with = list(
+ /obj/item/clothing/under/tactical,
+ /obj/item/clothing/under/syndicate/combat,
+ /obj/item/device/radio/headset/syndicate/alt,
+ /obj/item/clothing/glasses/sunglasses,
+ /obj/item/clothing/shoes/boots/combat,
+ /obj/item/clothing/gloves/combat,
+ /obj/item/clothing/mask/balaclava/tactical,
+ /obj/item/clothing/mask/balaclava,
+ /obj/item/clothing/mask/bandana/skull)
\ No newline at end of file
diff --git a/maps/submaps/admin_use_vr/ert.dm b/maps/submaps/admin_use_vr/ert.dm
index 0f443bd0ba..fed9581426 100644
--- a/maps/submaps/admin_use_vr/ert.dm
+++ b/maps/submaps/admin_use_vr/ert.dm
@@ -17,9 +17,13 @@
requires_power = 1
dynamic_lighting = 1
+/area/ship/ert/engine
+ name = "\improper NRV Von Braun - Engine Bay"
+ icon_state = "engine"
+
/area/ship/ert/engineering
- name = "\improper NRV Von Braun - Engineering"
- icon_state = "engineering"
+ name = "\improper NRV Von Braun - Engineering Control Room"
+ icon_state = "engine_monitoring"
/area/ship/ert/eng_storage
name = "\improper NRV Von Braun - Engineering Storage"
@@ -62,8 +66,12 @@
icon_state = "surgery"
/area/ship/ert/hallways
- name = "\improper NRV Von Braun - Corridors"
- icon_state = "centcom_Hallway"
+ name = "\improper NRV Von Braun - Fore Corridors"
+ icon_state = "centcom"
+
+/area/ship/ert/hallways_aft
+ name = "\improper NRV Von Braun - Aft Corridors"
+ icon_state = "centcom_hallway1"
/area/ship/ert/dock_star
name = "\improper NRV Von Braun - Starboard Airlock"
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 3de48fc0fd..cee7f243d8 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -46,7 +46,7 @@
"aj" = (
/obj/machinery/light/no_nightshift,
/turf/simulated/floor/reinforced/airless,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"ak" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 6;
@@ -59,6 +59,9 @@
dir = 8
},
/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
"am" = (
@@ -66,6 +69,9 @@
pixel_x = 24
},
/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
"an" = (
@@ -95,6 +101,12 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"ax" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/shuttle/ert_ship_boat)
"az" = (
/obj/machinery/shipsensors{
dir = 4
@@ -109,12 +121,12 @@
/area/ship/ert/med_surg)
"aD" = (
/obj/structure/table/steel_reinforced,
-/obj/fiftyspawner/tritium,
-/obj/fiftyspawner/tritium,
/obj/machinery/alarm/alarms_hidden{
dir = 1;
pixel_y = -26
},
+/obj/fiftyspawner/uranium,
+/obj/fiftyspawner/uranium,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"aI" = (
@@ -129,6 +141,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"aQ" = (
@@ -138,6 +155,9 @@
/obj/machinery/light/no_nightshift{
dir = 8
},
+/obj/item/weapon/surgical/bone_clamp,
+/obj/item/weapon/surgical/scalpel/manager,
+/obj/item/weapon/surgical/circular_saw/manager,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"aV" = (
@@ -210,9 +230,6 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med_surg)
"ck" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 9
- },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_star)
"cl" = (
@@ -234,8 +251,18 @@
/obj/effect/floor_decal/corner/white{
dir = 4
},
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
+"cJ" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/hallways_aft)
"cO" = (
/obj/machinery/computer/operating,
/turf/simulated/floor/tiled/techfloor,
@@ -267,7 +294,7 @@
pixel_y = -26
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"dd" = (
/obj/machinery/atmospherics/pipe/manifold/visible,
/turf/simulated/wall/rdshull,
@@ -332,15 +359,16 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"ds" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/backpack/ert/commander,
+/obj/item/clothing/suit/space/void/responseteam/command,
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
"dx" = (
/obj/effect/floor_decal/corner/white{
dir = 9
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"dA" = (
@@ -385,7 +413,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"dT" = (
-/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
/obj/structure/window/plastitanium,
@@ -416,16 +444,15 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/mech_bay)
"dX" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
"dY" = (
@@ -490,14 +517,21 @@
/obj/structure/window/plastitanium{
dir = 8
},
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "VB_Rear_Blast";
+ name = "Blast Shield"
+ },
/turf/simulated/floor/plating,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"eD" = (
/obj/machinery/porta_turret/industrial/military,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med)
"eF" = (
-/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"eH" = (
@@ -524,11 +558,15 @@
"eP" = (
/obj/structure/table/steel_reinforced,
/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/item/weapon/storage/box/cdeathalarm_kit,
+/obj/item/weapon/storage/box/cdeathalarm_kit,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"eX" = (
/obj/structure/table/steel_reinforced,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/item/weapon/storage/box/backup_kit,
+/obj/item/weapon/storage/box/backup_kit,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"ff" = (
@@ -568,6 +606,10 @@
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
},
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"fE" = (
@@ -608,13 +650,8 @@
/turf/simulated/wall/rdshull,
/area/ship/ert/med_surg)
"gc" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/med_surg)
+/area/space)
"gf" = (
/obj/machinery/bodyscanner{
dir = 8
@@ -625,11 +662,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"gh" = (
-/obj/mecha/medical/odysseus/loaded,
/obj/machinery/mech_recharger,
/obj/machinery/light/no_nightshift{
dir = 8
},
+/obj/mecha/combat/gygax/serenity,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"gk" = (
@@ -641,11 +678,22 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
"gw" = (
-/obj/mecha/combat/gygax,
-/obj/machinery/mech_recharger,
+/obj/structure/table/rack/steel,
+/obj/item/mecha_parts/mecha_equipment/tool/extinguisher,
+/obj/item/mecha_parts/mecha_equipment/tool/extinguisher,
+/obj/item/mecha_parts/mecha_equipment/tool/powertool/medanalyzer,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flare,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun,
+/obj/item/mecha_parts/mecha_equipment/tool/sleeper,
+/obj/item/mecha_parts/mecha_equipment/tool/sleeper,
+/obj/item/mecha_parts/mecha_equipment/tool/syringe_gun,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"gx" = (
@@ -665,8 +713,8 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"gy" = (
-/obj/mecha/combat/durand,
/obj/machinery/mech_recharger,
+/obj/mecha/combat/gygax,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"gA" = (
@@ -702,6 +750,19 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
+"gR" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engine)
"gW" = (
/obj/structure/table/rack/steel,
/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
@@ -742,15 +803,19 @@
/obj/item/mecha_parts/mecha_equipment/combat_shield,
/obj/item/mecha_parts/mecha_equipment/combat_shield,
/obj/item/mecha_parts/mecha_equipment/omni_shield,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"hk" = (
/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun,
/obj/machinery/light/no_nightshift{
dir = 1
},
-/obj/item/mecha_parts/mecha_equipment/tool/powertool/medanalyzer,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"hs" = (
@@ -777,9 +842,6 @@
/obj/machinery/light/no_nightshift{
dir = 8
},
-/obj/effect/floor_decal/corner/yellow{
- dir = 8
- },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
"hH" = (
@@ -823,6 +885,22 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
+"hS" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med_surg)
"hU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -833,9 +911,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_port)
"hV" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/effect/floor_decal/corner/red{
dir = 9
},
@@ -876,24 +951,25 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
"iy" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/alarm/alarms_hidden{
dir = 1;
pixel_y = -26
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
+"iA" = (
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
"iB" = (
/obj/machinery/alarm/alarms_hidden{
dir = 1;
pixel_y = -26
},
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"iC" = (
/obj/item/device/healthanalyzer/advanced,
/obj/item/device/healthanalyzer/advanced,
@@ -914,6 +990,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
"iW" = (
@@ -950,13 +1029,16 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
"jA" = (
-/obj/machinery/teleport/hub,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"jD" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
+"jI" = (
+/obj/machinery/teleport/station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
"jK" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering";
@@ -997,6 +1079,17 @@
/obj/item/ammo_magazine/m9mml,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
+"kh" = (
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways_aft)
"ki" = (
/obj/machinery/door/blast/regular{
closed_layer = 4;
@@ -1030,16 +1123,15 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"kt" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/machinery/door/blast/regular/open{
+ id = "ERT_Shuttle_Rear";
+ name = "Boarding Hatch"
},
-/obj/machinery/light/no_nightshift{
- dir = 1
- },
-/obj/machinery/embedded_controller/radio/simple_docking_controller{
- id_tag = "ert_boarding_shuttle";
- pixel_x = -8;
- pixel_y = 22
+/obj/machinery/button/remote/blast_door{
+ id = "ERT_Shuttle_Rear";
+ name = "ERT Shuttle Access";
+ pixel_y = 24;
+ req_access = list(103)
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
@@ -1062,13 +1154,13 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"kG" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
- },
/obj/effect/floor_decal/corner/white{
dir = 10;
icon_state = "corner_white"
@@ -1087,7 +1179,7 @@
dir = 4
},
/turf/simulated/floor/reinforced/airless,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"kM" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 4
@@ -1155,6 +1247,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"ls" = (
@@ -1166,7 +1259,7 @@
/area/ship/ert/atmos)
"lu" = (
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"lv" = (
/obj/structure/closet/wardrobe/ert,
/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
@@ -1200,10 +1293,13 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
-"lL" = (
-/obj/effect/floor_decal/corner/yellow{
- dir = 9
+"lB" = (
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 4
},
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
+"lL" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_port)
"lR" = (
@@ -1233,17 +1329,15 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_port)
"lZ" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 1
- },
-/obj/machinery/light/no_nightshift{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/ert_ship_boat)
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engine)
"mb" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/belt/security/tactical,
@@ -1327,6 +1421,22 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
+"mH" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
"mI" = (
/obj/machinery/door/airlock/glass{
req_one_access = list(103)
@@ -1491,6 +1601,10 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
+"no" = (
+/obj/machinery/photocopier,
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
"np" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -1538,10 +1652,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
"nx" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -1550,6 +1660,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/atmos)
"nz" = (
@@ -1616,15 +1729,25 @@
icon_state = "nozzle"
},
/turf/space,
-/area/ship/ert/engineering)
-"nZ" = (
-/obj/structure/window/plastitanium{
- dir = 8
+/area/ship/ert/engine)
+"nY" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
+"oa" = (
+/obj/structure/table/rack,
+/obj/item/weapon/hand_tele,
+/obj/item/device/perfect_tele,
+/obj/item/device/binoculars,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
"og" = (
-/obj/machinery/door/firedoor,
+/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
/obj/structure/window/plastitanium,
@@ -1643,7 +1766,7 @@
pixel_y = 26
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"op" = (
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
@@ -1652,7 +1775,7 @@
dir = 6
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"os" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 4
@@ -1669,10 +1792,6 @@
/obj/machinery/portable_atmospherics/canister/air,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
-"oE" = (
-/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
"oN" = (
/obj/effect/shuttle_landmark/premade/ert_ship_near_fore,
/turf/space,
@@ -1703,6 +1822,11 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"oV" = (
@@ -1818,6 +1942,11 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
"pq" = (
@@ -1868,19 +1997,10 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"pA" = (
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "ERT_Shuttle_Rear";
- name = "ERT Shuttle Access";
- pixel_y = -25;
- req_access = list(103)
- },
-/obj/machinery/door/blast/regular/open{
- id = "ERT_Shuttle_Rear";
- name = "Boarding Hatch"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/ert_ship_boat)
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways_aft)
"pG" = (
/obj/structure/closet{
name = "custodial"
@@ -2006,11 +2126,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"ql" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -2029,6 +2144,17 @@
/obj/item/weapon/rig/ert/medical,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
+"qt" = (
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/uranium,
+/obj/fiftyspawner/uranium,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
"qy" = (
/obj/structure/sign/department/eng{
desc = "ACCESS VIA DIRECT AUTHORIZATION FROM CENTRAL ONLY.";
@@ -2066,20 +2192,16 @@
/obj/item/mecha_parts/mecha_equipment/tool/powertool/prybar,
/obj/item/mecha_parts/mecha_equipment/tool/powertool/screwdriver,
/obj/item/mecha_parts/mecha_equipment/tool/powertool/welding,
+/obj/item/mecha_parts/mecha_equipment/speedboost,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qE" = (
-/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/repair_droid,
-/obj/item/mecha_parts/mecha_equipment/repair_droid,
-/obj/item/mecha_parts/mecha_equipment/repair_droid,
-/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/machinery/mech_recharger,
/obj/machinery/alarm/alarms_hidden{
dir = 1;
pixel_y = -26
},
-/obj/item/mecha_parts/mecha_equipment/tool/extinguisher,
-/obj/item/mecha_parts/mecha_equipment/tool/extinguisher,
+/obj/mecha/combat/durand,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qF" = (
@@ -2109,10 +2231,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"ra" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -2121,6 +2239,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
"rp" = (
@@ -2136,14 +2257,14 @@
/area/ship/ert/mech_bay)
"rr" = (
/obj/structure/table/rack/steel,
-/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/flare,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"rs" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"rt" = (
/obj/machinery/atmospherics/pipe/tank/air{
dir = 4;
@@ -2158,6 +2279,10 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
},
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
+/obj/structure/table/steel_reinforced,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"rA" = (
@@ -2168,15 +2293,18 @@
dir = 8;
icon_state = "intact-fuel"
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"rD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 10;
icon_state = "intact-fuel"
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"rO" = (
/obj/machinery/shipsensors{
dir = 4
@@ -2191,7 +2319,7 @@
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"rS" = (
/obj/machinery/atmospherics/portables_connector{
dir = 4
@@ -2233,10 +2361,6 @@
/obj/machinery/chemical_dispenser/ert,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
-"sk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
"so" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/backpack/ert/security,
@@ -2266,7 +2390,9 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sw" = (
-/obj/machinery/telecomms/allinone/talon,
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"sz" = (
@@ -2293,8 +2419,17 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/item/modular_computer/console/preset/medical{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
+"sB" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/hallways_aft)
"sC" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -2392,15 +2527,14 @@
/obj/machinery/door/firedoor/multi_tile,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
+"tb" = (
+/obj/machinery/telecomms/allinone/talon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
"tg" = (
/obj/effect/floor_decal/corner/white{
dir = 6
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"tp" = (
@@ -2446,8 +2580,9 @@
/obj/structure/bed/chair/bay/chair/padded/blue{
dir = 1
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"tL" = (
/obj/machinery/atmospherics/pipe/simple/visible/fuel{
dir = 9
@@ -2457,8 +2592,36 @@
/obj/structure/window/plastitanium{
dir = 8
},
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "VB_Rear_Blast";
+ name = "Blast Shield"
+ },
/turf/simulated/floor/plating,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
+"tV" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"tW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/embedded_controller/radio/simple_docking_controller{
+ id_tag = "ert_boarding_shuttle";
+ pixel_x = -8;
+ pixel_y = 22
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
"tX" = (
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
@@ -2490,8 +2653,15 @@
/obj/structure/window/plastitanium{
dir = 8
},
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "VB_Rear_Blast";
+ name = "Blast Shield"
+ },
/turf/simulated/floor/plating,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"um" = (
/obj/machinery/vending/engineering,
/turf/simulated/floor/tiled/techfloor,
@@ -2508,17 +2678,17 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
-"up" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/obj/structure/window/plastitanium{
- dir = 8
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+"uq" = (
+/obj/structure/sign/department/medbay,
+/turf/simulated/wall/rdshull,
+/area/ship/ert/med_surg)
"us" = (
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
@@ -2529,25 +2699,19 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_star)
"ux" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"uE" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
dir = 8
},
/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
"uG" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/item/modular_computer/console/preset/sysadmin{
dir = 1
},
@@ -2562,9 +2726,6 @@
/obj/machinery/light/no_nightshift{
dir = 8
},
-/obj/effect/floor_decal/corner/yellow{
- dir = 1
- },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
"uK" = (
@@ -2572,7 +2733,7 @@
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"uS" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -2581,8 +2742,13 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"vb" = (
/obj/machinery/sleeper{
dir = 4
@@ -2597,7 +2763,7 @@
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"vg" = (
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/machinery/meter,
@@ -2616,6 +2782,15 @@
icon_state = "intact-scrubbers"
},
/obj/machinery/door/firedoor/border_only,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "VB_Rear_Blast";
+ name = "Blast Shield"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"vt" = (
@@ -2635,28 +2810,16 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
-"vu" = (
-/obj/structure/table/rack,
-/obj/item/weapon/hand_tele,
-/obj/item/device/perfect_tele,
-/obj/item/device/binoculars,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/commander)
"vv" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "NRV Von Braun Corridor";
- tele_network = "centcom"
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
},
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hallways)
-"vA" = (
-/obj/machinery/alarm/alarms_hidden{
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/commander)
+/area/ship/ert/hallways_aft)
"vK" = (
/obj/machinery/light/no_nightshift{
dir = 8
@@ -2664,30 +2827,21 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med_surg)
"vL" = (
-/obj/structure/closet/walllocker/emerglocker{
- pixel_y = 32
+/obj/machinery/light_switch{
+ pixel_y = 23
},
-/obj/structure/bed/pod,
-/obj/machinery/light/no_nightshift{
- dir = 1
+/obj/machinery/light_switch{
+ pixel_y = 23
},
-/obj/item/weapon/bedsheet/blue,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"vQ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
-"vS" = (
-/obj/structure/filingcabinet/filingcabinet,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/commander)
-"wb" = (
-/obj/machinery/photocopier,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/commander)
"wd" = (
/obj/structure/sign/department/conference_room{
name = "OUTFITTING"
@@ -2724,6 +2878,18 @@
/obj/item/weapon/gun/energy/gun,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
+"wn" = (
+/obj/structure/sign/department/telecoms{
+ name = "TELEPORTER"
+ },
+/turf/simulated/wall/rdshull,
+/area/ship/ert/teleporter)
+"wo" = (
+/obj/machinery/light/no_nightshift,
+/obj/machinery/teleport/hub,
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/teleporter)
"wp" = (
/obj/machinery/sleep_console{
dir = 8
@@ -2763,17 +2929,17 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"wU" = (
/turf/simulated/wall/rdshull,
/area/ship/ert/hallways)
"wX" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
@@ -2793,6 +2959,9 @@
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/box/smokes,
/obj/item/weapon/storage/box/smokes,
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xi" = (
@@ -2845,6 +3014,10 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
+"xx" = (
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/hallways_aft)
"xz" = (
/obj/structure/closet/medical_wall{
pixel_x = 32;
@@ -2880,15 +3053,17 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"xG" = (
-/obj/effect/floor_decal/industrial/warning/corner,
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/alarm/alarms_hidden{
pixel_y = 26
},
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"xM" = (
-/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 5;
icon_state = "intact-scrubbers"
@@ -2905,14 +3080,14 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"xU" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
"xZ" = (
@@ -2922,11 +3097,10 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"ya" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 1
- },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"yf" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/space_heater,
@@ -2939,11 +3113,24 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
-"yi" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+"yg" = (
+/obj/machinery/door/firedoor/glass,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 4
},
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 2;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
+"yi" = (
/obj/effect/floor_decal/corner/white{
dir = 10;
icon_state = "corner_white"
@@ -2952,6 +3139,9 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"yj" = (
@@ -2965,8 +3155,9 @@
/area/ship/ert/hangar)
"yl" = (
/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"yo" = (
/obj/machinery/door/airlock/external,
/obj/effect/map_helper/airlock/door/ext_door,
@@ -3034,8 +3225,21 @@
/obj/machinery/light/no_nightshift{
dir = 1
},
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/sign/vacuum{
+ pixel_y = 32
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
+"yG" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways_aft)
"yI" = (
/obj/structure/sign/department/medbay,
/turf/simulated/wall/rdshull,
@@ -3061,6 +3265,11 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/effect/catwalk_plated,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/plating,
/area/ship/ert/engineering)
"yX" = (
@@ -3083,6 +3292,9 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"za" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/hangar)
"zb" = (
@@ -3098,6 +3310,22 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
+"zg" = (
+/obj/item/modular_computer/console/preset/engineering{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"zh" = (
+/obj/machinery/button/remote/blast_door{
+ id = "VB_Rear_Blast";
+ name = "Emergency Blast Doors";
+ pixel_y = 24;
+ req_access = list(103)
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
"zi" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3109,19 +3337,14 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
"zk" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/light/no_nightshift{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"zo" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/item/modular_computer/console/preset/command{
dir = 1
},
@@ -3154,19 +3377,15 @@
dir = 4
},
/obj/effect/catwalk_plated,
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
/turf/simulated/floor/plating,
/area/ship/ert/hallways)
-"zD" = (
-/obj/structure/table/rack,
-/obj/item/weapon/gun/projectile/deagle,
-/obj/item/ammo_magazine/m44,
-/obj/item/ammo_magazine/m44,
-/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/commander)
"zP" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"zT" = (
/obj/structure/cable/yellow{
@@ -3174,19 +3393,16 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"Af" = (
-/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/machinery/power/apc/hyper{
alarms_hidden = 1;
dir = 4;
name = "VB APC - East";
pixel_x = 24
},
+/obj/structure/cable/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Ah" = (
@@ -3196,8 +3412,21 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_scrubber/on,
-/turf/simulated/floor/tiled/techfloor,
+/obj/structure/table/woodentable,
+/obj/item/weapon/implantpad,
+/obj/item/weapon/implanter,
+/obj/item/weapon/storage/box/admints,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
+"Ai" = (
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways_aft)
"An" = (
/obj/machinery/power/apc/hyper{
alarms_hidden = 1;
@@ -3209,10 +3438,10 @@
d2 = 8;
icon_state = "0-8"
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"Ao" = (
-/obj/item/modular_computer/console/preset/ert{
+/obj/item/modular_computer/console/preset/medical{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
@@ -3221,6 +3450,7 @@
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
},
+/obj/item/modular_computer/console/preset/security,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Ar" = (
@@ -3357,7 +3587,7 @@
pixel_y = 26
},
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"Bp" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/projectile/automatic/z8,
@@ -3374,6 +3604,10 @@
/obj/item/ammo_magazine/m762/ap,
/obj/item/ammo_magazine/m762/ap,
/obj/item/ammo_magazine/m762/ap,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Bq" = (
@@ -3423,6 +3657,10 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
+"BI" = (
+/obj/machinery/porta_turret/industrial/military,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engineering)
"BU" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -3472,6 +3710,11 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"Cr" = (
@@ -3485,9 +3728,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"CL" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/effect/floor_decal/corner/red{
dir = 8
},
@@ -3501,13 +3741,13 @@
dir = 9;
pixel_y = 0
},
-/turf/simulated/floor/reinforced,
+/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"CN" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"CP" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -3527,7 +3767,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"Dd" = (
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
@@ -3550,6 +3790,10 @@
/obj/structure/window/plastitanium{
dir = 4
},
+/obj/machinery/door/blast/regular/open{
+ id = "VB_Rear_Blast";
+ name = "Blast Shield"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Di" = (
@@ -3567,7 +3811,7 @@
"Do" = (
/obj/machinery/porta_turret/industrial/military,
/turf/simulated/floor/reinforced/airless,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"Dt" = (
/obj/structure/railing/grey,
/obj/structure/railing/grey{
@@ -3575,6 +3819,19 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
+"Du" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "ERT_Shuttle_Fore";
+ name = "ERT Deployment Access";
+ pixel_y = -25;
+ req_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
"DJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3583,6 +3840,11 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"DK" = (
@@ -3595,6 +3857,12 @@
/obj/structure/table/steel_reinforced,
/obj/item/weapon/storage/firstaid/surgery,
/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/weapon/surgical/bone_clamp,
+/obj/item/weapon/surgical/bone_clamp,
+/obj/item/weapon/surgical/scalpel/manager,
+/obj/item/weapon/surgical/scalpel/manager,
+/obj/item/weapon/surgical/circular_saw/manager,
+/obj/item/weapon/surgical/circular_saw/manager,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"DN" = (
@@ -3603,7 +3871,7 @@
icon_state = "nozzle"
},
/turf/space,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"DQ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -3628,11 +3896,9 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
-"DV" = (
-/obj/structure/table/rack,
-/obj/item/weapon/rig/ert,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/commander)
+"DS" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/hallways_aft)
"Ec" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/backpack/ert/security,
@@ -3655,8 +3921,9 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"Ee" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1;
@@ -3675,7 +3942,7 @@
/area/ship/ert/hangar)
"Eh" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"Eo" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -3692,6 +3959,21 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/eng_storage)
+"Eq" = (
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 4
+ },
+/obj/structure/window/plastitanium{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
"Ez" = (
/obj/structure/bed/chair/office/dark{
dir = 4
@@ -3701,7 +3983,7 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"EA" = (
/obj/structure/table/woodentable,
@@ -3709,18 +3991,19 @@
/obj/item/weapon/storage/box/cdeathalarm_kit,
/obj/item/weapon/stamp/centcomm,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"EB" = (
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 4
- },
/obj/effect/floor_decal/corner/white,
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/firealarm/alarms_hidden{
dir = 1;
pixel_y = -26
},
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"EC" = (
@@ -3730,7 +4013,7 @@
/obj/machinery/light/no_nightshift{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"ED" = (
/obj/item/modular_computer/console/preset/ert{
@@ -3741,6 +4024,15 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
+"EG" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
"EP" = (
/obj/structure/closet/crate/medical,
/obj/item/weapon/storage/box/autoinjectors,
@@ -3768,6 +4060,12 @@
dir = 5
},
/obj/machinery/light/no_nightshift,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/structure/sign/vacuum{
+ pixel_y = -32
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"Fg" = (
@@ -3880,6 +4178,16 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
+"FW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways_aft)
"FX" = (
/obj/structure/table/steel_reinforced,
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -3917,8 +4225,9 @@
/area/ship/ert/eng_storage)
"Gv" = (
/obj/structure/bed/chair/bay/chair/padded/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"Gw" = (
/obj/structure/closet/wardrobe/ert,
/obj/item/modular_computer/tablet/preset/custom_loadout/elite,
@@ -3931,14 +4240,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"GI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
/obj/structure/window/plastitanium{
dir = 8
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"GJ" = (
/obj/machinery/porta_turret/industrial/military,
/turf/simulated/floor/reinforced/airless,
@@ -3967,9 +4276,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
"GR" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/effect/floor_decal/corner/red{
dir = 9
},
@@ -3991,9 +4297,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"GU" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/effect/floor_decal/corner/red{
dir = 8
},
@@ -4005,19 +4308,23 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
-"Hf" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 8
+"GZ" = (
+/obj/structure/bed/chair/bay/shuttle,
+/obj/machinery/light/no_nightshift{
+ dir = 4
},
-/turf/simulated/floor/reinforced,
+/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
+"Hf" = (
+/turf/simulated/wall/rdshull,
+/area/ship/ert/engine)
"Hp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"Hq" = (
-/obj/machinery/door/firedoor,
+/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
/obj/structure/window/plastitanium,
@@ -4032,7 +4339,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"Hu" = (
-/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/firedoor,
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
/obj/structure/window/plastitanium,
@@ -4084,20 +4391,54 @@
pixel_x = 2;
pixel_y = 2
},
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"HE" = (
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/dock_port)
+"HH" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/ert_ship_boat)
+"HK" = (
+/obj/machinery/door/blast/regular{
+ id = "ERT_Shuttle_Fore"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 2;
+ id = "ERT_Blast_Windows";
+ name = "Blast Shield"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
"HO" = (
/turf/simulated/wall/rdshull,
/area/shuttle/ert_ship_boat)
"HR" = (
-/obj/structure/shuttle/engine/propulsion{
- dir = 4
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 1
},
-/turf/simulated/floor/reinforced,
-/area/shuttle/ert_ship_boat)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways_aft)
"HZ" = (
/obj/machinery/computer/ship/navigation{
dir = 1
@@ -4108,27 +4449,41 @@
/obj/structure/railing/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
+"Ia" = (
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engine)
+"Ib" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/hallways_aft)
"Id" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 8;
icon_state = "intact-fuel"
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"Ig" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"Ii" = (
/obj/machinery/atmospherics/portables_connector/fuel{
dir = 8;
icon_state = "map_connector-fuel"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"Io" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -4162,16 +4517,13 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
"Iv" = (
-/obj/structure/table/rack,
-/obj/item/weapon/storage/backpack/ert/commander,
-/obj/item/clothing/suit/space/void/responseteam/command,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"Ix" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 5
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"IA" = (
/obj/structure/cable/yellow{
@@ -4204,7 +4556,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"IL" = (
/obj/structure/table/woodentable,
@@ -4212,7 +4564,11 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
},
-/turf/simulated/floor/tiled/techfloor,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"IZ" = (
/obj/structure/table/woodentable,
@@ -4228,12 +4584,15 @@
pixel_y = -26
},
/obj/item/toy/figure/ert,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/wood,
/area/ship/ert/commander)
"Jb" = (
/obj/machinery/light/no_nightshift{
dir = 4
},
+/obj/item/modular_computer/console/preset/ert{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Jc" = (
@@ -4345,42 +4704,31 @@
/turf/simulated/wall/rdshull,
/area/ship/ert/dock_port)
"JE" = (
-/obj/structure/bed/chair/bay/shuttle,
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = 5
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
},
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -4
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -12
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/ert_ship_boat)
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
"JG" = (
/obj/structure/cable/green{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/obj/fiftyspawner/uranium,
-/obj/fiftyspawner/uranium,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"JJ" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
"JM" = (
@@ -4399,12 +4747,6 @@
/obj/structure/bed/chair/bay/shuttle,
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
-"JQ" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
"JW" = (
/obj/machinery/light/no_nightshift,
/obj/machinery/atmospherics/unary/engine{
@@ -4412,14 +4754,34 @@
icon_state = "nozzle"
},
/turf/space,
-/area/ship/ert/engineering)
-"JY" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+/area/ship/ert/engine)
+"JX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"JY" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"JZ" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/energy/laser,
@@ -4444,6 +4806,12 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
+"Kf" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/teleporter)
"Kk" = (
/obj/effect/landmark/late_antag/ert,
/obj/structure/table/bench/steel,
@@ -4457,8 +4825,13 @@
dir = 8;
icon_state = "map_connector-fuel"
},
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"Kr" = (
/obj/machinery/light/no_nightshift{
dir = 4
@@ -4467,8 +4840,14 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"Ks" = (
/obj/machinery/door/airlock/centcom{
name = "Commander";
@@ -4564,6 +4943,11 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "VB_Rear_Blast";
+ name = "Blast Shield"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"KT" = (
@@ -4614,6 +4998,11 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"Lk" = (
@@ -4677,6 +5066,11 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
"LC" = (
@@ -4766,10 +5160,7 @@
/turf/simulated/wall/rdshull,
/area/ship/ert/teleporter)
"Ms" = (
-/obj/machinery/computer/teleporter{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
"Mt" = (
/obj/structure/table/rack/steel,
@@ -4784,9 +5175,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"Mv" = (
-/obj/machinery/teleport/station,
-/obj/machinery/light/no_nightshift,
-/turf/simulated/floor/tiled/techfloor,
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "NRV Von Braun Teleporter Room";
+ tele_network = "centcom"
+ },
+/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
"My" = (
/obj/machinery/power/terminal{
@@ -4810,9 +5203,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"MD" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/effect/floor_decal/corner/red{
dir = 1
},
@@ -4820,22 +5210,14 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"MK" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall/rdshull,
+/area/ship/ert/engine)
+"ML" = (
/obj/machinery/door/blast/regular/open{
id = "ERT_Shuttle_Rear";
name = "Boarding Hatch"
},
-/obj/machinery/button/remote/blast_door{
- id = "ERT_Shuttle_Rear";
- name = "ERT Shuttle Access";
- pixel_y = 24;
- req_access = list(103)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/ert_ship_boat)
-"ML" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
- },
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"MQ" = (
@@ -4883,11 +5265,10 @@
/turf/simulated/wall/rdshull,
/area/ship/ert/med_surg)
"Na" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
- },
/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_port)
"Nb" = (
@@ -4905,6 +5286,12 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"Nf" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
+"Ng" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
@@ -4916,23 +5303,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
-"Ng" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
- dir = 4
- },
-/obj/structure/window/plastitanium{
- dir = 8
- },
-/obj/machinery/door/blast/regular/open{
- dir = 2;
- id = "ERT_Blast_Windows";
- name = "Blast Shield"
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/ert_ship_boat)
"Nk" = (
/obj/machinery/power/pointdefense{
id_tag = "vonbraun_pd"
@@ -4941,13 +5311,13 @@
dir = 4
},
/turf/simulated/floor/reinforced/airless,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"Np" = (
/obj/machinery/light/no_nightshift{
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"Nz" = (
/obj/effect/floor_decal/industrial/warning{
dir = 1;
@@ -4961,36 +5331,21 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"NH" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 6
- },
/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
/obj/effect/catwalk_plated/dark,
/turf/simulated/floor/plating,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"NI" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/door/firedoor/border_only,
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/bridge)
+/obj/structure/table/rack,
+/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid,
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
"NJ" = (
/obj/machinery/optable,
/turf/simulated/floor/tiled/techfloor,
@@ -5005,7 +5360,7 @@
},
/obj/machinery/atmospherics/binary/pump/fuel/on,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"NR" = (
/obj/machinery/light/no_nightshift,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -5015,6 +5370,11 @@
dir = 4;
icon_state = "intact-scrubbers"
},
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"NU" = (
@@ -5083,12 +5443,12 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"Of" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 9
- },
/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"Og" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -5098,12 +5458,15 @@
/obj/effect/floor_decal/corner/yellow{
dir = 9
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"Oh" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -5117,15 +5480,12 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/obj/machinery/firealarm/alarms_hidden{
- dir = 1;
- pixel_y = -26
- },
-/obj/machinery/alarm/alarms_hidden{
- pixel_y = 26
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
},
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"Oi" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -5160,8 +5520,12 @@
/obj/machinery/light/no_nightshift{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"Ox" = (
/obj/structure/cable/green{
d1 = 2;
@@ -5361,10 +5725,17 @@
/turf/simulated/wall/rdshull,
/area/ship/ert/bridge)
"Pe" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 8
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "ERT_Shuttle_Rear";
+ name = "ERT Shuttle Access";
+ pixel_y = -25;
+ req_access = list(103)
+ },
+/obj/machinery/door/blast/regular/open{
+ id = "ERT_Shuttle_Rear";
+ name = "Boarding Hatch"
},
-/obj/machinery/light/no_nightshift,
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"Pl" = (
@@ -5380,11 +5751,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Pn" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/item/modular_computer/console/preset/engineering{
dir = 1
},
@@ -5466,12 +5832,14 @@
d2 = 4;
icon_state = "1-4"
},
-/turf/simulated/floor/tiled/techfloor,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
"Qc" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/machinery/power/apc/hyper{
alarms_hidden = 1;
dir = 8;
@@ -5488,12 +5856,14 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"Qh" = (
-/obj/item/device/perfect_tele_beacon/stationary{
- tele_name = "NRV Von Braun Hangar";
- tele_network = "centcom"
+/obj/machinery/light/no_nightshift{
+ dir = 1
},
-/turf/simulated/floor/reinforced,
-/area/ship/ert/hangar)
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
"Ql" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 6
@@ -5529,12 +5899,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"QE" = (
-/obj/machinery/door/blast/regular/open{
- id = "ERT_Shuttle_Rear";
- name = "Boarding Hatch"
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/ert_ship_boat)
+/turf/simulated/floor/reinforced,
+/area/ship/ert/hangar)
"QM" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -5549,12 +5918,18 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"QP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/shuttle/ert_ship_boat)
+"QR" = (
/obj/structure/bed/chair/bay/shuttle{
dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
-"QR" = (
+"QS" = (
/obj/structure/bed/chair/bay/shuttle{
dir = 4
},
@@ -5563,12 +5938,14 @@
id = "ERT_Blast_Windows";
name = "Emergency Blast Shields";
pixel_x = 55;
- pixel_y = 7;
req_one_access = list(101)
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
-"QS" = (
+"QT" = (
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med)
+"QX" = (
/obj/structure/window/plastitanium{
dir = 1
},
@@ -5578,42 +5955,21 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
-"QT" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/med)
-"QX" = (
-/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
- dir = 1
- },
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
- dir = 4
- },
-/obj/structure/window/plastitanium{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/ert_ship_boat)
+"QY" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/ert,
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
"QZ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engine)
+"Rc" = (
/obj/effect/floor_decal/industrial/warning{
dir = 4
},
/obj/effect/shuttle_landmark/shuttle_initializer/ert_ship_boat,
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
-"Rc" = (
-/obj/machinery/door/blast/regular{
- id = "ERT_Shuttle_Fore"
- },
-/obj/machinery/door/blast/regular/open{
- dir = 2;
- id = "ERT_Blast_Windows";
- name = "Blast Shield"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/ert_ship_boat)
"Rd" = (
/obj/machinery/light/no_nightshift{
dir = 1
@@ -5626,19 +5982,27 @@
/obj/machinery/door/firedoor/multi_tile,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
-"Rv" = (
-/obj/machinery/door/airlock/glass_medical{
- name = "Medical Bay";
- req_access = list(103)
- },
+"Rt" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
+"Rv" = (
/obj/machinery/door/firedoor/multi_tile{
dir = 1
},
+/obj/machinery/door/airlock/glass_medical{
+ name = "Medical Bay";
+ req_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
"Rw" = (
@@ -5665,26 +6029,28 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"RB" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"RC" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 8
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"RO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 9
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"RQ" = (
/obj/machinery/door/airlock/glass_engineering{
name = "Engineering";
@@ -5700,9 +6066,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"RS" = (
-/obj/machinery/door/airlock/glass_command{
- req_one_access = list(103)
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -5710,14 +6073,20 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Teleporter Chamber";
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
"RV" = (
-/obj/structure/sign/department/telecoms{
- name = "TELEPORTER"
+/obj/machinery/light_switch{
+ pixel_y = 23
},
-/turf/simulated/wall/rdshull,
-/area/ship/ert/teleporter)
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp,
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
"Sc" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -5728,6 +6097,10 @@
/obj/effect/floor_decal/corner/blue{
dir = 1
},
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Sl" = (
@@ -5741,6 +6114,11 @@
/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
/obj/effect/catwalk_plated,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/plating,
/area/ship/ert/med)
"Sr" = (
@@ -5798,15 +6176,37 @@
"Sz" = (
/turf/simulated/wall/rdshull,
/area/ship/ert/dock_star)
+"SA" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways_aft)
"SB" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
+"SD" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/deagle,
+/obj/item/ammo_magazine/m44,
+/obj/item/ammo_magazine/m44,
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
"SE" = (
/obj/machinery/light/no_nightshift{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"SF" = (
/obj/structure/cable/yellow{
d1 = 4;
@@ -5859,25 +6259,15 @@
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"Tl" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "ERT_Shuttle_Fore";
- name = "ERT Deployment Access";
- pixel_y = -25;
- req_access = list(103)
- },
/turf/simulated/floor/tiled/techmaint,
-/area/shuttle/ert_ship_boat)
+/area/ship/ert/hangar)
"Tx" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
dir = 4
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"TB" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -5894,6 +6284,21 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
+"TF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
"TG" = (
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
@@ -5903,7 +6308,7 @@
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"TI" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -5912,8 +6317,9 @@
/area/ship/ert/armoury_dl)
"TM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/engineering)
+/area/ship/ert/hallways_aft)
"TR" = (
/obj/structure/grille,
/obj/structure/window/plastitanium/full,
@@ -5929,26 +6335,24 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med)
"TZ" = (
-/turf/simulated/floor/tiled/techfloor,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
"Ul" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
/obj/machinery/firealarm/alarms_hidden{
dir = 1;
pixel_y = -26
},
+/obj/item/modular_computer/console/preset/medical{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Un" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
- },
/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_star)
"Ut" = (
@@ -5984,7 +6388,7 @@
dir = 9;
pixel_y = 0
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
"UT" = (
/obj/machinery/door/airlock/glass_security{
@@ -6001,6 +6405,18 @@
/obj/machinery/door/firedoor/border_only,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
+"UU" = (
+/obj/machinery/shieldwallgen{
+ anchored = 1;
+ name = "secured shield generator";
+ req_access = list(103);
+ state = 1
+ },
+/obj/structure/window/plastitanium,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/yellow,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
"UY" = (
/obj/structure/table/steel_reinforced,
/obj/machinery/chemical_dispenser/full,
@@ -6022,39 +6438,36 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 10
},
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"Vn" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 10
},
-/turf/simulated/floor/reinforced,
+/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"VB" = (
-/obj/machinery/firealarm/alarms_hidden{
- pixel_y = 26
- },
+/obj/machinery/ntnet_relay,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"VC" = (
/obj/machinery/power/port_gen/pacman/super/potato,
/obj/structure/cable/green,
/obj/machinery/light/no_nightshift,
+/obj/effect/decal/cleanable/greenglow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"VJ" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
/obj/machinery/door/airlock/glass_medical{
name = "Medical Bay";
req_access = list(103)
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/multi_tile{
- dir = 1
- },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"VO" = (
@@ -6098,12 +6511,25 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/hallways)
"Wa" = (
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access = list(103)
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
},
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hallways)
+/obj/structure/bed/pod,
+/obj/item/weapon/bedsheet/blue,
+/obj/structure/curtain/open/bed,
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
+"Wj" = (
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
"Wl" = (
/obj/structure/table/steel_reinforced,
/obj/item/stack/nanopaste,
@@ -6134,9 +6560,6 @@
/turf/space,
/area/space)
"WA" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/effect/floor_decal/corner/red{
dir = 1
},
@@ -6149,9 +6572,6 @@
/turf/simulated/floor/reinforced,
/area/ship/ert/hangar)
"WE" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 4
- },
/obj/effect/floor_decal/corner/red{
dir = 9
},
@@ -6169,23 +6589,17 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med)
"WG" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 1
+/obj/structure/window/plastitanium{
+ dir = 4
},
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -12
+/obj/structure/window/plastitanium{
+ dir = 4
},
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -4
+/obj/effect/floor_decal/techfloor/orange{
+ dir = 4
},
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = 5
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/ert_ship_boat)
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hangar)
"WH" = (
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
@@ -6206,21 +6620,21 @@
pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_star)
"WO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"WR" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/med)
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/wood,
+/area/ship/ert/commander)
"WS" = (
/obj/machinery/computer/ship/engines{
dir = 4
@@ -6252,14 +6666,17 @@
/area/ship/ert/barracks)
"Xg" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/bed/chair/bay/chair/padded/blue{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
+"Xh" = (
+/obj/structure/bed/chair/bay/chair/padded/blue,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways_aft)
"Xo" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
@@ -6267,17 +6684,24 @@
/area/ship/ert/med)
"Xu" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/decal/cleanable/blood/oil,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Xx" = (
-/obj/machinery/light/no_nightshift{
- dir = 8
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/ntnet_relay,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"XB" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"XG" = (
@@ -6289,12 +6713,13 @@
pixel_y = -26
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"XM" = (
/obj/effect/map_helper/airlock/sensor/chamber_sensor,
/obj/machinery/airlock_sensor{
pixel_x = 24
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
"XS" = (
@@ -6340,14 +6765,26 @@
d2 = 8;
icon_state = "0-8"
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
+"Ys" = (
+/obj/structure/window/plastitanium,
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/cable/yellow,
+/obj/machinery/shieldwallgen{
+ anchored = 1;
+ name = "secured shield generator";
+ req_access = list(103);
+ state = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"Yt" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -6375,7 +6812,7 @@
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"YR" = (
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/engineering)
@@ -6393,11 +6830,10 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/bridge)
"YW" = (
-/obj/structure/bed/chair/bay/shuttle,
-/obj/machinery/light/no_nightshift{
- dir = 4
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/reinforced,
/area/shuttle/ert_ship_boat)
"YZ" = (
/obj/effect/floor_decal/industrial/warning,
@@ -6473,7 +6909,7 @@
id_tag = "vonbraun_pd"
},
/turf/simulated/floor/reinforced/airless,
-/area/ship/ert/engineering)
+/area/ship/ert/engine)
"ZM" = (
/turf/simulated/wall/rdshull,
/area/ship/ert/bridge)
@@ -6495,12 +6931,12 @@
/turf/simulated/wall/rdshull,
/area/ship/ert/med)
"ZU" = (
-/obj/machinery/power/port_gen/pacman/mrs,
/obj/machinery/light/no_nightshift,
/obj/machinery/firealarm/alarms_hidden{
dir = 1;
pixel_y = -26
},
+/obj/machinery/power/port_gen/pacman/super,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"ZW" = (
@@ -9582,7 +10018,7 @@ yz
yz
yz
yz
-yz
+gc
yz
yz
yz
@@ -11444,7 +11880,7 @@ Do
yz
yz
yz
-XW
+Hf
yz
yz
yz
@@ -11576,27 +12012,27 @@ yz
yz
yz
yz
-YR
+lZ
ZL
kL
yz
yz
yz
-XW
+Hf
nX
DN
JW
-XW
+Hf
nX
DN
JW
-XW
+Hf
yz
yz
yz
kL
ZL
-YR
+lZ
yz
yz
yz
@@ -11718,27 +12154,27 @@ yz
yz
yz
yz
-YR
-XW
-XW
+lZ
+Hf
+Hf
nX
DN
JW
-XW
+Hf
uh
et
tL
-XW
+Hf
uh
et
tL
-XW
+Hf
nX
DN
JW
-XW
-XW
-YR
+Hf
+Hf
+lZ
yz
yz
yz
@@ -11861,25 +12297,25 @@ yz
yz
yz
Do
-XW
-XW
+Hf
+Hf
uh
et
tL
-XW
-nZ
+Hf
+GI
rA
-nZ
-Fp
-nZ
+GI
+MK
+GI
rA
-nZ
-XW
+GI
+Hf
uh
et
tL
-XW
-XW
+Hf
+Hf
Do
yz
yz
@@ -12003,26 +12439,26 @@ yz
yz
yz
aj
-XW
-XW
-nZ
+Hf
+Hf
+GI
rA
-up
-Fp
-OH
+GI
+MK
+QZ
Id
-JQ
+RB
Np
RB
Id
-OH
-Fp
+QZ
+MK
GI
rA
-nZ
-XW
-XW
-Rd
+GI
+Hf
+Hf
+Ia
yz
yz
yz
@@ -12144,9 +12580,9 @@ yz
yz
yz
yz
-YR
-XW
-XW
+lZ
+Hf
+Hf
ok
rD
ux
@@ -12162,9 +12598,9 @@ CZ
Of
RO
XH
-XW
-XW
-YR
+Hf
+Hf
+lZ
yz
yz
yz
@@ -12286,9 +12722,9 @@ yz
yz
yz
yz
-YR
-XW
-XW
+lZ
+Hf
+Hf
op
uK
uK
@@ -12298,15 +12734,15 @@ YP
YP
NP
RO
-OH
-OH
-OH
-OH
-OH
+QZ
+QZ
+QZ
+QZ
+SE
cY
-XW
-XW
-YR
+Hf
+Hf
+lZ
yz
yz
yz
@@ -12429,25 +12865,25 @@ yz
yz
yz
ZL
-XW
-XW
+Hf
+Hf
vd
rR
vd
vd
-OH
+gR
Ii
Kq
uS
SE
-OH
-OH
-OH
-OH
-SE
-OH
-XW
-XW
+QZ
+QZ
+QZ
+QZ
+Hf
+Hf
+Hf
+Hf
ZL
yz
yz
@@ -12724,9 +13160,9 @@ gA
kJ
wO
XW
-OH
+zh
WS
-OH
+lB
Ox
KS
JG
@@ -13011,7 +13447,7 @@ RQ
TB
OH
OH
-Nb
+qt
YN
XW
XW
@@ -13137,7 +13573,7 @@ yz
yz
yz
yz
-bO
+bW
kJ
kJ
kY
@@ -13159,7 +13595,7 @@ JG
VC
XW
XW
-YR
+BI
yz
yz
yz
@@ -13279,7 +13715,7 @@ yz
yz
yz
yz
-bW
+bO
kJ
kJ
ls
@@ -13301,7 +13737,7 @@ XW
XW
XW
XW
-Do
+YR
yz
yz
yz
@@ -13420,9 +13856,9 @@ yz
yz
yz
yz
-aj
-XW
-XW
+xx
+DS
+DS
kJ
kJ
kJ
@@ -13444,7 +13880,7 @@ XW
XW
XW
XW
-Rd
+cJ
yz
yz
yz
@@ -13562,17 +13998,17 @@ yz
yz
yz
yz
-YR
+Ib
TG
yl
tK
Oq
-oE
-sk
-sk
-sk
-sk
-sk
+ya
+ya
+ya
+ya
+SA
+FW
Kr
Og
Ed
@@ -13582,11 +14018,11 @@ TM
TM
TM
ya
-Oq
+kh
Gv
-yl
+nY
TG
-YR
+Ib
yz
yz
yz
@@ -13704,31 +14140,31 @@ yz
yz
yz
yz
-YR
+Ib
TG
-yl
-tK
-lu
-XW
-XW
-XW
-XW
-XW
-XW
-XW
+pA
+HR
+vv
+DS
+DS
+DS
+DS
+DS
+DS
+DS
Oh
-XW
-XW
-XW
-XW
-XW
-XW
-XW
-lu
-Gv
-yl
+DS
+DS
+DS
+DS
+DS
+DS
+DS
+Ai
+Xh
+yG
TG
-YR
+Ib
yz
yz
yz
@@ -13846,31 +14282,31 @@ yz
yz
yz
yz
-ZL
-XW
-XW
-XW
+sB
+DS
+DS
+DS
Bo
-XW
-sp
-sp
-sp
-sp
-sp
-sp
+DS
NI
+oa
+SD
+QY
+ds
+sp
+Oi
Mm
-Mm
-Mm
-Mm
-Mm
-Mm
-XW
+tb
+Wj
+UU
+iA
+jA
+DS
iB
-XW
-XW
-XW
-ZL
+DS
+DS
+DS
+sB
yz
yz
yz
@@ -13987,17 +14423,17 @@ yz
yz
yz
yz
-YR
-XW
-XW
-XW
-XW
+Ib
+DS
+DS
+DS
+DS
lu
-XW
-sp
-vu
-zD
-DV
+DS
+Qh
+Iv
+Iv
+Iv
Iv
sp
Oi
@@ -14005,15 +14441,15 @@ Mm
sw
Xx
eF
-TZ
-Mm
-XW
+Ms
+Kf
+DS
lu
-XW
-XW
-XW
-XW
-YR
+DS
+DS
+DS
+DS
+Ib
yz
yz
yz
@@ -14133,11 +14569,11 @@ HE
JB
JB
JB
-XW
+DS
lu
-XW
-sp
-vA
+DS
+RV
+Iv
zP
Eh
Ix
@@ -14148,10 +14584,10 @@ Ut
XB
vQ
Ms
-Mm
-XW
+jI
+DS
lu
-XW
+DS
Sz
Sz
Sz
@@ -14278,7 +14714,7 @@ JB
JB
Na
JB
-sp
+Wa
vL
zT
Ez
@@ -14290,7 +14726,7 @@ UJ
PX
TZ
Mv
-Mm
+wo
Sz
Un
Sz
@@ -14420,19 +14856,19 @@ dX
hx
lL
JB
-sp
-vS
+WR
+Iv
Ah
EA
IL
sp
Oi
-RV
+Mm
Vm
XX
lq
jA
-Mm
+jA
Sz
ck
uJ
@@ -14562,19 +14998,19 @@ JB
hH
lR
JB
-sp
-wb
+no
+Iv
An
EC
IZ
sp
Oi
-Mm
+wn
VB
Yq
-eF
-TZ
-Mm
+Ys
+iA
+jA
Sz
uu
na
@@ -14710,7 +15146,7 @@ ZM
ZM
ZM
ZM
-NY
+JX
ZM
ZM
ZM
@@ -15132,15 +15568,15 @@ mb
mb
Zo
ZM
-Ao
+us
ED
Ao
wr
lm
Sj
-Ao
+zg
ED
-Ao
+us
ZM
mJ
Ar
@@ -15991,7 +16427,7 @@ La
sA
La
Jb
-ZP
+Rt
Af
ZM
yC
@@ -16414,12 +16850,12 @@ Bc
BW
Js
BW
-vv
+BW
BW
VP
sX
Jf
-Wa
+wL
Br
Br
Br
@@ -17559,7 +17995,7 @@ pW
ZT
SV
DJ
-WR
+QT
jn
Pq
sf
@@ -17701,7 +18137,7 @@ JZ
ZT
Wl
DJ
-WR
+QT
Pq
Pq
yJ
@@ -17843,7 +18279,7 @@ Fq
ZT
DM
DJ
-WR
+QT
xz
HC
ZT
@@ -18257,13 +18693,13 @@ pv
ta
xM
CM
-WC
-WC
-WC
-Qh
-WC
-WC
-WC
+Tl
+Tl
+Tl
+Tl
+Tl
+Tl
+Tl
Vn
kG
rV
@@ -18397,16 +18833,16 @@ jD
JM
ip
tx
-xO
-WC
-WC
-WC
-WC
-WC
-WC
-WC
-WC
-WC
+JE
+Nf
+WG
+WG
+Nf
+Nf
+Nf
+WG
+WG
+Nf
yi
dA
QT
@@ -18542,11 +18978,11 @@ tE
yf
WC
WC
-Hf
WC
WC
WC
-Hf
+WC
+WC
WC
WC
Ee
@@ -18683,16 +19119,16 @@ pK
bM
yj
WC
-Hf
-HO
-MK
-QE
-pA
-HO
-Hf
+WC
+YW
+WC
+WC
+WC
+YW
+WC
WC
dk
-MZ
+uq
ga
po
Rv
@@ -18825,19 +19261,19 @@ pM
bM
yj
WC
-HO
+YW
HO
kt
ML
Pe
HO
-HO
+YW
WC
dk
MZ
gf
-zi
-gc
+TF
+SB
hv
MZ
MZ
@@ -18967,19 +19403,19 @@ pY
tX
yv
WC
-Hq
-JE
-MT
+HO
+HO
+tW
QP
-MT
-WG
-og
+tV
+HO
+HO
WC
Nz
nl
pU
-zi
-gc
+TF
+SB
wp
MZ
MZ
@@ -19110,11 +19546,11 @@ tX
yx
WC
Hu
-JN
+mH
MT
QR
MT
-WJ
+HH
dT
WC
Nz
@@ -19253,9 +19689,9 @@ xO
WC
Hq
JN
-MU
+MT
QS
-SZ
+MT
WJ
og
WC
@@ -19264,7 +19700,7 @@ nl
mh
LZ
LJ
-mh
+hS
MZ
MZ
Cr
@@ -19528,7 +19964,7 @@ yz
ah
bM
bM
-bM
+qy
ki
nz
qy
@@ -19536,11 +19972,11 @@ bM
YZ
WC
Hq
-YW
-MT
-MT
-MT
-lZ
+JN
+MU
+Eq
+SZ
+WJ
og
WC
Zx
@@ -19677,13 +20113,13 @@ qz
bM
Ok
WC
-HO
-HO
-Nf
-QZ
-Tl
-HO
-HO
+Hu
+GZ
+MT
+MT
+MT
+EG
+dT
WC
Zx
nl
@@ -19819,13 +20255,13 @@ qD
bM
xO
WC
-HR
+HO
HO
Ng
Rc
-Ng
+Du
+HO
HO
-HR
WC
Zx
nl
@@ -19961,13 +20397,13 @@ qE
bM
xO
WC
-WC
+ax
HO
-WC
-WC
-WC
+yg
+HK
+yg
HO
-WC
+ax
WC
Zx
nl
@@ -20246,11 +20682,11 @@ bM
xO
WC
WC
+HO
WC
WC
WC
-WC
-WC
+HO
WC
WC
Zx
@@ -20528,15 +20964,15 @@ jQ
rp
bM
yD
-WC
-WC
-WC
-WC
-WC
-WC
-WC
-WC
-WC
+QE
+QE
+QE
+QE
+QE
+QE
+QE
+QE
+QE
Ff
MZ
vb
diff --git a/vorestation.dme b/vorestation.dme
index e0ba6b01fe..19352cb1a2 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -520,6 +520,7 @@
#include "code\game\antagonist\outsider\commando.dm"
#include "code\game\antagonist\outsider\deathsquad.dm"
#include "code\game\antagonist\outsider\ert.dm"
+#include "code\game\antagonist\outsider\ert_vr.dm"
#include "code\game\antagonist\outsider\mercenary.dm"
#include "code\game\antagonist\outsider\ninja.dm"
#include "code\game\antagonist\outsider\raider.dm"
From eb8ecaddb225152e0090a8924d832f79d2a871d4 Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Tue, 8 Sep 2020 06:34:44 +0100
Subject: [PATCH 07/13] hull/glass replacement, further polish, other misc
tweaks
also adds plastitanium hull components for later use
---
code/__defines/misc_vr.dm | 1 +
.../crates_lockers/closets/wardrobe_vr.dm | 4 +-
code/game/turfs/simulated/wall_types_vr.dm | 16 +-
code/modules/materials/material_sheets_vr.dm | 16 +-
code/modules/materials/materials_vr.dm | 11 +
icons/turf/wall_masks_vr.dmi | Bin 340 -> 409 bytes
maps/submaps/admin_use_vr/ert.dmm | 509 ++++++++++--------
7 files changed, 314 insertions(+), 243 deletions(-)
diff --git a/code/__defines/misc_vr.dm b/code/__defines/misc_vr.dm
index 57c651c195..46d8a347e8 100644
--- a/code/__defines/misc_vr.dm
+++ b/code/__defines/misc_vr.dm
@@ -63,4 +63,5 @@
#define MAT_TITANIUMGLASS "ti-glass"
#define MAT_PLASTITANIUM "plastitanium"
+#define MAT_PLASTITANIUMHULL "plastitanium hull"
#define MAT_PLASTITANIUMGLASS "plastitanium glass"
\ No newline at end of file
diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm
index aab815a73f..ffeeae996a 100644
--- a/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm
+++ b/code/game/objects/structures/crates_lockers/closets/wardrobe_vr.dm
@@ -1,6 +1,6 @@
//ert wardrobe override, because these guys really don't need edgy red lockers with CCO dress uniforms, syndi(!!) turtlenecks, two edgy skull bandanas, or facemasks with no sprite. -Killian
/obj/structure/closet/wardrobe/ert
- closet_appearance = /decl/closet_appearance/tactical //because ert lockers are red for some dumb reason
+ closet_appearance = /decl/closet_appearance/tactical/alt //because ert lockers are red for some dumb reason
starts_with = list(
/obj/item/clothing/under/ert,
/obj/item/device/radio/headset/ert/alt,
@@ -13,7 +13,7 @@
//would you believe mercs have no official locker? well, now they do. basically just a rebranded ERT locker but hey, it's an option. -Killian
/obj/structure/closet/wardrobe/merc
name = "mercenary equipment"
- closet_appearance = /decl/closet_appearance/ert //because ert lockers are red for some dumb reason
+ closet_appearance = /decl/closet_appearance/tactical
starts_with = list(
/obj/item/clothing/under/tactical,
diff --git a/code/game/turfs/simulated/wall_types_vr.dm b/code/game/turfs/simulated/wall_types_vr.dm
index 87a6582f1f..21bea538dc 100644
--- a/code/game/turfs/simulated/wall_types_vr.dm
+++ b/code/game/turfs/simulated/wall_types_vr.dm
@@ -78,8 +78,20 @@ var/list/flesh_overlay_cache = list()
/turf/simulated/wall/rplastitanium/Initialize(mapload)
. = ..(mapload, MAT_PLASTITANIUM,MAT_PLASTITANIUM,MAT_PLASTITANIUM)
- /turf/simulated/wall/plastitanium
+/turf/simulated/wall/plastitanium
icon_state = "wall-plastitanium"
icon = 'icons/turf/wall_masks_vr.dmi'
/turf/simulated/wall/plastitanium/Initialize(mapload)
- . = ..(mapload, MAT_PLASTITANIUM, null,MAT_PLASTITANIUM)
\ No newline at end of file
+ . = ..(mapload, MAT_PLASTITANIUM, null,MAT_PLASTITANIUM)
+
+/turf/simulated/wall/rplastihull
+ icon_state = "rhull-plastitanium"
+ icon = 'icons/turf/wall_masks_vr.dmi'
+/turf/simulated/wall/rplastihull/Initialize(mapload)
+ . = ..(mapload, MAT_PLASTITANIUMHULL,MAT_PLASTITANIUMHULL,MAT_PLASTITANIUMHULL)
+
+/turf/simulated/wall/plastihull
+ icon_state = "hull-plastitanium"
+ icon = 'icons/turf/wall_masks_vr.dmi'
+/turf/simulated/wall/plastihull/Initialize(mapload)
+ . = ..(mapload, MAT_PLASTITANIUMHULL, null,MAT_PLASTITANIUMHULL)
\ No newline at end of file
diff --git a/code/modules/materials/material_sheets_vr.dm b/code/modules/materials/material_sheets_vr.dm
index fa8676d92d..e198d6d3c0 100644
--- a/code/modules/materials/material_sheets_vr.dm
+++ b/code/modules/materials/material_sheets_vr.dm
@@ -21,7 +21,7 @@
type_to_spawn = /obj/item/stack/material/glass/titanium
/obj/item/stack/material/plastitanium
- name = "plas-tanium sheets"
+ name = "plastitanium sheets"
icon = 'icons/obj/stacks_vr.dmi'
icon_state = "sheet-plastitanium"
item_state = "sheet-silver"
@@ -32,8 +32,20 @@
name = "stack of plastitanium"
type_to_spawn = /obj/item/stack/material/plastitanium
+/obj/item/stack/material/plastitanium/hull
+ name = "plastitanium hull sheets"
+ icon = 'icons/obj/stacks_vr.dmi'
+ icon_state = "sheet-plastitanium"
+ item_state = "sheet-silver"
+ no_variants = FALSE
+ default_type = MAT_PLASTITANIUMHULL
+
+/obj/fiftyspawner/plastitanium_hull
+ name = "stack of plastitanium"
+ type_to_spawn = /obj/item/stack/material/plastitanium/hull
+
/obj/item/stack/material/glass/plastitanium
- name = "plas-tanium glass sheets"
+ name = "plastitanium glass sheets"
icon = 'icons/obj/stacks_vr.dmi'
icon_state = "sheet-plastitaniumglass"
item_state = "sheet-silver"
diff --git a/code/modules/materials/materials_vr.dm b/code/modules/materials/materials_vr.dm
index c341a15496..6fd104fb3f 100644
--- a/code/modules/materials/materials_vr.dm
+++ b/code/modules/materials/materials_vr.dm
@@ -65,6 +65,17 @@
composite_material = list(MAT_TITANIUM = SHEET_MATERIAL_AMOUNT, MAT_PLASTEEL = SHEET_MATERIAL_AMOUNT)
supply_conversion_value = 8
+/material/plastitanium/hull
+ name = MAT_PLASTITANIUMHULL
+ stack_type = /obj/item/stack/material/plastitanium/hull
+ icon_base = "hull"
+ icon_reinf = "reinf_mesh"
+ icon_colour = "#585658"
+ explosion_resistance = 50
+
+/material/plastitanium/hull/place_sheet(var/turf/target) //Deconstructed into normal plasteel sheets.
+ new /obj/item/stack/material/plastitanium(target)
+
/material/glass/plastaniumglass
name = MAT_PLASTITANIUMGLASS
display_name = "plas-titanium glass"
diff --git a/icons/turf/wall_masks_vr.dmi b/icons/turf/wall_masks_vr.dmi
index 1e767e699445e165c484e55128b9de2a4a37d03f..dc4e2300f0220624e694d84627a7b3f1b97d5aa1 100644
GIT binary patch
delta 264
zcmV+j0r&pY0+|Dl7YaZE0{{R3*9VzRks%uaf{{IMe~_*tqm)z~MMP^+R&e!m0ec+)
zj1x|?4l6Rx0002GNkl`qj*_u5^8KNpcqP>A%;+Akj)@B$PC&x_V1%zc3W>Jn0?s>gz04f
O0000%kK^G+QwXt}*2pV+3
xe^e1gDa0zG2&@7{U={cl(*0e!Q+CI0a|5T~LXegk4~PH&002ovPDHLkV1lYeP&xnr
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index cee7f243d8..84e382276d 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -52,7 +52,7 @@
dir = 6;
icon_state = "intact"
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/dock_port)
"al" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -125,8 +125,8 @@
dir = 1;
pixel_y = -26
},
-/obj/fiftyspawner/uranium,
-/obj/fiftyspawner/uranium,
+/obj/fiftyspawner/tritium,
+/obj/fiftyspawner/tritium,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"aI" = (
@@ -170,6 +170,16 @@
/turf/space,
/turf/space,
/area/space)
+"bj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/med_surg)
"bp" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/floor/tiled/techfloor,
@@ -184,6 +194,22 @@
/obj/item/weapon/tank/jetpack/oxygen,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"bt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
"bI" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/tank/jetpack/oxygen,
@@ -208,7 +234,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
"bM" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/mech_bay)
"bO" = (
/turf/simulated/floor/reinforced/airless,
@@ -297,7 +323,7 @@
/area/ship/ert/engine)
"dd" = (
/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/dock_port)
"dg" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -415,16 +441,16 @@
"dT" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
- dir = 1
- },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
/obj/machinery/door/blast/regular/open{
dir = 8;
id = "ERT_Blast_Windows";
name = "Blast Shield"
},
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"dV" = (
@@ -513,17 +539,14 @@
"et" = (
/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel,
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
- dir = 8
- },
-/obj/structure/window/plastitanium{
- dir = 4
- },
+/obj/structure/window/reinforced/full,
/obj/machinery/door/blast/regular/open{
id = "VB_Rear_Blast";
name = "Blast Shield"
},
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/ship/ert/engine)
"eD" = (
@@ -538,7 +561,7 @@
/obj/structure/sign/department/cargo{
name = "ENGINEERING SUPPLIES"
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/bridge)
"eI" = (
/obj/structure/cable/yellow{
@@ -647,7 +670,7 @@
/area/ship/ert/mech_bay)
"ga" = (
/obj/structure/sign/department/operational,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/med_surg)
"gc" = (
/turf/simulated/floor/tiled/techmaint,
@@ -921,6 +944,18 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
+"hW" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/hangar)
"hY" = (
/obj/machinery/porta_turret/industrial/military,
/turf/simulated/floor/reinforced/airless,
@@ -935,6 +970,18 @@
/obj/item/clothing/accessory/holster/leg,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"ib" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/machinery/power/pointdefense{
+ id_tag = "vonbraun_pd"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/hangar)
"ij" = (
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
@@ -958,9 +1005,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"iA" = (
-/obj/structure/window/plastitanium{
- dir = 1
- },
+/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"iB" = (
@@ -1137,10 +1182,10 @@
/area/shuttle/ert_ship_boat)
"kx" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
@@ -1172,7 +1217,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"kJ" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/atmos)
"kL" = (
/obj/machinery/light/no_nightshift{
@@ -1216,7 +1261,7 @@
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 1
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/dock_star)
"kY" = (
/obj/machinery/atmospherics/pipe/simple/visible{
@@ -1575,8 +1620,12 @@
/area/ship/ert/barracks)
"nl" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"nn" = (
@@ -1749,16 +1798,16 @@
"og" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
- dir = 1
- },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
/obj/machinery/door/blast/regular/open{
dir = 8;
id = "ERT_Blast_Windows";
name = "Blast Shield"
},
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"ok" = (
@@ -2049,7 +2098,7 @@
/obj/structure/sign/department/eng{
name = "RIG AND MECH BAY"
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/mech_bay)
"pM" = (
/obj/structure/table/steel_reinforced,
@@ -2160,7 +2209,7 @@
desc = "ACCESS VIA DIRECT AUTHORIZATION FROM CENTRAL ONLY.";
name = "MECH BAY"
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/mech_bay)
"qz" = (
/obj/mecha/working/ripley/firefighter,
@@ -2286,9 +2335,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"rA" = (
-/obj/structure/window/plastitanium{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
dir = 8;
icon_state = "intact-fuel"
@@ -2296,6 +2342,9 @@
/obj/effect/floor_decal/industrial/warning{
dir = 8
},
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engine)
"rD" = (
@@ -2373,7 +2422,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sp" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/commander)
"sq" = (
/obj/structure/cable/yellow{
@@ -2475,9 +2524,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
-"sP" = (
-/turf/simulated/wall/rdshull,
-/area/ship/ert/hangar)
"sS" = (
/obj/machinery/shieldwallgen,
/obj/machinery/light/no_nightshift{
@@ -2571,10 +2617,10 @@
/obj/structure/sign/department/dock{
name = "ROBINEAU DOCK"
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/hangar)
"tH" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/armoury_st)
"tK" = (
/obj/structure/bed/chair/bay/chair/padded/blue{
@@ -2588,17 +2634,14 @@
dir = 9
},
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
- dir = 8
- },
-/obj/structure/window/plastitanium{
- dir = 4
- },
+/obj/structure/window/reinforced/full,
/obj/machinery/door/blast/regular/open{
id = "VB_Rear_Blast";
name = "Blast Shield"
},
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/ship/ert/engine)
"tV" = (
@@ -2624,8 +2667,12 @@
/area/shuttle/ert_ship_boat)
"tX" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"tZ" = (
@@ -2649,17 +2696,14 @@
dir = 10
},
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
- dir = 8
- },
-/obj/structure/window/plastitanium{
- dir = 4
- },
+/obj/structure/window/reinforced/full,
/obj/machinery/door/blast/regular/open{
id = "VB_Rear_Blast";
name = "Blast Shield"
},
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/turf/simulated/floor/plating,
/area/ship/ert/engine)
"um" = (
@@ -2687,7 +2731,7 @@
/area/ship/ert/med)
"uq" = (
/obj/structure/sign/department/medbay,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/med_surg)
"us" = (
/turf/simulated/floor/tiled/techfloor,
@@ -2826,15 +2870,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med_surg)
-"vL" = (
-/obj/machinery/light_switch{
- pixel_y = 23
- },
-/obj/machinery/light_switch{
- pixel_y = 23
- },
-/turf/simulated/floor/wood,
-/area/ship/ert/commander)
"vQ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
@@ -2846,7 +2881,7 @@
/obj/structure/sign/department/conference_room{
name = "OUTFITTING"
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/bridge)
"wi" = (
/obj/machinery/door/airlock/glass{
@@ -2882,7 +2917,7 @@
/obj/structure/sign/department/telecoms{
name = "TELEPORTER"
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/teleporter)
"wo" = (
/obj/machinery/light/no_nightshift,
@@ -2937,7 +2972,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"wU" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/hallways)
"wX" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -2947,8 +2982,26 @@
/area/ship/ert/med)
"wZ" = (
/obj/machinery/oxygen_pump/anesthetic,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/med_surg)
+"xe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4;
+ icon_state = "intact-scrubbers"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
"xg" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/box/anti_photons,
@@ -3116,18 +3169,18 @@
"yg" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
- dir = 4
- },
-/obj/structure/window/plastitanium{
- dir = 8
- },
+/obj/structure/window/reinforced/full,
/obj/machinery/door/blast/regular/open{
dir = 2;
id = "ERT_Blast_Windows";
name = "Blast Shield"
},
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"yi" = (
@@ -3219,18 +3272,13 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"yD" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 6
- },
/obj/machinery/light/no_nightshift{
dir = 1
},
-/obj/structure/railing/grey{
- dir = 4
- },
/obj/structure/sign/vacuum{
pixel_y = 32
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"yG" = (
@@ -3242,7 +3290,7 @@
/area/ship/ert/hallways_aft)
"yI" = (
/obj/structure/sign/department/medbay,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/med)
"yJ" = (
/obj/structure/table/steel_reinforced,
@@ -3273,20 +3321,14 @@
/turf/simulated/floor/plating,
/area/ship/ert/engineering)
"yX" = (
-/obj/machinery/door/firedoor/border_only,
-/obj/structure/fans/hardlight,
-/obj/machinery/door/blast/regular/open{
- id = "Von_Braun_Hangar";
- name = "Hangar Blast Door"
- },
-/turf/simulated/floor/reinforced,
+/turf/simulated/wall/rshull,
/area/ship/ert/hangar)
"yY" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
@@ -3326,16 +3368,6 @@
/obj/structure/table/steel_reinforced,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
-"zi" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/med_surg)
"zk" = (
/obj/machinery/light/no_nightshift{
dir = 8
@@ -3721,10 +3753,25 @@
/obj/machinery/porta_turret/industrial/military,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med_surg)
+"CH" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/fans/hardlight,
+/obj/machinery/door/blast/regular{
+ id = "Von_Braun_Hangar";
+ name = "Hangar Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/ert/hangar)
"CI" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"CL" = (
@@ -3770,7 +3817,7 @@
/area/ship/ert/engine)
"Dd" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/blast/regular{
closed_layer = 4;
dir = 4;
@@ -3782,18 +3829,18 @@
/area/ship/ert/barracks)
"Dh" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/plastitanium{
- dir = 8
- },
-/obj/structure/window/plastitanium{
- dir = 4
- },
/obj/machinery/door/blast/regular/open{
id = "VB_Rear_Blast";
name = "Blast Shield"
},
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Di" = (
@@ -3897,7 +3944,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"DS" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/hallways_aft)
"Ec" = (
/obj/structure/table/rack/steel,
@@ -3961,15 +4008,15 @@
/area/ship/ert/eng_storage)
"Eq" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium{
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/structure/window/plastitanium{
+/obj/structure/window/reinforced{
dir = 8
},
/turf/simulated/floor/tiled/techmaint,
@@ -4056,16 +4103,14 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med)
"Ff" = (
-/obj/effect/floor_decal/industrial/warning{
- dir = 5
- },
/obj/machinery/light/no_nightshift,
-/obj/structure/railing/grey{
- dir = 4
- },
/obj/structure/sign/vacuum{
pixel_y = -32
},
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1;
+ icon_state = "warning"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"Fg" = (
@@ -4076,7 +4121,7 @@
/area/ship/ert/bridge)
"Fp" = (
/obj/structure/sign/nosmoking_1,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/engineering)
"Fq" = (
/obj/structure/table/rack/steel,
@@ -4240,10 +4285,10 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"GI" = (
-/obj/structure/window/plastitanium{
+/obj/effect/floor_decal/industrial/warning{
dir = 8
},
-/obj/effect/floor_decal/industrial/warning{
+/obj/structure/window/reinforced{
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
@@ -4316,7 +4361,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"Hf" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/engine)
"Hp" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -4326,31 +4371,31 @@
"Hq" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
- dir = 1
- },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
/obj/machinery/door/blast/regular/open{
dir = 4;
id = "ERT_Blast_Windows";
name = "Blast Shield"
},
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"Hu" = (
/obj/machinery/door/firedoor,
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
- dir = 1
- },
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced,
/obj/machinery/door/blast/regular/open{
dir = 4;
id = "ERT_Blast_Windows";
name = "Blast Shield"
},
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"HB" = (
@@ -4430,7 +4475,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"HO" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/shuttle/ert_ship_boat)
"HR" = (
/obj/structure/bed/chair/bay/chair/padded/blue{
@@ -4643,7 +4688,7 @@
/area/ship/ert/med_surg)
"Jk" = (
/obj/structure/sign/department/bridge,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/bridge)
"Jl" = (
/obj/effect/floor_decal/corner/blue{
@@ -4701,7 +4746,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
"JB" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/dock_port)
"JE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -4875,14 +4920,14 @@
/area/ship/ert/dock_star)
"Kw" = (
/obj/structure/sign/department/eng,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/bridge)
"KB" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
@@ -5157,7 +5202,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Mm" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/teleporter)
"Ms" = (
/turf/simulated/floor/tiled/techmaint,
@@ -5211,7 +5256,7 @@
/area/ship/ert/hangar)
"MK" = (
/obj/structure/sign/nosmoking_1,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/engine)
"ML" = (
/obj/machinery/door/blast/regular/open{
@@ -5242,7 +5287,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"MU" = (
-/obj/structure/window/plastitanium,
+/obj/structure/window/reinforced,
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"MX" = (
@@ -5262,7 +5307,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"MZ" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/med_surg)
"Na" = (
/obj/machinery/door/firedoor/border_only,
@@ -5722,7 +5767,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/bridge)
"Pe" = (
/obj/machinery/button/remote/blast_door{
@@ -5740,7 +5785,7 @@
/area/shuttle/ert_ship_boat)
"Pl" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/blast/regular{
closed_layer = 4;
dir = 4;
@@ -5771,7 +5816,7 @@
/obj/structure/sign/department/medbay{
name = "MEDICAL OUTFITTING & SUPPLIES"
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/med)
"PE" = (
/obj/structure/cable/yellow{
@@ -5946,13 +5991,13 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"QX" = (
-/obj/structure/window/plastitanium{
- dir = 1
- },
-/obj/structure/window/plastitanium,
+/obj/structure/window/reinforced,
/obj/machinery/computer/shuttle_control/explore/ert_ship_boat{
dir = 8
},
+/obj/structure/window/reinforced{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"QY" = (
@@ -6174,7 +6219,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Sz" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/dock_star)
"SA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -6239,7 +6284,7 @@
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 5
},
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/dock_star)
"SV" = (
/obj/structure/table/rack/steel,
@@ -6253,7 +6298,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"SZ" = (
-/obj/structure/window/plastitanium{
+/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/floor/tiled/techmaint,
@@ -6301,10 +6346,10 @@
/area/ship/ert/med_surg)
"TG" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
/obj/machinery/door/firedoor/border_only,
-/obj/structure/window/plastitanium,
-/obj/structure/window/plastitanium{
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
dir = 1
},
/turf/simulated/floor/tiled/techfloor,
@@ -6322,13 +6367,19 @@
/area/ship/ert/hallways_aft)
"TR" = (
/obj/structure/grille,
-/obj/structure/window/plastitanium/full,
+/obj/structure/window/reinforced/full,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
/obj/machinery/door/blast/regular{
closed_layer = 4;
id = "NRV_DELTA";
layer = 4
},
-/obj/machinery/door/firedoor/border_only,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"TU" = (
@@ -6394,15 +6445,17 @@
/obj/machinery/door/airlock/glass_security{
req_one_access = list(103)
},
-/obj/machinery/door/blast/regular{
- id = "NRV_DELTA"
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"UU" = (
@@ -6412,7 +6465,7 @@
req_access = list(103);
state = 1
},
-/obj/structure/window/plastitanium,
+/obj/structure/window/reinforced,
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/yellow,
/turf/simulated/floor/tiled/techfloor,
@@ -6549,10 +6602,12 @@
/obj/machinery/door/airlock/glass_security{
req_one_access = list(103)
},
-/obj/machinery/door/blast/regular{
- id = "NRV_DELTA"
- },
/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ id = "NRV_DELTA";
+ layer = 4
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"Wv" = (
@@ -6588,18 +6643,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med)
-"WG" = (
-/obj/structure/window/plastitanium{
- dir = 4
- },
-/obj/structure/window/plastitanium{
- dir = 4
- },
-/obj/effect/floor_decal/techfloor/orange{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hangar)
"WH" = (
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
@@ -6705,7 +6748,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"XG" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/eng_storage)
"XH" = (
/obj/machinery/alarm/alarms_hidden{
@@ -6737,7 +6780,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"XW" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/engineering)
"XX" = (
/obj/structure/cable/yellow{
@@ -6749,7 +6792,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"Yd" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/armoury_dl)
"Ye" = (
/turf/simulated/floor/reinforced/airless,
@@ -6772,8 +6815,15 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
+"Yr" = (
+/obj/structure/window/reinforced,
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/teleporter)
"Ys" = (
-/obj/structure/window/plastitanium,
+/obj/structure/window/reinforced,
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/yellow,
/obj/machinery/shieldwallgen{
@@ -6805,7 +6855,7 @@
/area/ship/ert/bridge)
"YN" = (
/obj/structure/sign/warning/radioactive,
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/engineering)
"YP" = (
/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
@@ -6835,21 +6885,6 @@
},
/turf/simulated/floor/reinforced,
/area/shuttle/ert_ship_boat)
-"YZ" = (
-/obj/effect/floor_decal/industrial/warning,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/button/remote/blast_door{
- dir = 1;
- id = "Von_Braun_Hangar";
- name = "Hangar Blast Shields";
- pixel_y = 24;
- req_one_access = list(101)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hangar)
"Zi" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -6861,7 +6896,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/eng_storage)
"Zo" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/barracks)
"Zv" = (
/turf/simulated/floor/tiled/techfloor,
@@ -6911,7 +6946,7 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/engine)
"ZM" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/bridge)
"ZP" = (
/obj/structure/cable/yellow{
@@ -6928,7 +6963,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"ZT" = (
-/turf/simulated/wall/rdshull,
+/turf/simulated/wall/rshull,
/area/ship/ert/med)
"ZU" = (
/obj/machinery/light/no_nightshift,
@@ -6936,7 +6971,7 @@
dir = 1;
pixel_y = -26
},
-/obj/machinery/power/port_gen/pacman/super,
+/obj/machinery/power/port_gen/pacman/mrs,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"ZW" = (
@@ -14436,7 +14471,7 @@ Iv
Iv
Iv
sp
-Oi
+bt
Mm
sw
Xx
@@ -14715,7 +14750,7 @@ JB
Na
JB
Wa
-vL
+Iv
zT
Ez
IK
@@ -14862,7 +14897,7 @@ Ah
EA
IL
sp
-Oi
+xe
Mm
Vm
XX
@@ -15009,7 +15044,7 @@ wn
VB
Yq
Ys
-iA
+Yr
jA
Sz
uu
@@ -18548,7 +18583,7 @@ fj
ip
mV
pt
-sP
+yX
xG
CL
GR
@@ -18560,7 +18595,7 @@ WE
hV
WA
EB
-sP
+yX
qA
oQ
dx
@@ -18835,13 +18870,13 @@ ip
tx
JE
Nf
-WG
-WG
Nf
Nf
Nf
-WG
-WG
+Nf
+Nf
+Nf
+Nf
Nf
yi
dA
@@ -19840,7 +19875,7 @@ WC
Zx
nl
pb
-zi
+bj
SB
MC
MZ
@@ -19969,7 +20004,7 @@ ki
nz
qy
bM
-YZ
+xO
WC
Hq
JN
@@ -20124,7 +20159,7 @@ WC
Zx
nl
aQ
-zi
+bj
SB
aQ
MZ
@@ -20266,7 +20301,7 @@ WC
Zx
nl
cO
-zi
+bj
SB
Mb
MZ
@@ -20408,7 +20443,7 @@ WC
Zx
nl
NJ
-zi
+bj
SB
NJ
MZ
@@ -21106,15 +21141,15 @@ nR
rr
bM
yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
-yX
+CH
+CH
+CH
+CH
+CH
+CH
+CH
+CH
+CH
yX
MZ
MZ
@@ -21247,6 +21282,7 @@ bM
bM
bM
bM
+ib
za
za
za
@@ -21256,8 +21292,7 @@ za
za
za
za
-za
-za
+hW
MZ
MZ
MZ
From 88ff5a9e2a2b421901e9db2a403dbdf56a4085d6 Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Tue, 8 Sep 2020 06:40:09 +0100
Subject: [PATCH 08/13] Update ert.dmm
---
maps/submaps/admin_use_vr/ert.dmm | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 84e382276d..648109ae36 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -672,9 +672,6 @@
/obj/structure/sign/department/operational,
/turf/simulated/wall/rshull,
/area/ship/ert/med_surg)
-"gc" = (
-/turf/simulated/floor/tiled/techmaint,
-/area/space)
"gf" = (
/obj/machinery/bodyscanner{
dir = 8
@@ -10053,7 +10050,7 @@ yz
yz
yz
yz
-gc
+yz
yz
yz
yz
From c98a6f8c58d2355b10d777bb84758553be4dd4d7 Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Tue, 8 Sep 2020 08:14:56 +0100
Subject: [PATCH 09/13] assorted polish & tweaks
decals galore, shield config document, etc.
---
maps/submaps/admin_use_vr/ert.dm | 14 ++
maps/submaps/admin_use_vr/ert.dmm | 393 ++++++++++++++++++++++--------
2 files changed, 308 insertions(+), 99 deletions(-)
diff --git a/maps/submaps/admin_use_vr/ert.dm b/maps/submaps/admin_use_vr/ert.dm
index fed9581426..2a98ac49c5 100644
--- a/maps/submaps/admin_use_vr/ert.dm
+++ b/maps/submaps/admin_use_vr/ert.dm
@@ -187,4 +187,18 @@ Some fancy new micro-RTG cells or something, I think?
\
\
Point is they're fairly expensive and probably prototypes or something, so for the love of God and your own career don't lose any of them and put them back when you return from a sortie.
\
\
+Lt. Cmdr. Sykes"}
+
+/obj/item/weapon/paper/vonbraun_shields
+ name = "NRV Von Braun Shield Configuration Documentation"
+ info = {"To All Current ERT Members,
\
+Be advised that use of the NRV Von Braun's shield generator (located adjacent to this document) is strongly recommended when responding to calls, but also that it is not impervious, nor is the ship's point defense system flawless. Recommended settings as follows:
\
+Photonic: Off (PD will not work with it enabled!)
\
+EM: On
\
+Humanoids: Off
\
+Atmospheric: Off
\
+Hull Shield: On
\
+Radius: 26
\
+The shield generator will tax the Von Braun's reserves greatly so try to use it sparingly. Do not be afraid to use it however, as the Von Braun represents the Company making a significant investment in this sector's future. I can bail you out if the occasional intern goes missing or you break something minor, but if you go flying this thing through an asteroid belt and get massive holes blown in it Central will make everyone involved disappear permanently.
\
+
\
Lt. Cmdr. Sykes"}
\ No newline at end of file
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 648109ae36..722514fb8f 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -62,6 +62,9 @@
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
"am" = (
@@ -85,20 +88,23 @@
/obj/machinery/light/no_nightshift{
dir = 1
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"ao" = (
/obj/structure/table/rack/steel,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
-/obj/item/device/suit_cooling_unit,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"ap" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"ax" = (
@@ -186,12 +192,13 @@
/area/ship/ert/atmos)
"br" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/item/weapon/tank/jetpack/carbondioxide,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"bt" = (
@@ -212,15 +219,16 @@
/area/ship/ert/bridge)
"bI" = (
/obj/structure/table/rack/steel,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
-/obj/item/weapon/tank/jetpack/oxygen,
/obj/machinery/light/no_nightshift{
dir = 1
},
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"bJ" = (
@@ -269,8 +277,13 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
+"cu" = (
+/obj/machinery/shipsensors,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/engineering)
"cv" = (
/obj/machinery/shield_gen,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"cC" = (
@@ -312,6 +325,9 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
"cY" = (
@@ -359,12 +375,13 @@
/area/ship/ert/dock_port)
"do" = (
/obj/structure/table/rack/steel,
+/obj/effect/floor_decal/industrial/outline/grey,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
-/obj/item/clothing/mask/gas/half,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"dp" = (
@@ -375,6 +392,7 @@
/obj/item/weapon/rig/ert/assetprotection,
/obj/item/weapon/rig/ert/assetprotection,
/obj/item/weapon/rig/ert/assetprotection,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"dr" = (
@@ -383,6 +401,7 @@
desc = "A small, cute and loveable squid friend. This one is blue. Despite the name, it seems no more or less deadly than your regular plush squid.";
name = "NT 'Deathsquid' Plushie"
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"ds" = (
@@ -436,6 +455,7 @@
/obj/item/clothing/head/helmet/space/deathsquad{
name = "swat helmet"
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"dT" = (
@@ -461,6 +481,7 @@
/obj/item/clothing/glasses/thermal,
/obj/item/clothing/glasses/thermal,
/obj/item/clothing/glasses/thermal,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"dW" = (
@@ -503,6 +524,7 @@
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"eg" = (
@@ -517,6 +539,7 @@
pixel_x = 0;
pixel_y = 26
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"es" = (
@@ -534,6 +557,7 @@
d2 = 8;
icon_state = "4-8"
},
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"et" = (
@@ -616,6 +640,9 @@
pixel_y = -24
},
/obj/structure/cable/yellow,
+/obj/machinery/light/small{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
"fx" = (
@@ -633,6 +660,9 @@
dir = 4;
pixel_x = -23
},
+/obj/item/rig_module/sprinter,
+/obj/item/rig_module/sprinter,
+/obj/item/rig_module/rescue_pharm,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"fE" = (
@@ -640,6 +670,9 @@
/obj/item/rig_module/mounted,
/obj/item/rig_module/mounted/egun,
/obj/item/rig_module/mounted/egun,
+/obj/item/rig_module/mounted,
+/obj/item/rig_module/mounted/egun,
+/obj/item/rig_module/mounted/egun,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"fP" = (
@@ -650,6 +683,8 @@
/obj/item/rig_module/chem_dispenser/injector,
/obj/item/rig_module/device/healthscanner,
/obj/item/rig_module/device/healthscanner,
+/obj/item/rig_module/device/healthscanner,
+/obj/item/rig_module/device/healthscanner,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"fU" = (
@@ -658,6 +693,10 @@
/obj/item/rig_module/device/rcd,
/obj/item/rig_module/device/plasmacutter,
/obj/item/rig_module/device/plasmacutter,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/rcd,
+/obj/item/rig_module/device/plasmacutter,
+/obj/item/rig_module/device/plasmacutter,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"fZ" = (
@@ -666,6 +705,10 @@
/obj/item/rig_module/device/drill,
/obj/item/rig_module/maneuvering_jets,
/obj/item/rig_module/maneuvering_jets,
+/obj/item/rig_module/maneuvering_jets,
+/obj/item/rig_module/maneuvering_jets,
+/obj/item/rig_module/maneuvering_jets,
+/obj/item/rig_module/maneuvering_jets,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"ga" = (
@@ -687,10 +730,12 @@
dir = 8
},
/obj/mecha/combat/gygax/serenity,
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"gk" = (
/obj/machinery/shieldwallgen,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"gn" = (
@@ -714,6 +759,7 @@
/obj/item/mecha_parts/mecha_equipment/tool/sleeper,
/obj/item/mecha_parts/mecha_equipment/tool/sleeper,
/obj/item/mecha_parts/mecha_equipment/tool/syringe_gun,
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"gx" = (
@@ -730,11 +776,13 @@
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"gy" = (
/obj/machinery/mech_recharger,
/obj/mecha/combat/gygax,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"gA" = (
@@ -754,6 +802,7 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"gN" = (
@@ -792,12 +841,14 @@
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
},
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"gX" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/box/emps,
/obj/item/weapon/storage/box/emps,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"gZ" = (
@@ -827,6 +878,7 @@
/obj/item/mecha_parts/mecha_equipment/repair_droid,
/obj/item/mecha_parts/mecha_equipment/repair_droid,
/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"hk" = (
@@ -836,6 +888,7 @@
},
/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse,
/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"hs" = (
@@ -877,21 +930,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
"hN" = (
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
- },
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
icon_state = "2-8"
},
-/obj/machinery/power/apc/hyper{
- alarms_hidden = 1;
- dir = 4;
- name = "VB APC - East";
- pixel_x = 24
- },
/obj/machinery/alarm/alarms_hidden{
pixel_y = 26
},
@@ -919,6 +962,7 @@
dir = 1;
pixel_y = -23
},
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"hU" = (
@@ -965,6 +1009,7 @@
/obj/item/clothing/accessory/holster/leg,
/obj/item/clothing/accessory/holster/leg,
/obj/item/clothing/accessory/holster/leg,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"ib" = (
@@ -994,6 +1039,16 @@
"ip" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
+"ix" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/obj/structure/sign/warning/airlock{
+ pixel_y = -32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_star)
"iy" = (
/obj/machinery/alarm/alarms_hidden{
dir = 1;
@@ -1020,6 +1075,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"iO" = (
@@ -1119,6 +1175,7 @@
/obj/item/ammo_magazine/m9mml,
/obj/item/ammo_magazine/m9mml,
/obj/item/ammo_magazine/m9mml,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"kh" = (
@@ -1162,6 +1219,7 @@
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg,
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/mortar,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"kt" = (
@@ -1200,6 +1258,7 @@
/obj/item/weapon/plastique,
/obj/item/weapon/plastique,
/obj/item/weapon/plastique,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"kG" = (
@@ -1268,23 +1327,10 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
"lm" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 9
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/bridge)
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide/engine_setup,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/barracks)
"lq" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
@@ -1297,6 +1343,7 @@
dir = 8
},
/obj/machinery/portable_atmospherics/canister/empty,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
"lu" = (
@@ -1308,6 +1355,7 @@
/obj/item/weapon/storage/box/survival/comp{
starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"lx" = (
@@ -1394,6 +1442,7 @@
/obj/item/clothing/glasses/sunglasses/sechud/tactical,
/obj/item/clothing/glasses/sunglasses/sechud/tactical,
/obj/item/clothing/glasses/sunglasses/sechud/tactical,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"mh" = (
@@ -1406,6 +1455,7 @@
/obj/item/weapon/reagent_containers/blood/OMinus,
/obj/item/weapon/reagent_containers/blood/OMinus,
/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"mj" = (
@@ -1425,15 +1475,18 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"mt" = (
+/obj/structure/cable/green,
/obj/structure/cable/green{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/green{
+ d2 = 4;
+ icon_state = "0-4"
},
/obj/structure/cable/green{
- d1 = 4;
d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-8"
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
@@ -1602,6 +1655,7 @@
dir = 1;
pixel_y = -26
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"nc" = (
@@ -1753,6 +1807,12 @@
"nC" = (
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/dock_star)
+"nM" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/engineering)
"nP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 9
@@ -1764,6 +1824,8 @@
/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser,
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/clusterbang,
+/obj/effect/floor_decal/industrial/outline/red,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/clusterbang,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"nX" = (
@@ -1836,6 +1898,7 @@
/area/ship/ert/atmos)
"oC" = (
/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"oN" = (
@@ -1903,6 +1966,7 @@
pixel_x = 24
},
/obj/structure/cable/yellow,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"oX" = (
@@ -1913,6 +1977,7 @@
/obj/item/clothing/suit/space/void/responseteam/engineer,
/obj/item/clothing/suit/space/void/responseteam/engineer,
/obj/item/clothing/suit/space/void/responseteam/engineer,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"pa" = (
@@ -1954,6 +2019,7 @@
/obj/item/clothing/suit/space/void/responseteam/medical,
/obj/item/clothing/suit/space/void/responseteam/medical,
/obj/machinery/light/no_nightshift,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"pf" = (
@@ -1974,6 +2040,7 @@
/obj/item/clothing/suit/space/void/responseteam/medical,
/obj/item/clothing/suit/space/void/responseteam/medical,
/obj/item/clothing/suit/space/void/responseteam/medical,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"po" = (
@@ -2089,6 +2156,7 @@
/obj/item/ammo_magazine/m545/ap/ext,
/obj/item/ammo_magazine/m545/ap/ext,
/obj/item/ammo_magazine/m545/ap/ext,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"pK" = (
@@ -2109,6 +2177,9 @@
dir = 1;
pixel_y = -26
},
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
+/obj/item/rig_module/mounted/taser,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"pN" = (
@@ -2135,6 +2206,7 @@
/obj/item/weapon/gun/energy/plasmastun,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"pY" = (
@@ -2152,7 +2224,9 @@
/obj/item/weapon/cell/hyper,
/obj/item/weapon/cell/hyper,
/obj/item/weapon/cell/hyper,
-/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/weapon/tool/screwdriver,
+/obj/item/weapon/tool/wrench,
+/obj/item/weapon/tool/crowbar,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qa" = (
@@ -2214,6 +2288,7 @@
/obj/machinery/light/no_nightshift{
dir = 8
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qA" = (
@@ -2239,6 +2314,7 @@
/obj/item/mecha_parts/mecha_equipment/tool/powertool/screwdriver,
/obj/item/mecha_parts/mecha_equipment/tool/powertool/welding,
/obj/item/mecha_parts/mecha_equipment/speedboost,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qE" = (
@@ -2248,6 +2324,7 @@
pixel_y = -26
},
/obj/mecha/combat/durand,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qF" = (
@@ -2260,6 +2337,7 @@
/obj/structure/table/rack/steel,
/obj/item/mecha_parts/mecha_equipment/gravcatapult,
/obj/item/mecha_parts/mecha_equipment/wormhole_generator,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qS" = (
@@ -2268,12 +2346,14 @@
/obj/item/mecha_parts/mecha_equipment/tool/jetpack,
/obj/item/mecha_parts/mecha_equipment/tool/jetpack,
/obj/item/mecha_parts/mecha_equipment/tool/jetpack,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"qT" = (
/obj/structure/table/rack/steel,
/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"ra" = (
@@ -2299,12 +2379,14 @@
/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,
/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,
/obj/machinery/light/no_nightshift,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"rr" = (
/obj/structure/table/rack/steel,
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"rs" = (
@@ -2371,6 +2453,7 @@
dir = 4
},
/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
"rV" = (
@@ -2416,6 +2499,7 @@
/obj/item/clothing/suit/space/void/responseteam/security,
/obj/item/clothing/suit/space/void/responseteam/security,
/obj/machinery/light/no_nightshift,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sp" = (
@@ -2433,6 +2517,7 @@
/area/ship/ert/dock_port)
"sr" = (
/obj/machinery/vending/food,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sw" = (
@@ -2448,6 +2533,7 @@
starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)
},
/obj/machinery/light/no_nightshift,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sA" = (
@@ -2495,6 +2581,7 @@
/obj/item/clothing/glasses/graviton,
/obj/item/clothing/glasses/graviton,
/obj/item/clothing/glasses/graviton,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sH" = (
@@ -2519,6 +2606,7 @@
dir = 1;
pixel_y = -26
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sS" = (
@@ -2526,6 +2614,7 @@
/obj/machinery/light/no_nightshift{
dir = 1
},
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"sT" = (
@@ -2686,6 +2775,7 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 1
},
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"uh" = (
@@ -2750,6 +2840,9 @@
},
/obj/effect/map_helper/airlock/atmos/chamber_pump,
/obj/effect/floor_decal/industrial/warning,
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
"uG" = (
@@ -2908,6 +3001,7 @@
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/gun/energy/gun,
/obj/item/weapon/gun/energy/gun,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"wn" = (
@@ -2929,11 +3023,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"wr" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 8
+/obj/machinery/shipsensors{
+ dir = 1
},
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/bridge)
+/turf/simulated/floor/reinforced/airless,
+/area/ship/ert/atmos)
"wt" = (
/obj/structure/table/steel_reinforced,
/obj/item/weapon/storage/firstaid/bonemed,
@@ -3003,6 +3097,7 @@
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/box/anti_photons,
/obj/item/weapon/storage/box/anti_photons,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xh" = (
@@ -3012,18 +3107,21 @@
/obj/machinery/light_switch{
pixel_y = 23
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xi" = (
/obj/item/weapon/storage/box/teargas,
/obj/item/weapon/storage/box/teargas,
/obj/structure/table/rack/steel,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xr" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/box/empslite,
/obj/item/weapon/storage/box/empslite,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xt" = (
@@ -3036,6 +3134,7 @@
/obj/machinery/alarm/alarms_hidden{
pixel_y = 26
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xv" = (
@@ -3062,6 +3161,7 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"xx" = (
@@ -3095,11 +3195,13 @@
/obj/item/clothing/shoes/magboots/adv,
/obj/item/clothing/shoes/magboots/adv,
/obj/item/clothing/shoes/magboots/adv,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"xC" = (
/obj/machinery/portable_atmospherics/powered/scrubber,
/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"xG" = (
@@ -3111,6 +3213,7 @@
dir = 4;
pixel_x = -23
},
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"xM" = (
@@ -3144,6 +3247,7 @@
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/launcher/grenade,
/obj/item/weapon/gun/launcher/grenade,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"ya" = (
@@ -3412,6 +3516,19 @@
},
/turf/simulated/floor/plating,
/area/ship/ert/hallways)
+"zB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
"zP" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/wood,
@@ -3528,6 +3645,7 @@
/area/ship/ert/armoury_dl)
"AI" = (
/obj/machinery/power/thermoregulator,
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"AK" = (
@@ -3609,6 +3727,7 @@
/area/ship/ert/hallways)
"Bj" = (
/obj/machinery/shieldgen,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"Bo" = (
@@ -3637,6 +3756,7 @@
dir = 1;
pixel_y = -23
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Bq" = (
@@ -3861,6 +3981,7 @@
/obj/structure/railing/grey{
dir = 4
},
+/obj/structure/table/steel_reinforced,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Du" = (
@@ -3876,6 +3997,16 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
+"Dx" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(103)
+ },
+/obj/structure/sign/warning/airlock{
+ pixel_y = 32
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/dock_port)
"DJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3938,6 +4069,7 @@
d2 = 2;
icon_state = "0-2"
},
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"DS" = (
@@ -3955,6 +4087,7 @@
dir = 1;
pixel_y = -26
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"Ed" = (
@@ -3966,6 +4099,9 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/sign/warning/engineering_access{
+ pixel_x = -32
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways_aft)
"Ee" = (
@@ -4048,6 +4184,7 @@
dir = 4;
pixel_x = -23
},
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"EC" = (
@@ -4091,6 +4228,7 @@
/obj/item/weapon/storage/box/gloves,
/obj/item/weapon/storage/box/freezer,
/obj/item/weapon/storage/box/masks,
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"Fd" = (
@@ -4131,6 +4269,7 @@
pixel_x = 24
},
/obj/structure/cable/yellow,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Fz" = (
@@ -4218,6 +4357,7 @@
/obj/structure/closet/crate{
dir = 2
},
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
"FW" = (
@@ -4259,10 +4399,12 @@
/obj/item/weapon/gun/projectile/heavysniper,
/obj/item/weapon/storage/box/sniperammo,
/obj/item/weapon/storage/box/sniperammo,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Gr" = (
/obj/machinery/power/emitter,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"Gv" = (
@@ -4279,6 +4421,7 @@
/obj/machinery/light/no_nightshift{
dir = 1
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"GI" = (
@@ -4298,6 +4441,7 @@
/obj/structure/closet/crate{
dir = 1
},
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
"GM" = (
@@ -4348,6 +4492,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"GZ" = (
@@ -4409,6 +4554,7 @@
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"HC" = (
@@ -4437,6 +4583,7 @@
dir = 8;
pixel_x = 23
},
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"HE" = (
@@ -4524,6 +4671,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engine)
"Io" = (
@@ -4579,13 +4727,9 @@
/area/ship/ert/barracks)
"IF" = (
/obj/structure/table/rack/steel,
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
-"IG" = (
-/obj/machinery/power/smes/buildable/point_of_interest,
-/obj/structure/cable/yellow,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/engineering)
"IK" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -4722,6 +4866,7 @@
/obj/effect/floor_decal/corner/red{
dir = 4
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/hallways)
"Jx" = (
@@ -4759,6 +4904,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"JJ" = (
@@ -4837,6 +4983,7 @@
dir = 1;
pixel_y = -26
},
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Kb" = (
@@ -4846,6 +4993,8 @@
/obj/structure/railing/grey{
dir = 1
},
+/obj/item/weapon/paper/vonbraun_shields,
+/obj/structure/table/steel_reinforced,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Kf" = (
@@ -4872,6 +5021,7 @@
d2 = 2;
icon_state = "1-2"
},
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engine)
"Kr" = (
@@ -4951,6 +5101,7 @@
pixel_x = 3;
pixel_y = 3
},
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"KJ" = (
@@ -4960,6 +5111,7 @@
/obj/structure/railing/grey{
dir = 1
},
+/obj/structure/table/steel_reinforced,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"KM" = (
@@ -5031,6 +5183,7 @@
/obj/item/taperoll/engineering,
/obj/item/taperoll/engineering,
/obj/item/taperoll/engineering,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"Lh" = (
@@ -5055,6 +5208,7 @@
/obj/item/weapon/material/knife/tacknife/combatknife,
/obj/item/weapon/material/knife/tacknife/combatknife,
/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/hallways)
"Lq" = (
@@ -5083,6 +5237,7 @@
},
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"LA" = (
@@ -5098,6 +5253,7 @@
/obj/item/weapon/storage/box/beanbags/large,
/obj/item/weapon/storage/box/beanbags/large,
/obj/item/weapon/storage/box/stunshells/large,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"LB" = (
@@ -5127,11 +5283,13 @@
/obj/item/weapon/gun/energy/laser,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"LH" = (
/obj/machinery/shield_gen/external,
/obj/effect/floor_decal/corner/white,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"LJ" = (
@@ -5181,6 +5339,7 @@
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"Me" = (
@@ -5196,6 +5355,7 @@
/obj/item/weapon/storage/box/beanbags/large,
/obj/item/weapon/storage/box/beanbags/large,
/obj/item/weapon/storage/box/stunshells/large,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Mm" = (
@@ -5214,6 +5374,7 @@
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"Mv" = (
@@ -5224,12 +5385,19 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
"My" = (
-/obj/machinery/power/terminal{
- dir = 1
+/obj/structure/cable/green{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "VB APC - East";
+ pixel_x = 24
},
/obj/structure/cable/green{
d2 = 8;
- dir = 2;
icon_state = "0-8"
},
/turf/simulated/floor/tiled/techfloor,
@@ -5249,6 +5417,7 @@
dir = 1
},
/obj/structure/reagent_dispensers/watertank/high,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"MK" = (
@@ -5639,6 +5808,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/bridge)
"OH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"OO" = (
@@ -5653,6 +5823,7 @@
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"OR" = (
@@ -5839,11 +6010,8 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
"PH" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"PJ" = (
@@ -5866,6 +6034,7 @@
/area/ship/ert/armoury_dl)
"PS" = (
/obj/machinery/shield_capacitor,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"PX" = (
@@ -6136,9 +6305,6 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Sj" = (
-/obj/effect/floor_decal/corner/blue{
- dir = 1
- },
/obj/machinery/light_switch{
dir = 4;
pixel_x = -23
@@ -6150,6 +6316,7 @@
dir = 8
},
/obj/structure/railing/grey,
+/obj/structure/table/steel_reinforced,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Sp" = (
@@ -6175,6 +6342,7 @@
/obj/item/device/flash,
/obj/item/device/flash,
/obj/item/device/flash,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/hallways)
"Sx" = (
@@ -6203,6 +6371,7 @@
/obj/item/ammo_magazine/m9mmp90,
/obj/item/ammo_magazine/m9mmp90,
/obj/item/ammo_magazine/m9mmp90,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Sy" = (
@@ -6213,6 +6382,7 @@
/obj/item/ammo_magazine/m545saw,
/obj/item/ammo_magazine/m545saw,
/obj/item/ammo_magazine/m545saw,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"Sz" = (
@@ -6275,6 +6445,7 @@
"SI" = (
/obj/machinery/portable_atmospherics/powered/scrubber,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"SJ" = (
@@ -6292,6 +6463,7 @@
/obj/machinery/alarm/alarms_hidden{
pixel_y = 26
},
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"SZ" = (
@@ -6316,14 +6488,11 @@
d2 = 4;
icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 9;
pixel_y = 0
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"TF" = (
@@ -6465,6 +6634,7 @@
/obj/structure/window/reinforced,
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/yellow,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"UY" = (
@@ -6558,6 +6728,7 @@
/obj/item/device/radio/off,
/obj/item/device/radio/off,
/obj/item/device/radio/off,
+/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/hallways)
"Wa" = (
@@ -6595,6 +6766,17 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
+"Wq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/corner/blue,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/bridge)
"Wu" = (
/obj/machinery/door/airlock/glass_security{
req_one_access = list(103)
@@ -6723,8 +6905,8 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"Xu" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/effect/decal/cleanable/blood/oil,
+/obj/structure/cable/yellow,
+/obj/machinery/power/smes/buildable/point_of_interest,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"Xx" = (
@@ -6768,12 +6950,14 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
},
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"XW" = (
@@ -6829,6 +7013,7 @@
req_access = list(103);
state = 1
},
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"Yt" = (
@@ -6851,7 +7036,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"YN" = (
-/obj/structure/sign/warning/radioactive,
+/obj/structure/sign/warning/radioactive{
+ desc = "WARNING: VON BRAUN PTTOS EMIT RADIATION WHILST OPERATIONAL.";
+ name = "\improper RADIOACTIVE GENERATORS BEHIND THESE DOORS";
+ pixel_x = -16
+ },
/turf/simulated/wall/rshull,
/area/ship/ert/engineering)
"YP" = (
@@ -6928,12 +7117,17 @@
pixel_y = 12
},
/obj/machinery/light/no_nightshift,
+/obj/effect/floor_decal/industrial/outline,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"ZI" = (
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
+/obj/machinery/power/terminal{
dir = 1
},
+/obj/structure/cable/green{
+ d2 = 2;
+ icon_state = "0-2"
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
"ZL" = (
@@ -6969,6 +7163,7 @@
pixel_y = -26
},
/obj/machinery/power/port_gen/pacman/mrs,
+/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"ZW" = (
@@ -13338,7 +13533,7 @@ ry
Xg
Sc
Nb
-YN
+XW
XW
XW
XW
@@ -13478,7 +13673,7 @@ yR
RQ
TB
OH
-OH
+nM
qt
YN
XW
@@ -13747,7 +13942,7 @@ yz
yz
yz
yz
-bO
+wr
kJ
kJ
ls
@@ -13762,14 +13957,14 @@ NZ
XW
hN
PH
-IG
+ZI
My
XW
XW
XW
XW
XW
-YR
+cu
yz
yz
yz
@@ -15319,9 +15514,9 @@ KW
KW
KW
YU
-KW
+Wq
OE
-KW
+zB
YU
KW
KW
@@ -15453,7 +15648,7 @@ JB
JB
JB
JB
-Na
+Dx
JB
JB
JB
@@ -15471,7 +15666,7 @@ ZM
Sz
Sz
Sz
-Un
+ix
Sz
Sz
Sz
@@ -15603,8 +15798,8 @@ ZM
us
ED
Ao
-wr
-lm
+us
+Oi
Sj
zg
ED
@@ -17864,7 +18059,7 @@ yz
yz
Ye
yY
-ap
+lm
WH
eX
iX
@@ -20135,7 +20330,7 @@ yz
yz
yz
yz
-ah
+af
bM
bM
gh
@@ -20161,7 +20356,7 @@ SB
aQ
MZ
MZ
-ci
+Jg
yz
yz
yz
From e29c434c87817e5a157ddcb859d95a9582c9fbcd Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Tue, 8 Sep 2020 13:00:41 +0100
Subject: [PATCH 10/13] almost done, aaaa
---
maps/submaps/admin_use_vr/ert.dm | 7 +++++--
maps/submaps/admin_use_vr/ert.dmm | 12 ++++++++----
2 files changed, 13 insertions(+), 6 deletions(-)
diff --git a/maps/submaps/admin_use_vr/ert.dm b/maps/submaps/admin_use_vr/ert.dm
index 2a98ac49c5..a41e82357f 100644
--- a/maps/submaps/admin_use_vr/ert.dm
+++ b/maps/submaps/admin_use_vr/ert.dm
@@ -1,6 +1,6 @@
// Compile in the map for CI testing if we're testing compileability of all the maps
#if MAP_TEST
-#include "mercship.dmm"
+#include "ert.dmm"
#endif
@@ -192,13 +192,16 @@ Point is they're fairly expensive and probably prototypes or something, so for t
/obj/item/weapon/paper/vonbraun_shields
name = "NRV Von Braun Shield Configuration Documentation"
info = {"To All Current ERT Members,
\
-Be advised that use of the NRV Von Braun's shield generator (located adjacent to this document) is strongly recommended when responding to calls, but also that it is not impervious, nor is the ship's point defense system flawless. Recommended settings as follows:
\
+Be advised that use of the NRV Von Braun's shield generator (located adjacent to this document) is strongly recommended when responding to calls, but also that it is not impervious, nor is the ship's point defense system flawless.
\
+
\
+Recommended settings as follows:
\
Photonic: Off (PD will not work with it enabled!)
\
EM: On
\
Humanoids: Off
\
Atmospheric: Off
\
Hull Shield: On
\
Radius: 26
\
+
\
The shield generator will tax the Von Braun's reserves greatly so try to use it sparingly. Do not be afraid to use it however, as the Von Braun represents the Company making a significant investment in this sector's future. I can bail you out if the occasional intern goes missing or you break something minor, but if you go flying this thing through an asteroid belt and get massive holes blown in it Central will make everyone involved disappear permanently.
\
\
Lt. Cmdr. Sykes"}
\ No newline at end of file
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 722514fb8f..f90c4ddf7e 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -21,9 +21,11 @@
/obj/machinery/door/airlock/external,
/obj/effect/map_helper/airlock/door/ext_door,
/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 1;
pixel_x = 24;
- pixel_y = 9
+ pixel_y = 11
},
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_port)
"af" = (
@@ -3282,6 +3284,7 @@
/obj/structure/window/reinforced{
dir = 4
},
+/obj/machinery/shield_diffuser,
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"yi" = (
@@ -4608,14 +4611,15 @@
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"HK" = (
-/obj/machinery/door/blast/regular{
- id = "ERT_Shuttle_Fore"
- },
/obj/machinery/door/blast/regular/open{
dir = 2;
id = "ERT_Blast_Windows";
name = "Blast Shield"
},
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/blast/regular{
+ id = "ERT_Shuttle_Fore"
+ },
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
"HO" = (
From ac1896f7125888c55a3cd9cd094cf7d0100b07ad Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Wed, 9 Sep 2020 07:37:20 +0100
Subject: [PATCH 11/13] sanitized vars, added rechargers, replaced some
internal walls
---
maps/submaps/admin_use_vr/ert.dmm | 829 ++++++++++++++----------------
1 file changed, 393 insertions(+), 436 deletions(-)
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index f90c4ddf7e..7e02df2f48 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -51,8 +51,7 @@
/area/ship/ert/engine)
"ak" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- icon_state = "intact"
+ dir = 6
},
/turf/simulated/wall/rshull,
/area/ship/ert/dock_port)
@@ -174,6 +173,13 @@
},
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/eng_storage)
+"ba" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways_aft)
"bg" = (
/turf/space,
/turf/space,
@@ -183,8 +189,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
@@ -210,8 +215,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -308,6 +312,9 @@
/obj/machinery/computer/operating,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
+"cU" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/med)
"cV" = (
/obj/machinery/vending/assist,
/turf/simulated/floor/tiled/techfloor,
@@ -341,7 +348,7 @@
/area/ship/ert/engine)
"dd" = (
/obj/machinery/atmospherics/pipe/manifold/visible,
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/dock_port)
"dg" = (
/obj/machinery/atmospherics/unary/vent_pump/high_volume{
@@ -355,13 +362,11 @@
/area/ship/ert/dock_port)
"dk" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
},
/obj/machinery/portable_atmospherics/powered/pump/filled,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -538,7 +543,6 @@
/obj/item/clothing/glasses/night,
/obj/item/clothing/glasses/night,
/obj/machinery/atm{
- pixel_x = 0;
pixel_y = 26
},
/obj/effect/floor_decal/industrial/outline/grey,
@@ -599,8 +603,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/eng_storage)
@@ -611,6 +614,10 @@
/obj/item/weapon/storage/box/cdeathalarm_kit,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"eQ" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
"eX" = (
/obj/structure/table/steel_reinforced,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -647,6 +654,10 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
+"fu" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
"fx" = (
/obj/structure/table/steel_reinforced,
/obj/item/rig_module/rescue_pharm,
@@ -715,7 +726,7 @@
/area/ship/ert/mech_bay)
"ga" = (
/obj/structure/sign/department/operational,
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/med_surg)
"gf" = (
/obj/machinery/bodyscanner{
@@ -779,6 +790,18 @@
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_st)
"gy" = (
@@ -858,8 +881,7 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
@@ -897,6 +919,9 @@
/obj/machinery/pointdefense_control{
id_tag = "vonbraun_pd"
},
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"hv" = (
@@ -1063,12 +1088,8 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"iB" = (
-/obj/machinery/alarm/alarms_hidden{
- dir = 1;
- pixel_y = -26
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hallways_aft)
+/turf/simulated/wall/shull,
+/area/ship/ert/dock_port)
"iC" = (
/obj/item/device/healthanalyzer/advanced,
/obj/item/device/healthanalyzer/advanced,
@@ -1103,8 +1124,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
@@ -1186,8 +1206,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
+ dir = 5
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways_aft)
@@ -1265,8 +1284,7 @@
/area/ship/ert/armoury_dl)
"kG" = (
/obj/effect/floor_decal/corner/white{
- dir = 10;
- icon_state = "corner_white"
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
@@ -1288,8 +1306,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
@@ -1319,12 +1336,11 @@
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 1
},
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/dock_star)
"kY" = (
/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 6;
- icon_state = "intact"
+ dir = 6
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
@@ -1380,8 +1396,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
@@ -1591,8 +1606,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
+ dir = 5
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
@@ -1606,8 +1620,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
@@ -1624,8 +1637,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/door/firedoor/multi_tile{
dir = 1
@@ -1695,8 +1707,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/door/firedoor/multi_tile{
dir = 1
@@ -1717,8 +1728,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
@@ -1736,8 +1746,7 @@
},
/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
@@ -1782,8 +1791,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/door/firedoor/multi_tile{
dir = 1
@@ -1797,12 +1805,10 @@
icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
@@ -1835,8 +1841,7 @@
dir = 1
},
/obj/machinery/atmospherics/unary/engine{
- dir = 4;
- icon_state = "nozzle"
+ dir = 4
},
/turf/space,
/area/ship/ert/engine)
@@ -1856,6 +1861,9 @@
/obj/item/device/survivalcapsule,
/turf/simulated/floor/wood,
/area/ship/ert/commander)
+"oc" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/eng_storage)
"og" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
@@ -1912,8 +1920,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
+ dir = 5
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -1930,8 +1937,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -2006,7 +2012,6 @@
/obj/structure/medical_stand,
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 12;
pixel_y = 8
},
@@ -2054,8 +2059,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -2103,8 +2107,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/door/firedoor/multi_tile{
dir = 1
@@ -2165,7 +2168,7 @@
/obj/structure/sign/department/eng{
name = "RIG AND MECH BAY"
},
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/mech_bay)
"pM" = (
/obj/structure/table/steel_reinforced,
@@ -2303,6 +2306,7 @@
/obj/machinery/alarm/alarms_hidden{
pixel_y = 26
},
+/obj/machinery/recharge_station,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"qD" = (
@@ -2417,8 +2421,7 @@
/area/ship/ert/engineering)
"rA" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 8;
- icon_state = "intact-fuel"
+ dir = 8
},
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -2430,8 +2433,7 @@
/area/ship/ert/engine)
"rD" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 10;
- icon_state = "intact-fuel"
+ dir = 10
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engine)
@@ -2481,8 +2483,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
@@ -2539,16 +2540,8 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
"sA" = (
-/obj/machinery/embedded_controller/radio/docking_port_multi{
- child_names_txt = "Port Airlock Control;Starboard Airlock Control";
- child_tags_txt = "von_braun_port;von_braun_star";
- dir = 8;
- id_tag = "von_braun_master";
- pixel_x = 22
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -2633,8 +2626,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
@@ -2705,7 +2697,7 @@
/obj/structure/sign/department/dock{
name = "ROBINEAU DOCK"
},
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/hangar)
"tH" = (
/turf/simulated/wall/rshull,
@@ -2732,6 +2724,9 @@
},
/turf/simulated/floor/plating,
/area/ship/ert/engine)
+"tS" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/mech_bay)
"tV" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -2808,8 +2803,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -2820,7 +2814,7 @@
/area/ship/ert/med)
"uq" = (
/obj/structure/sign/department/medbay,
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/med_surg)
"us" = (
/turf/simulated/floor/tiled/techfloor,
@@ -2875,8 +2869,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -2914,8 +2907,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/door/firedoor/border_only,
/obj/structure/cable/yellow{
@@ -2938,12 +2930,15 @@
},
/obj/machinery/light/no_nightshift,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
"vv" = (
@@ -3019,9 +3014,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
"wp" = (
-/obj/machinery/sleep_console{
- dir = 8
- },
+/obj/machinery/sleep_console,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
"wr" = (
@@ -3054,8 +3047,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -3065,7 +3057,7 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/engineering)
"wU" = (
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/hallways)
"wX" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -3084,8 +3076,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3172,8 +3163,7 @@
/area/ship/ert/hallways_aft)
"xz" = (
/obj/structure/closet/medical_wall{
- pixel_x = 32;
- pixel_y = 0
+ pixel_x = 32
},
/obj/item/weapon/storage/firstaid/clotting,
/obj/item/weapon/storage/firstaid/bonemed,
@@ -3220,8 +3210,7 @@
/area/ship/ert/hangar)
"xM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/turf/simulated/floor/tiled/techmaint,
@@ -3229,8 +3218,7 @@
"xO" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -3264,8 +3252,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -3289,12 +3276,10 @@
/area/shuttle/ert_ship_boat)
"yi" = (
/obj/effect/floor_decal/corner/white{
- dir = 10;
- icon_state = "corner_white"
+ dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/effect/floor_decal/industrial/warning/corner{
dir = 4
@@ -3305,8 +3290,7 @@
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -3344,8 +3328,7 @@
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/pipedispenser/orderable,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -3353,8 +3336,7 @@
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/pipedispenser/disposal/orderable,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -3394,7 +3376,7 @@
/area/ship/ert/hallways_aft)
"yI" = (
/obj/structure/sign/department/medbay,
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/med)
"yJ" = (
/obj/structure/table/steel_reinforced,
@@ -3448,8 +3430,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
@@ -3488,8 +3469,7 @@
/area/ship/ert/bridge)
"zr" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
},
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -3513,10 +3493,6 @@
dir = 4
},
/obj/effect/catwalk_plated,
-/obj/machinery/light_switch{
- dir = 4;
- pixel_x = -23
- },
/turf/simulated/floor/plating,
/area/ship/ert/hallways)
"zB" = (
@@ -3552,6 +3528,14 @@
pixel_x = 24
},
/obj/structure/cable/yellow,
+/obj/machinery/embedded_controller/radio/docking_port_multi{
+ child_names_txt = "Port Airlock Control;Starboard Airlock Control";
+ child_tags_txt = "von_braun_port;von_braun_star";
+ dir = 1;
+ id_tag = "von_braun_master";
+ pixel_y = -22
+ },
+/obj/machinery/light/no_nightshift,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Ah" = (
@@ -3690,6 +3674,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
"Bc" = (
@@ -3699,8 +3686,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3720,12 +3706,14 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
"Bj" = (
@@ -3734,11 +3722,8 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
"Bo" = (
-/obj/machinery/alarm/alarms_hidden{
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hallways_aft)
+/turf/simulated/wall/shull,
+/area/ship/ert/barracks)
"Bp" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/projectile/automatic/z8,
@@ -3772,8 +3757,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3793,8 +3777,7 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_st)
@@ -3824,6 +3807,9 @@
"BW" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
+"BY" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/med_surg)
"Ce" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -3859,8 +3845,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -3905,8 +3890,7 @@
/area/ship/ert/hangar)
"CM" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -4010,13 +3994,15 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_port)
+"DG" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/engineering)
"DJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -4045,8 +4031,7 @@
/area/ship/ert/med)
"DN" = (
/obj/machinery/atmospherics/unary/engine{
- dir = 4;
- icon_state = "nozzle"
+ dir = 4
},
/turf/space,
/area/ship/ert/engine)
@@ -4078,6 +4063,9 @@
"DS" = (
/turf/simulated/wall/rshull,
/area/ship/ert/hallways_aft)
+"DT" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/atmos)
"Ec" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/backpack/ert/security,
@@ -4109,8 +4097,7 @@
/area/ship/ert/hallways_aft)
"Ee" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
},
/obj/effect/floor_decal/corner/white{
dir = 8
@@ -4118,8 +4105,7 @@
/obj/machinery/portable_atmospherics/powered/pump/filled,
/obj/machinery/light/no_nightshift,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -4132,8 +4118,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -4246,8 +4231,7 @@
pixel_y = -32
},
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -4326,6 +4310,9 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
"FN" = (
@@ -4558,6 +4545,18 @@
/obj/item/weapon/cell/device/weapon/recharge,
/obj/item/weapon/cell/device/weapon/recharge,
/obj/effect/floor_decal/industrial/outline/grey,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -12
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = -4
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_x = -23;
+ pixel_y = 5
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"HC" = (
@@ -4653,8 +4652,7 @@
/area/ship/ert/hallways_aft)
"Id" = (
/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 8;
- icon_state = "intact-fuel"
+ dir = 8
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engine)
@@ -4667,8 +4665,7 @@
/area/ship/ert/engine)
"Ii" = (
/obj/machinery/atmospherics/portables_connector/fuel{
- dir = 8;
- icon_state = "map_connector-fuel"
+ dir = 8
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -4777,14 +4774,17 @@
/turf/simulated/floor/wood,
/area/ship/ert/commander)
"Jb" = (
-/obj/machinery/light/no_nightshift{
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
dir = 4
},
-/obj/item/modular_computer/console/preset/ert{
+/obj/structure/window/reinforced{
dir = 8
},
/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/bridge)
+/area/ship/ert/armoury_st)
"Jc" = (
/obj/structure/table/steel_reinforced,
/obj/item/weapon/storage/firstaid/toxin{
@@ -4807,8 +4807,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
@@ -4817,8 +4816,7 @@
dir = 10
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4832,8 +4830,16 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med_surg)
"Jk" = (
-/obj/structure/sign/department/bridge,
-/turf/simulated/wall/rshull,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Jl" = (
/obj/effect/floor_decal/corner/blue{
@@ -4844,9 +4850,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/light/no_nightshift{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 8
},
@@ -4860,10 +4863,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
"Jw" = (
-/obj/structure/sign/department/armory{
- name = "STANDARD ARMORY";
- pixel_x = 32
- },
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/box/handcuffs,
/obj/item/weapon/storage/box/handcuffs,
@@ -4874,30 +4873,18 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/hallways)
"Jx" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = 5
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -12
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -4
- },
-/obj/machinery/light/no_nightshift{
- dir = 8
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "NRB Robineau";
+ tele_network = "centcom"
},
/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/armoury_st)
+/area/shuttle/ert_ship_boat)
"JB" = (
/turf/simulated/wall/rshull,
/area/ship/ert/dock_port)
"JE" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/effect/floor_decal/industrial/warning/corner,
/turf/simulated/floor/tiled/techmaint,
@@ -4942,8 +4929,7 @@
"JW" = (
/obj/machinery/light/no_nightshift,
/obj/machinery/atmospherics/unary/engine{
- dir = 4;
- icon_state = "nozzle"
+ dir = 4
},
/turf/space,
/area/ship/ert/engine)
@@ -4954,8 +4940,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5017,8 +5002,7 @@
dir = 4
},
/obj/machinery/atmospherics/portables_connector/fuel{
- dir = 8;
- icon_state = "map_connector-fuel"
+ dir = 8
},
/obj/structure/cable/yellow{
d1 = 1;
@@ -5047,7 +5031,6 @@
"Ks" = (
/obj/machinery/door/airlock/centcom{
name = "Commander";
- opacity = 1;
req_access = list(103)
},
/obj/structure/cable/yellow{
@@ -5265,8 +5248,7 @@
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 2;
@@ -5302,6 +5284,10 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
+"LQ" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
"LR" = (
/obj/machinery/door/airlock/external,
/obj/effect/map_helper/airlock/door/ext_door,
@@ -5309,13 +5295,19 @@
/area/ship/ert/dock_port)
"LV" = (
/obj/structure/table/steel_reinforced,
-/obj/machinery/recharger,
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/atmospherics/unary/vent_pump/on,
+/obj/machinery/button/remote/blast_door{
+ desc = "[OOC] DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
+ dir = 1;
+ id = "NRV_DELTA";
+ name = "DELTA ACCESS CONTROL";
+ req_one_access = list(108)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
"LZ" = (
@@ -5409,7 +5401,6 @@
"MC" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
pixel_x = 12;
pixel_y = 8
},
@@ -5448,8 +5439,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/eng_storage)
@@ -5535,13 +5525,11 @@
/area/ship/ert/engine)
"Nz" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
},
/obj/machinery/portable_atmospherics/powered/scrubber,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -5570,8 +5558,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/binary/pump/fuel/on,
/turf/simulated/floor/tiled/techfloor,
@@ -5582,8 +5569,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -5594,12 +5580,10 @@
/area/ship/ert/engineering)
"NU" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/armoury_dl)
@@ -5613,8 +5597,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5629,8 +5612,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5648,8 +5630,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5689,8 +5670,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5708,8 +5688,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5719,8 +5698,7 @@
"Ok" = (
/obj/effect/floor_decal/industrial/warning,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/embedded_controller/radio/simple_docking_controller{
id_tag = "ert_boarding_shuttle_dock";
@@ -5798,8 +5776,7 @@
icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5858,12 +5835,10 @@
/area/ship/ert/bridge)
"OT" = (
/obj/machinery/computer/ship/helm{
- dir = 8;
- icon_state = "computer"
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5877,8 +5852,7 @@
/area/ship/ert/bridge)
"OW" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5895,8 +5869,7 @@
/area/ship/ert/bridge)
"OX" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -5933,13 +5906,21 @@
/area/ship/ert/med)
"Pc" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
-/turf/simulated/wall/rshull,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/reinforced/full,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/bridge)
"Pe" = (
/obj/machinery/button/remote/blast_door{
@@ -5955,6 +5936,12 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
+"Pf" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways_aft)
"Pl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -5976,6 +5963,9 @@
"Pq" = (
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
+"Px" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/hangar)
"PC" = (
/obj/machinery/door/blast/regular{
dir = 4;
@@ -5988,7 +5978,7 @@
/obj/structure/sign/department/medbay{
name = "MEDICAL OUTFITTING & SUPPLIES"
},
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/med)
"PE" = (
/obj/structure/cable/yellow{
@@ -6018,24 +6008,9 @@
/obj/structure/cable/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
-"PJ" = (
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = 5
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -12
- },
-/obj/machinery/recharger/wallcharger{
- pixel_x = -23;
- pixel_y = -4
- },
-/obj/machinery/light/no_nightshift{
- dir = 8
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/armoury_dl)
+"PO" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/hallways_aft)
"PS" = (
/obj/machinery/shield_capacitor,
/obj/effect/floor_decal/industrial/outline/blue,
@@ -6160,6 +6135,9 @@
"QT" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
+"QU" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/dock_star)
"QX" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/shuttle_control/explore/ert_ship_boat{
@@ -6232,8 +6210,7 @@
id = "NRV_DELTA"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6255,8 +6232,7 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engine)
@@ -6359,14 +6335,6 @@
/obj/item/ammo_magazine/m9mmp90,
/obj/item/ammo_magazine/m9mmp90,
/obj/item/ammo_magazine/m9mmp90,
-/obj/machinery/button/remote/blast_door{
- desc = "[OOC] DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR.";
- dir = 4;
- id = "NRV_DELTA";
- name = "DELTA ACCESS CONTROL";
- pixel_x = -24;
- req_one_access = list(108)
- },
/obj/item/weapon/gun/projectile/automatic/p90,
/obj/item/weapon/gun/projectile/automatic/p90,
/obj/item/ammo_magazine/m9mmp90,
@@ -6430,8 +6398,7 @@
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6493,8 +6460,7 @@
icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
@@ -6504,8 +6470,7 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
@@ -6583,12 +6548,13 @@
/obj/machinery/alarm/alarms_hidden{
pixel_y = 26
},
+/obj/machinery/porta_turret/industrial/teleport_defense,
+/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"UH" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -6602,15 +6568,17 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5;
- icon_state = "intact-scrubbers"
+ dir = 5
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
+"UP" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways_aft)
"UT" = (
/obj/machinery/door/airlock/glass_security{
req_one_access = list(103)
@@ -6638,7 +6606,7 @@
/obj/structure/window/reinforced,
/obj/effect/floor_decal/industrial/warning,
/obj/structure/cable/yellow,
-/obj/effect/floor_decal/industrial/outline/red,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"UY" = (
@@ -6703,9 +6671,6 @@
d2 = 2;
icon_state = "1-2"
},
-/obj/machinery/light/no_nightshift{
- dir = 8
- },
/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
dir = 8
},
@@ -6719,11 +6684,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
"VQ" = (
-/obj/structure/sign/department/armory{
- desc = "HAS THE SHIT HIT THE FAN? THIS IS WHAT YOU NEED.";
- name = "DELTA ARMORY";
- pixel_x = 32
- },
/obj/structure/table/rack/steel,
/obj/effect/floor_decal/corner/red,
/obj/item/device/radio/off,
@@ -6842,8 +6802,7 @@
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 9;
- pixel_y = 0
+ dir = 9
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/light_switch{
@@ -7017,7 +6976,7 @@
req_access = list(103);
state = 1
},
-/obj/effect/floor_decal/industrial/outline/red,
+/obj/effect/floor_decal/industrial/outline/blue,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
"Yt" = (
@@ -7045,7 +7004,7 @@
name = "\improper RADIOACTIVE GENERATORS BEHIND THESE DOORS";
pixel_x = -16
},
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/engineering)
"YP" = (
/obj/machinery/atmospherics/pipe/manifold/visible/fuel{
@@ -7093,12 +7052,10 @@
/area/ship/ert/eng_storage)
"Zx" = (
/obj/effect/floor_decal/industrial/warning{
- dir = 1;
- icon_state = "warning"
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4;
- icon_state = "intact-scrubbers"
+ dir = 4
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
@@ -13380,17 +13337,17 @@ yz
yz
bO
kJ
-kJ
+DT
kP
kP
rS
gA
gA
CT
-gA
-kJ
+LQ
+DT
wO
-XW
+DG
zh
WS
lB
@@ -13522,7 +13479,7 @@ yz
yz
bR
kJ
-kJ
+DT
kS
os
os
@@ -13530,14 +13487,14 @@ vg
bp
Dn
gn
-kJ
+DT
NR
-XW
+DG
ry
Xg
Sc
Nb
-XW
+DG
XW
XW
XW
@@ -13664,7 +13621,7 @@ yz
yz
bO
kJ
-kJ
+DT
kT
gA
gA
@@ -13806,7 +13763,7 @@ yz
yz
bW
kJ
-kJ
+DT
kY
oy
oy
@@ -13814,9 +13771,9 @@ vg
bp
DK
Io
-kJ
+DT
NZ
-XW
+DG
XS
Xu
ZI
@@ -13948,7 +13905,7 @@ yz
yz
wr
kJ
-kJ
+DT
ls
ls
ls
@@ -13956,14 +13913,14 @@ gA
gA
DQ
Ip
-kJ
+DT
NZ
-XW
+DG
hN
PH
ZI
My
-XW
+DG
XW
XW
XW
@@ -14090,25 +14047,25 @@ yz
xx
DS
DS
-kJ
-kJ
-kJ
-kJ
-kJ
-kJ
-kJ
-kJ
-kJ
+DT
+DT
+DT
+DT
+DT
+DT
+DT
+DT
+DT
Oa
-XW
-XW
-XW
-XW
-XW
-XW
-XW
-XW
-XW
+DG
+DG
+DG
+DG
+DG
+DG
+DG
+DG
+DG
XW
XW
cJ
@@ -14515,9 +14472,9 @@ yz
yz
sB
DS
-DS
-DS
-Bo
+PO
+UP
+lu
DS
NI
oa
@@ -14533,9 +14490,9 @@ UU
iA
jA
DS
-iB
-DS
-DS
+lu
+UP
+PO
DS
sB
yz
@@ -14657,9 +14614,9 @@ yz
Ib
DS
DS
-DS
-DS
-lu
+PO
+PO
+Pf
DS
Qh
Iv
@@ -14675,8 +14632,8 @@ eF
Ms
Kf
DS
-lu
-DS
+ba
+PO
DS
DS
DS
@@ -14798,9 +14755,9 @@ yz
yz
HE
JB
-JB
-JB
-DS
+iB
+iB
+PO
lu
DS
RV
@@ -14818,7 +14775,7 @@ Ms
jI
DS
lu
-DS
+PO
Sz
Sz
Sz
@@ -14941,8 +14898,8 @@ yz
ac
JB
cs
-JB
-JB
+iB
+iB
Na
JB
Wa
@@ -14960,8 +14917,8 @@ Mv
wo
Sz
Un
-Sz
-Sz
+QU
+QU
rt
Sz
FO
@@ -15225,7 +15182,7 @@ yz
JB
ak
dd
-JB
+iB
hH
lR
JB
@@ -15245,7 +15202,7 @@ jA
Sz
uu
na
-Sz
+QU
kX
SJ
Sz
@@ -15650,12 +15607,12 @@ yz
yz
JB
JB
-JB
+iB
JB
Dx
-JB
-JB
-JB
+iB
+iB
+iB
ZM
ZM
ZM
@@ -15667,12 +15624,12 @@ ZM
ZM
ZM
ZM
-Sz
-Sz
-Sz
+QU
+QU
+QU
ix
-Sz
-Sz
+QU
+QU
Sz
Sz
yz
@@ -15792,29 +15749,29 @@ yz
yz
kO
Zo
-Zo
+Bo
ia
ip
mb
mb
-Zo
+Bo
+ZM
ZM
-us
ED
Ao
-us
+eQ
Oi
Sj
zg
ED
-us
+ZM
ZM
mJ
Ar
hP
Br
PS
-XG
+oc
XG
GJ
yz
@@ -15934,7 +15891,7 @@ yz
yz
Sr
Zo
-Zo
+Bo
ia
ip
WH
@@ -15956,7 +15913,7 @@ Zv
Zv
Br
PS
-XG
+oc
XG
qF
yz
@@ -16076,7 +16033,7 @@ yz
yz
ab
Zo
-Zo
+Bo
ef
iO
mj
@@ -16098,7 +16055,7 @@ Zv
xC
sW
PS
-XG
+oc
XG
aV
yz
@@ -16218,7 +16175,7 @@ yz
yz
Ye
Zo
-Zo
+Bo
eg
iR
mq
@@ -16653,11 +16610,11 @@ lv
ZM
hs
FD
-Jb
+La
La
sA
La
-Jb
+La
Rt
Af
ZM
@@ -16796,9 +16753,9 @@ wd
ZM
FJ
Jk
-ZM
+Jk
Pc
-ZM
+Jk
Jk
ZX
ZM
@@ -17212,7 +17169,7 @@ yz
yz
Sr
Zo
-Zo
+Bo
sr
Jd
WV
@@ -17354,20 +17311,20 @@ yz
yz
kO
Zo
-Zo
-Zo
+Bo
+Bo
iW
mI
-Zo
+Bo
tH
tH
Bq
FQ
-tH
-tH
-Yd
-Yd
+Jb
+Jb
Yd
+TR
+TR
Ay
Rz
Yd
@@ -17375,8 +17332,8 @@ ZT
yI
ZR
pz
-ZT
-ZT
+cU
+cU
ZT
eD
yz
@@ -17505,11 +17462,11 @@ tH
gx
SF
FR
-Jx
+FR
kf
Pl
Sx
-PJ
+On
FY
UH
HB
@@ -18632,11 +18589,11 @@ yz
yz
kO
Zo
-Zo
-Zo
+Bo
+Bo
jv
mZ
-Zo
+Bo
tH
tH
CI
@@ -18653,8 +18610,8 @@ ZT
PD
un
VJ
-ZT
-ZT
+cU
+cU
ZT
eD
yz
@@ -18779,7 +18736,7 @@ fj
ip
mV
pt
-yX
+Px
xG
CL
GR
@@ -18791,12 +18748,12 @@ WE
hV
WA
EB
-yX
+Px
qA
oQ
dx
Nd
-Pq
+fu
kx
TU
yz
@@ -19222,7 +19179,7 @@ OZ
Cq
tg
km
-Pq
+fu
kx
TU
yz
@@ -19342,12 +19299,12 @@ yz
yz
af
bM
-bM
-bM
+tS
+tS
jK
nn
pK
-bM
+tS
yj
WC
WC
@@ -19363,8 +19320,8 @@ uq
ga
po
Rv
-MZ
-MZ
+BY
+BY
MZ
Jg
yz
@@ -19484,12 +19441,12 @@ yz
yz
ag
bM
-bM
+tS
fx
jQ
np
pM
-bM
+tS
yj
WC
YW
@@ -19501,12 +19458,12 @@ HO
YW
WC
dk
-MZ
+BY
gf
TF
SB
hv
-MZ
+BY
MZ
aC
yz
@@ -19626,7 +19583,7 @@ yz
yz
ah
bM
-bM
+tS
fE
jQ
np
@@ -19648,7 +19605,7 @@ pU
TF
SB
wp
-MZ
+BY
MZ
ci
yz
@@ -19768,7 +19725,7 @@ yz
yz
ah
bM
-bM
+tS
fP
jU
nt
@@ -19790,7 +19747,7 @@ ij
LB
xU
GT
-MZ
+BY
MZ
ci
yz
@@ -19910,7 +19867,7 @@ yz
yz
ai
bM
-bM
+tS
fU
jY
nv
@@ -19932,7 +19889,7 @@ mh
LZ
LJ
hS
-MZ
+BY
MZ
Cr
yz
@@ -20052,7 +20009,7 @@ yz
yz
ah
bM
-bM
+tS
fZ
jQ
np
@@ -20074,7 +20031,7 @@ pb
bj
SB
MC
-MZ
+BY
MZ
ci
yz
@@ -20216,7 +20173,7 @@ MZ
zb
PG
MZ
-MZ
+BY
MZ
ci
yz
@@ -20347,7 +20304,7 @@ WC
Hu
GZ
MT
-MT
+Jx
MT
EG
dT
@@ -20358,7 +20315,7 @@ aQ
bj
SB
aQ
-MZ
+BY
MZ
Jg
yz
@@ -20500,7 +20457,7 @@ cO
bj
SB
Mb
-MZ
+BY
MZ
ci
yz
@@ -20642,7 +20599,7 @@ NJ
bj
SB
NJ
-MZ
+BY
MZ
ci
yz
@@ -20784,7 +20741,7 @@ wZ
gZ
CP
wZ
-MZ
+BY
MZ
Cr
yz
@@ -20926,7 +20883,7 @@ ij
nq
LJ
ij
-MZ
+BY
MZ
ci
yz
@@ -21063,12 +21020,12 @@ WC
WC
WC
zr
-MZ
+BY
mN
SB
SB
mN
-MZ
+BY
MZ
ci
yz
@@ -21205,12 +21162,12 @@ QE
QE
QE
Ff
-MZ
+BY
vb
SB
SB
vb
-MZ
+BY
MZ
aC
yz
@@ -21348,10 +21305,10 @@ CH
CH
yX
MZ
-MZ
+BY
sT
sT
-MZ
+BY
MZ
MZ
Jg
@@ -21491,8 +21448,8 @@ za
hW
MZ
MZ
-MZ
-MZ
+BY
+BY
MZ
MZ
Cr
From f2e0d9fbb5d91e945c13bf86a0d69a8aadb2931b Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Wed, 9 Sep 2020 13:03:03 +0100
Subject: [PATCH 12/13] mercenary cruiser
---
code/game/machinery/portable_turret_vr.dm | 13 +
maps/submaps/admin_use_vr/ert.dmm | 302 +-
maps/submaps/admin_use_vr/kk_mercship.dmm | 30623 ++++++++++++++++++++
maps/submaps/admin_use_vr/mercship.dm | 264 +
maps/tether/submaps/_tether_submaps.dm | 19 +-
5 files changed, 31067 insertions(+), 154 deletions(-)
create mode 100644 maps/submaps/admin_use_vr/kk_mercship.dmm
create mode 100644 maps/submaps/admin_use_vr/mercship.dm
diff --git a/code/game/machinery/portable_turret_vr.dm b/code/game/machinery/portable_turret_vr.dm
index c313ad27aa..4af3a78142 100644
--- a/code/game/machinery/portable_turret_vr.dm
+++ b/code/game/machinery/portable_turret_vr.dm
@@ -10,3 +10,16 @@
check_weapons = TRUE
auto_repair = TRUE
can_salvage = FALSE
+
+/obj/machinery/porta_turret/stationary/syndie/CIWS
+ name = "mercenary CIWS turret"
+ desc = "A ship-grade weapons turret designed for anti-fighter defense."
+ req_one_access = list(access_syndicate)
+ installation = /obj/item/weapon/gun/energy/lasercannon
+ health = 500
+ maxhealth = 500
+ enabled = TRUE
+ lethal = TRUE
+ check_weapons = TRUE
+ auto_repair = TRUE
+ can_salvage = FALSE
\ No newline at end of file
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 7e02df2f48..563024084f 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -173,13 +173,6 @@
},
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/eng_storage)
-"ba" = (
-/obj/machinery/alarm/alarms_hidden{
- dir = 1;
- pixel_y = -26
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hallways_aft)
"bg" = (
/turf/space,
/turf/space,
@@ -312,9 +305,13 @@
/obj/machinery/computer/operating,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
-"cU" = (
+"cP" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/bridge)
+"cS" = (
/turf/simulated/wall/shull,
-/area/ship/ert/med)
+/area/ship/ert/hallways_aft)
"cV" = (
/obj/machinery/vending/assist,
/turf/simulated/floor/tiled/techfloor,
@@ -402,6 +399,9 @@
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
+"dq" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/med_surg)
"dr" = (
/obj/structure/table/rack/steel,
/obj/item/toy/plushie/squid/blue{
@@ -614,10 +614,6 @@
/obj/item/weapon/storage/box/cdeathalarm_kit,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/barracks)
-"eQ" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/bridge)
"eX" = (
/obj/structure/table/steel_reinforced,
/obj/machinery/atmospherics/unary/vent_scrubber/on,
@@ -654,10 +650,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/dock_star)
-"fu" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/med)
"fx" = (
/obj/structure/table/steel_reinforced,
/obj/item/rig_module/rescue_pharm,
@@ -1332,6 +1324,9 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/atmos)
+"kW" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/dock_star)
"kX" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 1
@@ -1409,6 +1404,13 @@
"lL" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_port)
+"lO" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways_aft)
"lR" = (
/obj/machinery/firealarm/alarms_hidden{
dir = 1;
@@ -1861,9 +1863,6 @@
/obj/item/device/survivalcapsule,
/turf/simulated/floor/wood,
/area/ship/ert/commander)
-"oc" = (
-/turf/simulated/wall/shull,
-/area/ship/ert/eng_storage)
"og" = (
/obj/machinery/door/firedoor/glass,
/obj/structure/grille,
@@ -1879,6 +1878,15 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
+"oi" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/hangar)
+"oj" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/ert/hallways_aft)
"ok" = (
/obj/machinery/alarm/alarms_hidden{
pixel_y = 26
@@ -2205,6 +2213,9 @@
/obj/machinery/body_scanconsole,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med_surg)
+"pV" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/atmos)
"pW" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/gun/energy/plasmastun,
@@ -2346,6 +2357,10 @@
/obj/effect/floor_decal/industrial/outline/grey,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
+"qR" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/atmos)
"qS" = (
/obj/structure/table/rack/steel,
/obj/item/mecha_parts/mecha_equipment/tool/jetpack,
@@ -2437,6 +2452,10 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engine)
+"rM" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/hallways_aft)
"rO" = (
/obj/machinery/shipsensors{
dir = 4
@@ -2724,9 +2743,6 @@
},
/turf/simulated/floor/plating,
/area/ship/ert/engine)
-"tS" = (
-/turf/simulated/wall/shull,
-/area/ship/ert/mech_bay)
"tV" = (
/obj/effect/floor_decal/industrial/warning{
dir = 8
@@ -2964,6 +2980,9 @@
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/teleporter)
+"vX" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/engineering)
"wd" = (
/obj/structure/sign/department/conference_room{
name = "OUTFITTING"
@@ -3437,6 +3456,9 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
+"zc" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/eng_storage)
"zg" = (
/obj/item/modular_computer/console/preset/engineering{
dir = 4
@@ -3807,9 +3829,6 @@
"BW" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
-"BY" = (
-/turf/simulated/wall/shull,
-/area/ship/ert/med_surg)
"Ce" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -3858,6 +3877,9 @@
/obj/machinery/porta_turret/industrial/military,
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/med_surg)
+"Cx" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/mech_bay)
"CH" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/fans/hardlight,
@@ -3994,9 +4016,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_port)
-"DG" = (
-/turf/simulated/wall/shull,
-/area/ship/ert/engineering)
"DJ" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -4063,9 +4082,6 @@
"DS" = (
/turf/simulated/wall/rshull,
/area/ship/ert/hallways_aft)
-"DT" = (
-/turf/simulated/wall/shull,
-/area/ship/ert/atmos)
"Ec" = (
/obj/structure/table/rack/steel,
/obj/item/weapon/storage/backpack/ert/security,
@@ -5091,6 +5107,9 @@
/obj/effect/floor_decal/industrial/outline/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/eng_storage)
+"KI" = (
+/turf/simulated/wall/shull,
+/area/ship/ert/med)
"KJ" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
@@ -5284,10 +5303,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med_surg)
-"LQ" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/atmos)
"LR" = (
/obj/machinery/door/airlock/external,
/obj/effect/map_helper/airlock/door/ext_door,
@@ -5936,12 +5951,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/shuttle/ert_ship_boat)
-"Pf" = (
-/obj/machinery/alarm/alarms_hidden{
- pixel_y = 26
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hallways_aft)
"Pl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/full,
@@ -5963,9 +5972,10 @@
"Pq" = (
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
-"Px" = (
-/turf/simulated/wall/shull,
-/area/ship/ert/hangar)
+"PA" = (
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/ert/med)
"PC" = (
/obj/machinery/door/blast/regular{
dir = 4;
@@ -6008,9 +6018,6 @@
/obj/structure/cable/yellow,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engineering)
-"PO" = (
-/turf/simulated/wall/shull,
-/area/ship/ert/hallways_aft)
"PS" = (
/obj/machinery/shield_capacitor,
/obj/effect/floor_decal/industrial/outline/blue,
@@ -6135,9 +6142,6 @@
"QT" = (
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
-"QU" = (
-/turf/simulated/wall/shull,
-/area/ship/ert/dock_star)
"QX" = (
/obj/structure/window/reinforced,
/obj/machinery/computer/shuttle_control/explore/ert_ship_boat{
@@ -6575,10 +6579,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/teleporter)
-"UP" = (
-/obj/machinery/recharge_station,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/ert/hallways_aft)
"UT" = (
/obj/machinery/door/airlock/glass_security{
req_one_access = list(103)
@@ -13337,17 +13337,17 @@ yz
yz
bO
kJ
-DT
+pV
kP
kP
rS
gA
gA
CT
-LQ
-DT
+qR
+pV
wO
-DG
+vX
zh
WS
lB
@@ -13479,7 +13479,7 @@ yz
yz
bR
kJ
-DT
+pV
kS
os
os
@@ -13487,14 +13487,14 @@ vg
bp
Dn
gn
-DT
+pV
NR
-DG
+vX
ry
Xg
Sc
Nb
-DG
+vX
XW
XW
XW
@@ -13621,7 +13621,7 @@ yz
yz
bO
kJ
-DT
+pV
kT
gA
gA
@@ -13763,7 +13763,7 @@ yz
yz
bW
kJ
-DT
+pV
kY
oy
oy
@@ -13771,9 +13771,9 @@ vg
bp
DK
Io
-DT
+pV
NZ
-DG
+vX
XS
Xu
ZI
@@ -13905,7 +13905,7 @@ yz
yz
wr
kJ
-DT
+pV
ls
ls
ls
@@ -13913,14 +13913,14 @@ gA
gA
DQ
Ip
-DT
+pV
NZ
-DG
+vX
hN
PH
ZI
My
-DG
+vX
XW
XW
XW
@@ -14047,25 +14047,25 @@ yz
xx
DS
DS
-DT
-DT
-DT
-DT
-DT
-DT
-DT
-DT
-DT
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
+pV
Oa
-DG
-DG
-DG
-DG
-DG
-DG
-DG
-DG
-DG
+vX
+vX
+vX
+vX
+vX
+vX
+vX
+vX
+vX
XW
XW
cJ
@@ -14472,8 +14472,8 @@ yz
yz
sB
DS
-PO
-UP
+cS
+rM
lu
DS
NI
@@ -14491,8 +14491,8 @@ iA
jA
DS
lu
-UP
-PO
+rM
+cS
DS
sB
yz
@@ -14614,9 +14614,9 @@ yz
Ib
DS
DS
-PO
-PO
-Pf
+cS
+cS
+oj
DS
Qh
Iv
@@ -14632,8 +14632,8 @@ eF
Ms
Kf
DS
-ba
-PO
+lO
+cS
DS
DS
DS
@@ -14757,7 +14757,7 @@ HE
JB
iB
iB
-PO
+cS
lu
DS
RV
@@ -14775,7 +14775,7 @@ Ms
jI
DS
lu
-PO
+cS
Sz
Sz
Sz
@@ -14917,8 +14917,8 @@ Mv
wo
Sz
Un
-QU
-QU
+kW
+kW
rt
Sz
FO
@@ -15202,7 +15202,7 @@ jA
Sz
uu
na
-QU
+kW
kX
SJ
Sz
@@ -15624,12 +15624,12 @@ ZM
ZM
ZM
ZM
-QU
-QU
-QU
+kW
+kW
+kW
ix
-QU
-QU
+kW
+kW
Sz
Sz
yz
@@ -15759,7 +15759,7 @@ ZM
ZM
ED
Ao
-eQ
+cP
Oi
Sj
zg
@@ -15771,7 +15771,7 @@ Ar
hP
Br
PS
-oc
+zc
XG
GJ
yz
@@ -15913,7 +15913,7 @@ Zv
Zv
Br
PS
-oc
+zc
XG
qF
yz
@@ -16055,7 +16055,7 @@ Zv
xC
sW
PS
-oc
+zc
XG
aV
yz
@@ -17332,8 +17332,8 @@ ZT
yI
ZR
pz
-cU
-cU
+KI
+KI
ZT
eD
yz
@@ -18610,8 +18610,8 @@ ZT
PD
un
VJ
-cU
-cU
+KI
+KI
ZT
eD
yz
@@ -18736,7 +18736,7 @@ fj
ip
mV
pt
-Px
+oi
xG
CL
GR
@@ -18748,12 +18748,12 @@ WE
hV
WA
EB
-Px
+oi
qA
oQ
dx
Nd
-fu
+PA
kx
TU
yz
@@ -19179,7 +19179,7 @@ OZ
Cq
tg
km
-fu
+PA
kx
TU
yz
@@ -19299,12 +19299,12 @@ yz
yz
af
bM
-tS
-tS
+Cx
+Cx
jK
nn
pK
-tS
+Cx
yj
WC
WC
@@ -19320,8 +19320,8 @@ uq
ga
po
Rv
-BY
-BY
+dq
+dq
MZ
Jg
yz
@@ -19441,12 +19441,12 @@ yz
yz
ag
bM
-tS
+Cx
fx
jQ
np
pM
-tS
+Cx
yj
WC
YW
@@ -19458,12 +19458,12 @@ HO
YW
WC
dk
-BY
+dq
gf
TF
SB
hv
-BY
+dq
MZ
aC
yz
@@ -19583,7 +19583,7 @@ yz
yz
ah
bM
-tS
+Cx
fE
jQ
np
@@ -19605,7 +19605,7 @@ pU
TF
SB
wp
-BY
+dq
MZ
ci
yz
@@ -19725,7 +19725,7 @@ yz
yz
ah
bM
-tS
+Cx
fP
jU
nt
@@ -19747,7 +19747,7 @@ ij
LB
xU
GT
-BY
+dq
MZ
ci
yz
@@ -19867,7 +19867,7 @@ yz
yz
ai
bM
-tS
+Cx
fU
jY
nv
@@ -19889,7 +19889,7 @@ mh
LZ
LJ
hS
-BY
+dq
MZ
Cr
yz
@@ -20009,7 +20009,7 @@ yz
yz
ah
bM
-tS
+Cx
fZ
jQ
np
@@ -20031,7 +20031,7 @@ pb
bj
SB
MC
-BY
+dq
MZ
ci
yz
@@ -20173,7 +20173,7 @@ MZ
zb
PG
MZ
-BY
+dq
MZ
ci
yz
@@ -20315,7 +20315,7 @@ aQ
bj
SB
aQ
-BY
+dq
MZ
Jg
yz
@@ -20457,7 +20457,7 @@ cO
bj
SB
Mb
-BY
+dq
MZ
ci
yz
@@ -20599,7 +20599,7 @@ NJ
bj
SB
NJ
-BY
+dq
MZ
ci
yz
@@ -20741,7 +20741,7 @@ wZ
gZ
CP
wZ
-BY
+dq
MZ
Cr
yz
@@ -20883,7 +20883,7 @@ ij
nq
LJ
ij
-BY
+dq
MZ
ci
yz
@@ -21020,12 +21020,12 @@ WC
WC
WC
zr
-BY
+dq
mN
SB
SB
mN
-BY
+dq
MZ
ci
yz
@@ -21162,12 +21162,12 @@ QE
QE
QE
Ff
-BY
+dq
vb
SB
SB
vb
-BY
+dq
MZ
aC
yz
@@ -21305,10 +21305,10 @@ CH
CH
yX
MZ
-BY
+dq
sT
sT
-BY
+dq
MZ
MZ
Jg
@@ -21448,8 +21448,8 @@ za
hW
MZ
MZ
-BY
-BY
+dq
+dq
MZ
MZ
Cr
diff --git a/maps/submaps/admin_use_vr/kk_mercship.dmm b/maps/submaps/admin_use_vr/kk_mercship.dmm
new file mode 100644
index 0000000000..0a8492edd4
--- /dev/null
+++ b/maps/submaps/admin_use_vr/kk_mercship.dmm
@@ -0,0 +1,30623 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/obj/effect/overmap/visitable/ship/manta_ship,
+/turf/space,
+/area/space)
+"ab" = (
+/obj/effect/shuttle_landmark/premade/manta_ship_near_port,
+/turf/space,
+/area/space)
+"af" = (
+/obj/structure/flora/pottedplant/mysterious,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"ag" = (
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hangar)
+"aj" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/belt/security{
+ name = "black belt"
+ },
+/obj/item/weapon/storage/belt/security{
+ name = "black belt"
+ },
+/obj/item/weapon/storage/belt/security{
+ name = "black belt"
+ },
+/obj/item/weapon/storage/belt/security{
+ name = "black belt"
+ },
+/obj/item/weapon/storage/belt/security{
+ name = "black belt"
+ },
+/obj/item/weapon/storage/belt/security{
+ name = "black belt"
+ },
+/obj/item/weapon/storage/belt/security{
+ name = "black belt"
+ },
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical,
+/obj/item/weapon/storage/belt/security/tactical/bandolier,
+/obj/item/weapon/storage/belt/security/tactical/bandolier,
+/obj/item/weapon/storage/belt/security/tactical/bandolier,
+/obj/item/weapon/storage/belt/security/tactical/bandolier,
+/obj/item/weapon/storage/belt/security/tactical/bandolier,
+/obj/item/weapon/storage/belt/security/tactical/bandolier,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"ak" = (
+/obj/structure/cable/orange{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 8;
+ name = "Merc APC - West";
+ pixel_x = -24
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"al" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"am" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"as" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hangar)
+"au" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"aB" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"aD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "Merc_Rear_Blast";
+ name = "Blast Shield"
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/metal{
+ req_one_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"aE" = (
+/turf/simulated/floor/reinforced,
+/area/ship/manta/armoury_st)
+"aI" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"aJ" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"aM" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"aN" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"aQ" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/shuttle/manta_ship_boat)
+"aS" = (
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"aU" = (
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/item/weapon/soap/syndie,
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/curtain/open/shower,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ship/manta/barracks)
+"aX" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"aY" = (
+/obj/item/weapon/storage/box/syndie_kit/imp_uplink,
+/obj/item/weapon/storage/box/syndie_kit/imp_uplink,
+/obj/item/weapon/storage/box/syndie_kit/imp_uplink,
+/obj/item/weapon/storage/box/syndie_kit/imp_uplink,
+/obj/item/weapon/storage/box/syndie_kit/imp_uplink,
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"aZ" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/sizegun,
+/obj/item/weapon/gun/energy/sizegun,
+/obj/item/weapon/gun/energy/sizegun,
+/obj/item/weapon/gun/energy/sizegun,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"bc" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"bg" = (
+/turf/space,
+/turf/space,
+/area/space)
+"bh" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"bl" = (
+/obj/structure/bed/pod,
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/obj/item/weapon/bedsheet/hos,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_2)
+"bm" = (
+/obj/structure/bed/pod,
+/obj/structure/closet/walllocker/emerglocker{
+ pixel_y = 32
+ },
+/obj/structure/curtain/open/bed,
+/obj/item/weapon/bedsheet/pirate,
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"bn" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"bo" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"bp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"br" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"bt" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"bw" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"bx" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/appliance/cooker/fryer,
+/obj/effect/floor_decal/corner/black,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"bA" = (
+/obj/structure/closet/cabinet{
+ name = "Clothing Storage"
+ },
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/suit/storage/hooded/wintercoat,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/shoes/boots/winter,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/item/clothing/mask/balaclava,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"bG" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/armoury_st)
+"bI" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/syndie_kit/combat_armor,
+/obj/item/weapon/storage/box/syndie_kit/combat_armor,
+/obj/item/weapon/storage/box/syndie_kit/combat_armor,
+/obj/item/weapon/storage/box/syndie_kit/combat_armor,
+/obj/item/weapon/storage/box/syndie_kit/combat_armor,
+/obj/item/weapon/storage/box/syndie_kit/combat_armor,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"bL" = (
+/obj/structure/table/rack,
+/obj/item/borg/sight/thermal,
+/obj/item/borg/sight/thermal,
+/obj/item/borg/sight/thermal,
+/obj/item/borg/sight/thermal,
+/obj/item/borg/sight/thermal,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"bP" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"bR" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"bT" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hangar)
+"bY" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/syndie_kit/demolitions_super_heavy{
+ name = "Super Heavy Demolitions kit"
+ },
+/obj/item/weapon/storage/box/syndie_kit/demolitions_heavy{
+ name = "Heavy Demolitions kit"
+ },
+/obj/item/weapon/storage/box/syndie_kit/demolitions_heavy{
+ name = "Heavy Demolitions kit"
+ },
+/obj/item/weapon/storage/box/syndie_kit/demolitions{
+ name = "Demolitions kit"
+ },
+/obj/item/weapon/storage/box/syndie_kit/demolitions{
+ name = "Demolitions kit"
+ },
+/obj/item/weapon/storage/box/syndie_kit/demolitions{
+ name = "Demolitions kit"
+ },
+/obj/item/weapon/storage/box/syndie_kit/demolitions{
+ name = "Demolitions kit"
+ },
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"bZ" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/syndie_kit/spy,
+/obj/item/weapon/storage/box/syndie_kit/spy,
+/obj/item/weapon/storage/box/syndie_kit/spy,
+/obj/item/weapon/storage/box/syndie_kit/spy,
+/obj/item/weapon/storage/box/syndie_kit/spy,
+/obj/item/device/radio_jammer,
+/obj/item/device/radio_jammer,
+/obj/item/device/radio_jammer,
+/obj/item/device/radio_jammer,
+/obj/item/device/radio_jammer,
+/obj/item/device/chameleon,
+/obj/item/device/chameleon,
+/obj/item/device/chameleon,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"cb" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/dock_port)
+"ce" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hangar)
+"ch" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/holding)
+"cl" = (
+/obj/effect/shuttle_landmark/premade/manta_ship_near_aft,
+/turf/space,
+/area/space)
+"cn" = (
+/obj/structure/table/rack,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/item/weapon/material/knife/tacknife/combatknife,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"co" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"cr" = (
+/turf/simulated/floor/reinforced,
+/area/ship/manta/med)
+"ct" = (
+/obj/structure/table/rack,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/item/device/radio,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"cx" = (
+/obj/item/modular_computer/console/preset/mercenary,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"cA" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_star)
+"cB" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 8
+ },
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
+"cG" = (
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "Merc APC - North";
+ pixel_y = 24
+ },
+/obj/structure/table/steel_reinforced,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"cH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"cI" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/med)
+"cK" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"cM" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"cP" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "Merc APC - North";
+ pixel_y = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"cQ" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/weapon/tool/crowbar/red,
+/obj/item/device/flashlight/maglight,
+/obj/item/device/flashlight/maglight,
+/obj/item/device/flashlight/maglight,
+/obj/item/device/flashlight/maglight,
+/obj/item/device/flashlight/maglight,
+/obj/item/device/flashlight/maglight,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"cS" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced,
+/area/ship/manta/armoury_st)
+"cW" = (
+/obj/structure/undies_wardrobe,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"cX" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"cY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/vending/nifsoft_shop{
+ categories = 111;
+ emagged = 1;
+ name = "Hacked NIFSoft Shop"
+ },
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"cZ" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"da" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"dc" = (
+/obj/structure/bed/pod,
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/obj/item/weapon/bedsheet/hos,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_2)
+"dj" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"dk" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/blast/regular{
+ dir = 4;
+ id = "Von_Braun_Hangar";
+ name = "Hangar Blast Door"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hangar)
+"dl" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/med)
+"dn" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"do" = (
+/obj/structure/bed/chair/bay/comfy/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"dp" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_1)
+"dr" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"dt" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/nitrogen/engine_setup,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"dC" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"dG" = (
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"dI" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced,
+/area/ship/manta/med)
+"dJ" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"dO" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/mech_bay)
+"dP" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"dT" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"dW" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"dX" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"dY" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/item/weapon/paper/manta_shields,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"dZ" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"ec" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hangar)
+"ee" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"ej" = (
+/obj/structure/bed/pod,
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/obj/item/weapon/bedsheet/hos,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_1)
+"el" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"em" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"ep" = (
+/obj/machinery/chemical_dispenser/full,
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"er" = (
+/obj/effect/floor_decal/techfloor/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"et" = (
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"ex" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"eB" = (
+/obj/machinery/chemical_dispenser/ert,
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"eF" = (
+/obj/machinery/chemical_dispenser/biochemistry/full,
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"eG" = (
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hallways_port)
+"eH" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hallways_port)
+"eJ" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/merc/empty,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"eN" = (
+/obj/structure/table/rack,
+/obj/item/weapon/hand_tele,
+/obj/item/device/perfect_tele,
+/obj/item/device/binoculars,
+/obj/item/device/survivalcapsule,
+/obj/item/device/survivalcapsule,
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"eO" = (
+/obj/machinery/vending/food{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"eR" = (
+/obj/structure/table/rack,
+/obj/item/weapon/rig/merc/empty,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"eX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"fa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"fg" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"fh" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Mercenary Cruiser Teleporter Room";
+ tele_network = "syndicate"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"fj" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"fr" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"fw" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"fx" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/computer/ship/helm{
+ req_one_access = list(150)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"fy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"fz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"fC" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/pointdefense_control,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"fE" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/steel_reinforced,
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/item/weapon/paper/manta_approach_tactics,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"fI" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"fK" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/revolver/consul,
+/obj/item/ammo_magazine/s44,
+/obj/item/ammo_magazine/s44,
+/obj/item/ammo_magazine/s44,
+/obj/item/ammo_magazine/s44,
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"fL" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"fN" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"fO" = (
+/obj/machinery/atmospherics/unary/engine/bigger{
+ dir = 1
+ },
+/turf/space,
+/area/ship/manta/engine)
+"fP" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/storage/box/syringes,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"fQ" = (
+/obj/structure/bed/chair/bay/comfy/red{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"fR" = (
+/obj/machinery/teleport/station,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"fU" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"fV" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"fZ" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced,
+/area/ship/manta/recreation)
+"gd" = (
+/obj/structure/table/standard,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/light/no_nightshift,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"ge" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/barracks/bed_1)
+"gf" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"gh" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"gk" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"gl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"gm" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"gB" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"gC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"gF" = (
+/obj/machinery/shieldwallgen{
+ anchored = 1;
+ name = "secured shield generator";
+ req_access = list(150);
+ state = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"gG" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"gI" = (
+/obj/structure/sign/department/telecoms{
+ name = "TELEPORTER"
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/bridge)
+"gJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"gL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"gN" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 4
+ },
+/obj/structure/railing/grey,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"gP" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"gR" = (
+/obj/structure/bed/chair/bay/comfy/red{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"gW" = (
+/obj/machinery/computer/ship/engines{
+ dir = 8;
+ req_one_access = list(150)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"gX" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/steel_reinforced,
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"gZ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"hc" = (
+/obj/structure/medical_stand,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"hd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"he" = (
+/obj/machinery/vending/medical{
+ req_access = null
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"hj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"hk" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 8
+ },
+/obj/structure/railing/grey,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"hq" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hallways_port)
+"hs" = (
+/obj/structure/bed/chair/bay/comfy/red{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"ht" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/hallways_port)
+"hu" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"hv" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ req_one_access = list(150)
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"hw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"hx" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"hy" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"hz" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/box/trackimp,
+/obj/item/weapon/storage/box/cdeathalarm_kit,
+/obj/item/weapon/stamp/chameleon,
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"hB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"hD" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"hH" = (
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"hL" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ship/manta/barracks)
+"hN" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_star)
+"hO" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"hS" = (
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_star)
+"hT" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"hU" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/automatic/c20r,
+/obj/item/weapon/gun/projectile/automatic/c20r,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"hW" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_star)
+"hY" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"ia" = (
+/obj/structure/table/steel_reinforced,
+/obj/machinery/button/flasher,
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"ic" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"ih" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/silenced,
+/obj/item/weapon/gun/projectile/silenced,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45/ap,
+/obj/item/ammo_magazine/m45/hp,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"ik" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/device/multitool,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"il" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"io" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/signaler{
+ pixel_y = 2
+ },
+/obj/item/device/assembly/signaler{
+ pixel_y = 2
+ },
+/obj/item/device/assembly/signaler{
+ pixel_y = 2
+ },
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/gloves/yellow,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/item/clothing/glasses/night,
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"ip" = (
+/obj/structure/table/rack,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"it" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"iu" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/appliance/cooker/oven,
+/obj/effect/floor_decal/corner/black,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"iv" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"iw" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"iA" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
+/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
+/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
+/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
+/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
+/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"iB" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"iG" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/nitrogen/engine_setup,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"iI" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Teleporter Chamber";
+ req_one_access = list(150)
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"iK" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"iQ" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "Merc APC - East";
+ pixel_x = 24
+ },
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"iR" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"iS" = (
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ship/manta/barracks)
+"iU" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/oxygen/red,
+/obj/item/clothing/suit/space/void/merc,
+/obj/item/clothing/mask/gas/syndicate,
+/obj/item/clothing/head/helmet/space/void/merc,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"iW" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 11
+ },
+/obj/structure/mirror{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ship/manta/barracks)
+"iX" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"iZ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"jc" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"jd" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/shuttle/manta_ship_boat)
+"je" = (
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
+"jg" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "Merc APC - North";
+ pixel_y = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"jh" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/recreation)
+"jl" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ dir = 4;
+ id = "Merc_Shuttle_Fore";
+ layer = 4
+ },
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/window/titanium,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"jo" = (
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/flashbangs,
+/obj/item/weapon/storage/box/smokes,
+/obj/item/weapon/storage/box/frags,
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"js" = (
+/obj/item/weapon/tool/screwdriver,
+/obj/effect/spawner/newbomb/timer/syndicate,
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"jv" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"jx" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"jz" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"jB" = (
+/obj/effect/floor_decal/corner/black,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"jD" = (
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"jE" = (
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ dir = 4;
+ id = "Merc_Shuttle_Fore";
+ layer = 4
+ },
+/obj/machinery/shield_diffuser,
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"jF" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"jI" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"jP" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"jT" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"jW" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"jX" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"jZ" = (
+/obj/machinery/chem_master,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"ka" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"kh" = (
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"ki" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"kl" = (
+/obj/machinery/computer/operating,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"km" = (
+/obj/structure/bed/chair/office/dark{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"ky" = (
+/obj/machinery/optable,
+/obj/machinery/oxygen_pump/anesthetic{
+ dir = 8;
+ pixel_y = 27
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"kz" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/appliance/cooker/grill,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"kF" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/weapon/storage/firstaid/surgery,
+/obj/item/stack/nanopaste/advanced,
+/obj/item/weapon/surgical/bone_clamp,
+/obj/item/weapon/surgical/scalpel/manager,
+/obj/item/weapon/surgical/circular_saw/manager,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"kG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"kJ" = (
+/obj/machinery/vending/food{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"kL" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"kO" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hallways_star)
+"kP" = (
+/obj/machinery/shipsensors{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/med)
+"kT" = (
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_port)
+"kW" = (
+/turf/simulated/floor/reinforced,
+/area/ship/manta/recreation)
+"le" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"lg" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ id_tag = "merc_port";
+ master_tag = "merc_master";
+ name = "Port Docking Control";
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"li" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"lj" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/automatic/c20r,
+/obj/item/weapon/gun/projectile/automatic/c20r,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/item/ammo_magazine/m10mm,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"lk" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_port)
+"lm" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/recreation)
+"lo" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/silenced,
+/obj/item/weapon/gun/projectile/silenced,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45/ap,
+/obj/item/ammo_magazine/m45/hp,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"lq" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/recreation)
+"lw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/effect/catwalk_plated/dark,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"lz" = (
+/obj/structure/table/rack,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/item/device/suit_cooling_unit,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"lA" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"lG" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"lH" = (
+/obj/machinery/telecomms/allinone{
+ intercept = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"lI" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"lM" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_one_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"lO" = (
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/effect/floor_decal/techfloor,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"lP" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/oxygen/red,
+/obj/item/clothing/suit/space/void/merc,
+/obj/item/clothing/mask/gas/syndicate,
+/obj/item/clothing/head/helmet/space/void/merc,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"lR" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"lV" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"lW" = (
+/obj/structure/bed/pod,
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/obj/item/weapon/bedsheet/hos,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "Merc APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_2)
+"lX" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 8;
+ id = "Merc_Shuttle_Fore";
+ name = "Boarding Shuttle Fore Ramp";
+ pixel_x = -24;
+ req_access = list(150)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"lY" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/box/donut,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"lZ" = (
+/obj/effect/shuttle_landmark/shuttle_initializer/manta_ship_boat,
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/overmap/visitable/ship/landable/manta_ship_boat{
+ cloaked = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"mb" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/space,
+/area/ship/manta/radiator_port)
+"me" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"mo" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"mp" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"ms" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "Merc_Shuttle_Fore";
+ name = "Boarding Shuttle Fore Ramp";
+ pixel_x = 24;
+ req_access = list(150)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"my" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"mC" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/device/defib_kit,
+/obj/item/device/defib_kit,
+/obj/item/device/healthanalyzer,
+/obj/item/device/healthanalyzer,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"mD" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"mG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"mL" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"mO" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 8
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"mT" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/hallways_star)
+"mW" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"mY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"mZ" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_port)
+"na" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"nc" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"nf" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"ng" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"nh" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"nl" = (
+/obj/machinery/atmospherics/binary/pump/on,
+/obj/effect/catwalk_plated/dark,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "Merc APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"np" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"nq" = (
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"nr" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_star)
+"nu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"ny" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ pixel_y = 32;
+ req_access = list(150)
+ },
+/obj/item/stack/medical/splint,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/belt/medical/emt,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/device/defib_kit/compact/combat/loaded,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"nz" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"nA" = (
+/obj/machinery/cryopod/manta_ship,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"nC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"nH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"nI" = (
+/turf/simulated/floor/reinforced,
+/area/ship/manta/mech_bay)
+"nJ" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/mech_bay)
+"nL" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_port)
+"nP" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"nS" = (
+/obj/machinery/washing_machine,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ship/manta/barracks)
+"nT" = (
+/obj/machinery/button/flasher{
+ pixel_x = -9;
+ pixel_y = -22
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "manta_cells_privacy";
+ name = "Privacy Shutter Controls";
+ pixel_x = 9;
+ pixel_y = -24;
+ req_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"nY" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"oa" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/ship/manta/radiator_star)
+"ob" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-10"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"oc" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/mech_bay)
+"oe" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_port)
+"og" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/radiator_star)
+"oi" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"om" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_port)
+"op" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_port)
+"or" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
+"os" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_port)
+"ot" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"ou" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"ov" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "Merc APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_port)
+"ow" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"oy" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"oD" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"oE" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"oF" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"oN" = (
+/obj/effect/shuttle_landmark/premade/manta_ship_near_fore,
+/turf/space,
+/area/space)
+"oO" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/projectile/silenced,
+/obj/item/weapon/gun/projectile/silenced,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45,
+/obj/item/ammo_magazine/m45/ap,
+/obj/item/ammo_magazine/m45/hp,
+/obj/item/ammo_magazine/m45/rubber,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"oP" = (
+/obj/machinery/suit_cycler/syndicate{
+ locked = 0
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"oS" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"oT" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"oU" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ req_one_access = list(150)
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"oW" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_star)
+"oY" = (
+/obj/machinery/scale,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"oZ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"pf" = (
+/obj/effect/landmark/map_data/manta_ship,
+/turf/space,
+/area/space)
+"pi" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/dock_star)
+"pn" = (
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hallways_star)
+"pt" = (
+/obj/structure/catwalk,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"pw" = (
+/obj/machinery/atmospherics/unary/heat_exchanger,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"py" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/barracks/bed_2)
+"pA" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"pD" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"pE" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"pH" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"pM" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/radiator_star)
+"pN" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"pO" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"pS" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"pV" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "Merc APC - East";
+ pixel_x = 24
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"pW" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"pX" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"qn" = (
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"qt" = (
+/obj/structure/table/steel_reinforced,
+/obj/fiftyspawner/uranium,
+/obj/fiftyspawner/uranium,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"qu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"qv" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/recharge_station,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"qw" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"qy" = (
+/obj/structure/closet/secure_closet/medical_wall{
+ pixel_x = -32;
+ req_access = list(150)
+ },
+/obj/item/stack/medical/splint,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/stack/medical/advanced/bruise_pack,
+/obj/item/stack/medical/advanced/ointment,
+/obj/item/stack/medical/advanced/ointment,
+/obj/item/stack/medical/advanced/ointment,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"qz" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"qA" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"qB" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/space,
+/area/ship/manta/radiator_port)
+"qH" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"qJ" = (
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"qK" = (
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/structure/flora/pottedplant/crystal,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"qM" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"qP" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"qQ" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_star)
+"qR" = (
+/obj/machinery/bodyscanner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"qS" = (
+/obj/machinery/body_scanconsole,
+/obj/effect/floor_decal/techfloor,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"qT" = (
+/obj/machinery/sleep_console{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"qU" = (
+/obj/machinery/sleeper{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"rb" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"rl" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "Merc APC - South";
+ pixel_y = -24
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"rm" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/space,
+/area/ship/manta/radiator_port)
+"rp" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/radiator_port)
+"rq" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"rr" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/radiator_port)
+"rs" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/turf/simulated/floor/airless,
+/area/ship/manta/radiator_port)
+"rt" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"ry" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"rA" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/radiator_port)
+"rC" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"rD" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"rE" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"rF" = (
+/obj/machinery/cryopod/manta_ship,
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"rH" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"rJ" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/dock_star)
+"rK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"rM" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/med)
+"rQ" = (
+/obj/structure/bed/chair/bay/comfy/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"rR" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/holding)
+"rS" = (
+/turf/simulated/floor/reinforced,
+/area/ship/manta/holding)
+"rT" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced,
+/area/ship/manta/mech_bay)
+"rU" = (
+/obj/machinery/door/airlock/engineering{
+ req_one_access = list(150)
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_port)
+"rV" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"rX" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"sa" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"se" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"sg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"sk" = (
+/obj/machinery/suit_cycler/vintage/omni,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"sn" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 4
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"sq" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"ss" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 5
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_star)
+"su" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"sx" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"sy" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"sz" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_one_access = list(150)
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"sG" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"sJ" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_star)
+"sM" = (
+/obj/machinery/atmospherics/portables_connector,
+/obj/machinery/portable_atmospherics/canister/nitrogen/engine_setup,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"sN" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/bridge)
+"sS" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"sV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"sX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/plastihull,
+/area/ship/manta/engineering)
+"sY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/med)
+"sZ" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced,
+/area/ship/manta/holding)
+"th" = (
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/structure/flora/pottedplant/fern,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"tj" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"tk" = (
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/item/weapon/reagent_containers/food/snacks/sandwich,
+/obj/item/weapon/reagent_containers/food/snacks/sandwich,
+/obj/item/weapon/reagent_containers/food/snacks/sandwich,
+/obj/item/weapon/reagent_containers/food/snacks/sandwich,
+/obj/item/weapon/reagent_containers/food/snacks/sandwich,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"tm" = (
+/obj/effect/floor_decal/techfloor/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"tp" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"ts" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/hallways_star)
+"tt" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"tx" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"tE" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"tF" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"tG" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"tH" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"tJ" = (
+/obj/structure/closet/wardrobe/merc,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"tK" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"tL" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"tN" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"tQ" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"tV" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"tW" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"ua" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"ub" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"uc" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"ud" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Merc_Shuttle_Boarding";
+ opacity = 0
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Merc_Shuttle_Boarding";
+ name = "Boarding Shuttle Access";
+ pixel_y = 24;
+ req_access = list(150)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"uh" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"ui" = (
+/obj/item/device/perfect_tele_beacon/stationary{
+ tele_name = "Mercenary Boarding Craft";
+ tele_network = "syndicate"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"uj" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/structure/fuel_port{
+ pixel_y = -29
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"uk" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/plastitanium/full,
+/obj/structure/window/plastitanium,
+/obj/structure/window/plastitanium{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"up" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"ur" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"uu" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Merc_Shuttle_Boarding";
+ opacity = 0
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "ERT_Shuttle_Rear";
+ name = "Boarding Shuttle Access";
+ pixel_y = 24;
+ req_access = list(150)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"ux" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/simulated/floor/reinforced,
+/area/shuttle/manta_ship_boat)
+"uy" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"uz" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/plastihull,
+/area/ship/manta/radiator_port)
+"uC" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"uE" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"uH" = (
+/obj/structure/table/woodentable,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"uJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"uK" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"uM" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"uN" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"uQ" = (
+/obj/structure/sign/department/medbay{
+ pixel_y = 32
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"uS" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"uT" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"uV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"uW" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"uY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"uZ" = (
+/obj/machinery/power/port_gen/pacman/super/potato,
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"va" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Reactor Access";
+ req_access = list(150);
+ req_one_access = list(150)
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"ve" = (
+/obj/structure/table/rack,
+/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/mortar,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"vl" = (
+/obj/machinery/mech_recharger,
+/obj/mecha/combat/gygax/dark,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"vn" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/gloves/yellow,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"vt" = (
+/obj/structure/table/rack,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive,
+/obj/item/mecha_parts/mecha_equipment/omni_shield,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"vu" = (
+/obj/machinery/scale,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"vw" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "Merc APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/orange,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_port)
+"vA" = (
+/obj/effect/shuttle_landmark/premade/manta_ship_port,
+/turf/space,
+/area/space)
+"vB" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 5
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"vD" = (
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "Merc_Rear_Blast";
+ name = "Blast Shield"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"vH" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"vI" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"vJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"vK" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/yellow,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"vM" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"vN" = (
+/obj/machinery/shieldwallgen{
+ anchored = 1;
+ name = "secured shield generator";
+ req_access = list(150);
+ state = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/floor_decal/industrial/outline/blue,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"vO" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"vP" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/minitree,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"vU" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"vV" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{
+ id_tag = "merc_star";
+ master_tag = "merc_master";
+ name = "Starboard Docking Control";
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"vW" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"wb" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"wc" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1;
+ req_one_access = list(150)
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wd" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"wg" = (
+/obj/machinery/atmospherics/unary/heat_exchanger,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"wi" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wl" = (
+/obj/structure/flora/pottedplant{
+ icon_state = "plant-20"
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"wn" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wo" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wp" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wt" = (
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wu" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"ww" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/storage/firstaid/combat,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/item/weapon/reagent_containers/hypospray,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wy" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wC" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wM" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"wO" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wP" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"wQ" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1;
+ req_one_access = list(150)
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"wU" = (
+/obj/item/modular_computer/console/preset/mercenary,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"wX" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"wZ" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"xa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"xc" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall/plastihull,
+/area/ship/manta/engine)
+"xd" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 8;
+ start_pressure = 740.5
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_port)
+"xe" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"xf" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Merc_Shuttle_Boarding";
+ opacity = 0
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "Merc_Shuttle_Boarding";
+ name = "Boarding Shuttle Access";
+ pixel_y = -24;
+ req_access = list(150)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"xh" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/flasher,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"xk" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"xo" = (
+/obj/machinery/door/blast/regular{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "Merc_Shuttle_Boarding";
+ opacity = 0
+ },
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "Merc_Shuttle_Boarding";
+ name = "Boarding Shuttle Access";
+ pixel_y = -24;
+ req_access = list(150)
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"xp" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"xq" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"xt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"xv" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 8;
+ name = "Merc APC - West";
+ pixel_x = -24
+ },
+/obj/structure/cable/orange,
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_star)
+"xz" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"xB" = (
+/obj/machinery/atmospherics/pipe/tank/air{
+ dir = 4;
+ start_pressure = 740.5
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_star)
+"xE" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"xF" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"xG" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ req_one_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"xK" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"xL" = (
+/turf/space,
+/area/ship/manta/engine)
+"xN" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"xO" = (
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"xP" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"xQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass_engineeringatmos{
+ req_one_access = list(150)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/atmos)
+"xT" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "Merc_Rear_Blast";
+ name = "Blast Shield"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"xW" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"yb" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"yh" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/structure/railing,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"yj" = (
+/obj/machinery/power/port_gen/pacman/super/potato,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"yk" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 8;
+ pixel_x = -26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"ym" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"yn" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/dock_star)
+"yo" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/dock_port)
+"yp" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"ys" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"yt" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"yu" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"yv" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"yw" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"yx" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"yy" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"yz" = (
+/turf/space,
+/area/space)
+"yA" = (
+/obj/structure/bed/chair/bay/comfy/red{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"yD" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"yE" = (
+/obj/structure/toilet,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"yF" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"yK" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"yO" = (
+/obj/effect/shuttle_landmark/premade/manta_ship_star,
+/turf/space,
+/area/space)
+"yP" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"yR" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"yT" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 6;
+ pixel_x = 7;
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"yV" = (
+/obj/structure/toilet,
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"yW" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/structure/catwalk,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"yY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"yZ" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"za" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"zb" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"ze" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ id = "Manta_Wargear";
+ layer = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"zf" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"zg" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"zj" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"zk" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"zl" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/armoury_as)
+"zm" = (
+/obj/machinery/door/airlock/vault{
+ name = "War Armory";
+ req_access = list(999);
+ req_one_access = list(999)
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ dir = 4;
+ id = "Manta_Wargear";
+ layer = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/unsimulated/floor{
+ icon_state = "dark"
+ },
+/area/ship/manta/armoury_as)
+"zo" = (
+/obj/structure/table/standard,
+/obj/machinery/chemical_dispenser/bar_soft/full{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"zp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"zv" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/plasmastun,
+/obj/item/weapon/gun/energy/plasmastun,
+/obj/item/weapon/gun/energy/plasmastun,
+/obj/item/weapon/gun/energy/plasmastun,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"zx" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"zy" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/item/weapon/tank/jetpack/oxygen,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"zz" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"zC" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"zE" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_port)
+"zH" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/oxygen/red,
+/obj/item/clothing/suit/space/void/merc,
+/obj/item/clothing/mask/gas/syndicate,
+/obj/item/clothing/head/helmet/space/void/merc,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"zI" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"zN" = (
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"zR" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/engineering)
+"zS" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"zU" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"zX" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/holding)
+"Ab" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"Ak" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"Al" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"Au" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(150);
+ req_one_access = list(150)
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"Aw" = (
+/obj/effect/floor_decal/corner/black,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"AA" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/industrial/outline,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"AC" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"AD" = (
+/obj/machinery/computer/shuttle_control/explore/manta_ship_boat,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"AE" = (
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/machinery/computer/ship/helm{
+ req_one_access = list(150)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"AJ" = (
+/obj/machinery/door/window/brigdoor/northright{
+ req_access = list(150);
+ req_one_access = list(150)
+ },
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"AO" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"AQ" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/centcom{
+ name = "Captain's Quarters";
+ req_access = list(150)
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"AU" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"AV" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"AX" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_one_access = list(150)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"Bi" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Bk" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 8;
+ name = "Merc APC - West";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"Bn" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ req_one_access = list(150)
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_port)
+"Bq" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/computer/ship/navigation{
+ req_one_access = list(150)
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"Bv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/plastihull,
+/area/ship/manta/atmos)
+"Bw" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"BJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"BL" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"BN" = (
+/obj/structure/bed,
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"BO" = (
+/obj/structure/table/woodentable,
+/obj/machinery/microwave,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"BP" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"BQ" = (
+/obj/machinery/flasher,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"BT" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"BU" = (
+/obj/machinery/atmospherics/pipe/simple/visible/universal,
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"BW" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"BY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Ca" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"Cf" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/ship/manta/radiator_star)
+"Cj" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"Cn" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "Merc APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/orange,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_star)
+"Cp" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Cu" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"Cw" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Cz" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/item/device/multitool,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"CB" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"CD" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 9
+ },
+/turf/space,
+/area/ship/manta/radiator_star)
+"CF" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1;
+ name = "Mech Bay";
+ req_one_access = list(999)
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/door/blast/regular{
+ closed_layer = 4;
+ id = "Manta_Wargear";
+ layer = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"CK" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"CP" = (
+/obj/structure/closet/wardrobe/merc,
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"CQ" = (
+/obj/structure/table/standard,
+/obj/item/device/pda/syndicate,
+/obj/item/device/pda/syndicate,
+/obj/item/device/pda/syndicate,
+/obj/item/device/pda/syndicate,
+/obj/item/device/pda/syndicate,
+/obj/item/device/pda/syndicate,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"CT" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/plasmastun,
+/obj/item/weapon/gun/energy/plasmastun,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"CX" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Db" = (
+/obj/structure/table/standard,
+/obj/item/device/radio/headset/syndicate,
+/obj/item/device/radio/headset/syndicate,
+/obj/item/device/radio/headset/syndicate,
+/obj/item/device/radio/headset/syndicate,
+/obj/item/device/radio/headset/syndicate/alt,
+/obj/item/device/radio/headset/syndicate/alt,
+/obj/item/device/radio/headset/syndicate/alt,
+/obj/item/device/radio/headset/syndicate/alt,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Dc" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"De" = (
+/obj/structure/bed/pod,
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/obj/item/weapon/bedsheet/hos,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_1)
+"Df" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/dock_port)
+"Dg" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/frags,
+/obj/item/weapon/storage/box/frags,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"Di" = (
+/obj/effect/map_helper/airlock/atmos/chamber_pump,
+/obj/machinery/atmospherics/unary/vent_pump/high_volume,
+/obj/effect/map_helper/airlock/sensor/chamber_sensor,
+/obj/machinery/airlock_sensor{
+ pixel_y = 24
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"Dj" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Dm" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 10
+ },
+/turf/space,
+/area/ship/manta/radiator_star)
+"Dn" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"Dp" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"Dq" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/sniperammo,
+/obj/item/weapon/gun/projectile/heavysniper,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"Dr" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"Du" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/item/weapon/gun/energy/netgun,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Dw" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Dy" = (
+/obj/structure/table/steel_reinforced,
+/obj/item/clothing/suit/storage/vest/heavy/merc,
+/obj/item/clothing/suit/storage/vest/heavy/merc,
+/obj/item/clothing/suit/storage/vest/heavy/merc,
+/obj/item/clothing/suit/storage/vest/heavy/merc,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Dz" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/stunrevolver,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/gun/energy/taser,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/item/weapon/melee/baton/loaded,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"DB" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/syndie_kit/ewar_voice,
+/obj/item/weapon/storage/box/syndie_kit/ewar_voice,
+/obj/item/weapon/storage/box/syndie_kit/ewar_voice,
+/obj/item/weapon/storage/box/syndie_kit/ewar_voice,
+/obj/item/weapon/card/emag,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"DE" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"DL" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"DR" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"DY" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/teleporter)
+"DZ" = (
+/obj/structure/flora/pottedplant/large,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Eb" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Ec" = (
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"Eh" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "Manta_Wargear";
+ name = "Wargear Lockdown Release";
+ pixel_y = -24;
+ req_access = list(999)
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"El" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"En" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"Et" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "Merc_Shuttle_Fore";
+ name = "Boarding Shuttle Fore Ramp";
+ pixel_x = -17;
+ pixel_y = 42;
+ req_access = list(150)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"Eu" = (
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"Ew" = (
+/obj/structure/flora/pottedplant/decorative,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Ey" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"EA" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/hallways_aft)
+"EE" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/med,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/med,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
+/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,
+/obj/item/weapon/storage/backpack/dufflebag/syndie,
+/obj/item/weapon/storage/backpack/dufflebag/syndie,
+/obj/item/weapon/storage/backpack/dufflebag/syndie,
+/obj/item/weapon/storage/backpack/dufflebag/syndie,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"EI" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"EN" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"EY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"EZ" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/suit/armor/pcarrier/green,
+/obj/item/clothing/suit/armor/pcarrier/green,
+/obj/item/clothing/suit/armor/pcarrier/green,
+/obj/item/clothing/suit/armor/pcarrier/green,
+/obj/item/clothing/accessory/armor/legguards/green,
+/obj/item/clothing/accessory/armor/legguards/green,
+/obj/item/clothing/accessory/armor/legguards/green,
+/obj/item/clothing/accessory/armor/legguards/green,
+/obj/item/clothing/accessory/armor/armguards/green,
+/obj/item/clothing/accessory/armor/armguards/green,
+/obj/item/clothing/accessory/armor/armguards/green,
+/obj/item/clothing/accessory/armor/armguards/green,
+/obj/item/clothing/accessory/armor/tag/saare,
+/obj/item/clothing/accessory/armor/tag/saare,
+/obj/item/clothing/accessory/armor/tag/saare,
+/obj/item/clothing/accessory/armor/tag/saare,
+/obj/item/clothing/accessory/armor/armorplate/tactical,
+/obj/item/clothing/accessory/armor/armorplate/tactical,
+/obj/item/clothing/accessory/armor/armorplate/tactical,
+/obj/item/clothing/accessory/armor/armorplate/tactical,
+/obj/item/clothing/head/helmet,
+/obj/item/clothing/head/helmet,
+/obj/item/clothing/head/helmet,
+/obj/item/clothing/head/helmet,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"Fb" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Fc" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/structure/catwalk,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"Fd" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"Ff" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"Fj" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"Fv" = (
+/obj/machinery/vending/sovietsoda,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Fx" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/launcher/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/item/ammo_casing/rocket,
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "Merc APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/orange{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"FB" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"FH" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ req_one_access = list(150)
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_star)
+"FL" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"FQ" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"FR" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ req_access = list(150);
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"FV" = (
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/machinery/power/shield_generator/charged{
+ hacked = 1
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"FZ" = (
+/obj/machinery/power/pointdefense{
+ id_tag = "mercenary_pd"
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/engine)
+"Gd" = (
+/obj/structure/table/standard,
+/obj/item/weapon/storage/box/glasses/square{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"Gg" = (
+/obj/structure/table/woodentable,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/paper/manta_new_personnel_brief,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Gi" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"Gk" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"Gl" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Gr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"Gu" = (
+/obj/structure/closet/athletic_mixed,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/window/titanium,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Gz" = (
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"GA" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_port)
+"GE" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"GH" = (
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"GI" = (
+/obj/machinery/light/no_nightshift,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ship/manta/barracks)
+"GN" = (
+/obj/machinery/door/window/brigdoor/southleft{
+ req_access = list(150);
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"GS" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"GY" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/dock_star)
+"Ha" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/ext_door,
+/obj/effect/map_helper/airlock/sensor/ext_sensor,
+/obj/machinery/airlock_sensor/airlock_exterior{
+ dir = 10;
+ pixel_x = -8;
+ pixel_y = 21
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"Hg" = (
+/obj/structure/table/rack,
+/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster,
+/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/frag,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"Hh" = (
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"Hl" = (
+/obj/structure/table/rack,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion,
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"Hm" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen{
+ pixel_y = 4
+ },
+/obj/item/weapon/folder{
+ pixel_y = 2
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Hr" = (
+/obj/structure/table/rack,
+/obj/item/mecha_parts/mecha_equipment/shocker,
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "Merc APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/orange,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"Hv" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Hz" = (
+/obj/structure/table/rack,
+/obj/item/mecha_parts/mecha_equipment/tool/jetpack,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/xray,
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/mech_bay)
+"HB" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"HD" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"HH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"HJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"HL" = (
+/obj/structure/table/rack,
+/obj/item/ammo_magazine/s44,
+/obj/item/ammo_magazine/s44,
+/obj/item/ammo_magazine/s44,
+/obj/item/ammo_magazine/s44,
+/obj/item/ammo_magazine/s44,
+/obj/item/ammo_magazine/s44,
+/obj/item/weapon/gun/projectile/revolver/consul,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"HR" = (
+/obj/structure/bed/chair/bay/comfy/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"HS" = (
+/obj/structure/table/rack,
+/obj/item/weapon/pinpointer/nukeop,
+/obj/item/weapon/pinpointer/nukeop,
+/obj/item/weapon/pinpointer/nukeop,
+/obj/item/weapon/pinpointer/nukeop,
+/obj/item/weapon/pinpointer/nukeop,
+/obj/item/weapon/pinpointer/nukeop,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"HV" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"HY" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"Ic" = (
+/obj/machinery/computer/ship/engines{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"Ik" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_star)
+"In" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Io" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"Iq" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/xray,
+/obj/item/weapon/gun/energy/xray,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"IA" = (
+/obj/machinery/embedded_controller/radio/docking_port_multi{
+ child_names_txt = "Port Airlock Control;Starboard Airlock Control";
+ child_tags_txt = "merc_port;merc_star";
+ id_tag = "merc_master";
+ pixel_y = 22
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"IE" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/dock_port)
+"IF" = (
+/obj/machinery/computer/ship/engines{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"IG" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"II" = (
+/obj/machinery/porta_turret/stationary/syndie/CIWS,
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/engine)
+"IJ" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"IO" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"IT" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"IV" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/commander)
+"Jb" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Jd" = (
+/obj/machinery/vending/cigarette{
+ name = "Breach Corp cigarette machine";
+ prices = list();
+ products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2)
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Je" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "manta_cells_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Jk" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Jl" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Jq" = (
+/obj/structure/table/standard,
+/obj/item/clothing/glasses/sunglasses/prescription,
+/obj/item/clothing/glasses/sunglasses/prescription,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/clothing/glasses/sunglasses,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Jr" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Js" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Jt" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Jw" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"JA" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Bathroom";
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"JD" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 1
+ },
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"JL" = (
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"JW" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"JX" = (
+/obj/structure/reagent_dispensers/water_cooler/full,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"JY" = (
+/obj/effect/floor_decal/corner/black,
+/obj/effect/floor_decal/corner/black{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"Kc" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Kd" = (
+/mob/living/simple_mob/animal/passive/fox/syndicate{
+ name = "Rick"
+ },
+/obj/structure/dogbed,
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"Ki" = (
+/obj/machinery/sleeper{
+ dir = 4;
+ name = "Stasis Cell";
+ stasis_level = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"Km" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
+"Kn" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Ko" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"Kp" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Kq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"Kv" = (
+/obj/machinery/sleeper{
+ dir = 8;
+ name = "Stasis Cell";
+ stasis_level = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"Ky" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 6
+ },
+/turf/simulated/wall/plastihull,
+/area/ship/manta/dock_star)
+"KA" = (
+/obj/structure/table/rack/shelf/steel,
+/obj/item/clothing/under/saare,
+/obj/item/clothing/under/saare,
+/obj/item/clothing/under/saare,
+/obj/item/clothing/under/saare,
+/obj/item/clothing/accessory/armor/helmcover/saare,
+/obj/item/clothing/accessory/armor/helmcover/saare,
+/obj/item/clothing/accessory/armor/helmcover/saare,
+/obj/item/clothing/accessory/armor/helmcover/saare,
+/obj/item/clothing/accessory/storage/pouches/large/green,
+/obj/item/clothing/accessory/storage/pouches/large/green,
+/obj/item/clothing/accessory/storage/pouches/large/green,
+/obj/item/clothing/accessory/storage/pouches/large/green,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"KE" = (
+/obj/machinery/door/window/brigdoor/eastright,
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"KG" = (
+/obj/structure/table/bench/steel,
+/obj/effect/landmark/late_antag/mercenary,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"KH" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"KI" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"KJ" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/teleporter)
+"KL" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"KP" = (
+/obj/structure/table/bench/steel,
+/obj/effect/landmark/late_antag/mercenary,
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"KW" = (
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_2)
+"KZ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"Lb" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/tray{
+ pixel_y = 5
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black,
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"Ld" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Le" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Lm" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/dock_star)
+"Lp" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Lt" = (
+/obj/machinery/computer/teleporter{
+ dir = 2
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"Lv" = (
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"Ly" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/dock_star)
+"LC" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "Merc APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/orange{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"LH" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"LI" = (
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"LJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"LM" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"LS" = (
+/obj/machinery/atmospherics/pipe/manifold/visible{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"LT" = (
+/obj/machinery/button/flasher{
+ pixel_x = -9;
+ pixel_y = 22
+ },
+/obj/machinery/button/remote/blast_door{
+ id = "manta_cells_privacy";
+ name = "Privacy Shutter Controls";
+ pixel_x = 8;
+ pixel_y = 25;
+ req_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"LU" = (
+/obj/machinery/atmospherics/binary/pump/fuel/on,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"LW" = (
+/obj/machinery/door/airlock/multi_tile/metal{
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"LZ" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/hallways_star)
+"Mb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_star)
+"Mf" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Mg" = (
+/obj/structure/sign/nosmoking_1,
+/turf/simulated/wall/plastihull,
+/area/ship/manta/engineering)
+"Mh" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"Mk" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Ml" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Mr" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"Mt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Mv" = (
+/obj/structure/closet/athletic_mixed,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/window/titanium,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Mw" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"ME" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"MI" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"MM" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_star)
+"MQ" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"MU" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"MV" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"MY" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Nb" = (
+/obj/structure/table/rack,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/item/clothing/accessory/storage/black_vest,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Nc" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/shotgunshells/large,
+/obj/item/weapon/storage/box/shotgunammo/large,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/item/weapon/gun/projectile/shotgun/pump/combat,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"Ne" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Ng" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"Ni" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"No" = (
+/obj/structure/bed/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Nq" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/sniperrifle,
+/obj/item/weapon/gun/energy/sniperrifle,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"Ns" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ship/manta/barracks)
+"Nv" = (
+/obj/effect/shuttle_landmark/premade/manta_ship_near_star,
+/turf/space,
+/area/space)
+"Nw" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 4;
+ pixel_x = -26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"Ny" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/gun,
+/obj/item/weapon/gun/energy/gun,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"NA" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"ND" = (
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"NE" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/ionrifle/pistol,
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"NH" = (
+/obj/structure/table/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/item/clothing/shoes/magboots,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"NJ" = (
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "Merc_Rear_Blast";
+ name = "Blast Shield"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"NK" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"NQ" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/barracks)
+"NT" = (
+/obj/effect/floor_decal/techfloor/corner,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"NV" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ dir = 8;
+ pixel_x = 23
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"Oi" = (
+/obj/machinery/atmospherics/portables_connector/fuel{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"Oj" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/machinery/shower{
+ dir = 1
+ },
+/obj/item/weapon/soap/syndie,
+/obj/structure/curtain/open/shower,
+/turf/unsimulated/floor{
+ icon_state = "freezerfloor"
+ },
+/area/ship/manta/barracks)
+"Ok" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 1
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"On" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/oxygen/red,
+/obj/item/clothing/suit/space/void/merc,
+/obj/item/clothing/mask/gas/syndicate,
+/obj/item/clothing/head/helmet/space/void/merc,
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Oq" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_port)
+"Or" = (
+/obj/machinery/chemical_dispenser/bar_coffee/full{
+ dir = 4
+ },
+/obj/structure/table/woodentable,
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Ou" = (
+/obj/structure/table/rack,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/obj/item/device/camera,
+/obj/item/device/camera,
+/obj/item/device/camera,
+/obj/item/device/camera,
+/obj/item/device/camera,
+/obj/item/device/camera,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Ox" = (
+/obj/machinery/airlock_sensor{
+ pixel_y = -23
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"OD" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"OK" = (
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = 26
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"OL" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"OO" = (
+/obj/structure/sign/warning/radioactive,
+/turf/simulated/wall/plastihull,
+/area/ship/manta/engineering)
+"OP" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"OQ" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"OR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"OT" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"OV" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"OX" = (
+/obj/machinery/vending/coffee{
+ name = "hacked Hot Drinks machine";
+ prices = list()
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"OY" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"Pa" = (
+/obj/structure/table/woodentable,
+/obj/item/device/aicard,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/no_nightshift,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"Pb" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "manta_cells_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Ph" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
+"Pi" = (
+/obj/effect/floor_decal/industrial/warning,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Pn" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/hangar)
+"Py" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "manta_cells_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"PE" = (
+/obj/machinery/atmospherics/unary/heat_exchanger,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"PJ" = (
+/obj/machinery/vending/fitness{
+ prices = list()
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"PK" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/dock_star)
+"PL" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "manta_cells_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"PP" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/commander)
+"PU" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"PW" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/airless,
+/area/ship/manta/radiator_port)
+"Qb" = (
+/obj/machinery/atmospherics/pipe/manifold4w/visible,
+/obj/machinery/meter,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"Qc" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ icon_state = "shutter0";
+ id = "manta_cells_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Qd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"Qf" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "Merc APC - North";
+ pixel_y = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Qh" = (
+/obj/machinery/atmospherics/binary/pump/on,
+/obj/effect/catwalk_plated/dark,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 8;
+ name = "Merc APC - West";
+ pixel_x = -24
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"Qj" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Qu" = (
+/obj/machinery/fitness/heavy/lifter,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Qw" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"Qx" = (
+/obj/structure/table/woodentable,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/weapon/melee/telebaton,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Qy" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"QD" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"QE" = (
+/obj/structure/catwalk,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 1;
+ pixel_y = -26
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"QH" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"QJ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_one_access = list(150)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"QO" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/radiator_star)
+"QT" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/radiator_star)
+"QU" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"Rg" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"Rj" = (
+/obj/structure/closet/secure_closet/freezer/kitchen{
+ req_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/corner/black,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/unsimulated/floor{
+ icon_state = "white"
+ },
+/area/ship/manta/recreation)
+"Rq" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"RA" = (
+/obj/machinery/fitness/heavy/lifter,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"RC" = (
+/obj/structure/table/rack,
+/obj/item/ammo_magazine/m9mm,
+/obj/item/ammo_magazine/m9mm,
+/obj/item/ammo_magazine/m9mm,
+/obj/item/ammo_magazine/m9mm,
+/obj/item/ammo_magazine/m9mm,
+/obj/item/ammo_magazine/m9mm,
+/obj/item/ammo_magazine/m9mm,
+/obj/item/ammo_magazine/m9mm,
+/obj/item/weapon/gun/projectile/luger,
+/obj/item/weapon/gun/projectile/luger/brown,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"RF" = (
+/obj/structure/closet/cabinet{
+ name = "Clothing Storage"
+ },
+/obj/item/clothing/shoes/boots/combat,
+/obj/item/clothing/shoes/boots/combat,
+/obj/item/clothing/shoes/boots/combat,
+/obj/item/clothing/shoes/boots/combat,
+/obj/item/clothing/shoes/boots/combat,
+/obj/item/clothing/shoes/boots/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/gloves/combat,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"RJ" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"RK" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"RL" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "manta_cells_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"RM" = (
+/obj/structure/table/rack,
+/obj/item/weapon/gun/energy/lasercannon,
+/obj/item/weapon/gun/energy/lasercannon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/item/weapon/cell/device/weapon,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"RO" = (
+/obj/machinery/teleport/hub,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/hatch/yellow,
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/teleporter)
+"RQ" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"RR" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"RU" = (
+/obj/structure/table/rack,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/light_switch{
+ dir = 1;
+ pixel_y = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"RY" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"RZ" = (
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_port)
+"Sa" = (
+/obj/machinery/door/blast/regular/open{
+ dir = 4;
+ id = "Merc_Rear_Blast";
+ name = "Blast Shield"
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"Sb" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Se" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"Sl" = (
+/obj/effect/floor_decal/industrial/warning,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"Sn" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 6
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"Sq" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ icon_state = "frame";
+ pixel_x = -32
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Ss" = (
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"St" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"SF" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(150);
+ req_one_access = list(150)
+ },
+/obj/machinery/atmospherics/portables_connector/fuel,
+/obj/machinery/portable_atmospherics/canister/phoron/engine_setup,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"SG" = (
+/obj/machinery/atmospherics/pipe/manifold/visible,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"SI" = (
+/obj/machinery/atmospherics/unary/heat_exchanger{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"SJ" = (
+/obj/machinery/door/window/brigdoor/northright{
+ req_access = list(150);
+ req_one_access = list(150)
+ },
+/obj/machinery/atmospherics/portables_connector/fuel,
+/obj/machinery/portable_atmospherics/canister/phoron/engine_setup,
+/obj/effect/floor_decal/industrial/outline/red,
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
+"SO" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/engineering{
+ req_one_access = list(150)
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"SV" = (
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/orange{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"SW" = (
+/obj/structure/bed/pod,
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/obj/item/weapon/bedsheet/hos,
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 8;
+ pixel_x = -26
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_1)
+"SX" = (
+/obj/structure/bed/pod,
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/obj/item/weapon/bedsheet/hos,
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "Merc APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_1)
+"Ta" = (
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/obj/item/weapon/reagent_containers/food/drinks/cup{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/structure/table/woodentable,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Tc" = (
+/obj/machinery/vending/cigarette{
+ dir = 8;
+ name = "Breach Corp cigarette machine";
+ prices = list();
+ products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2)
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Ti" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 4;
+ id = "manta_cells_privacy";
+ name = "Privacy Shutter Controls";
+ pixel_x = -24;
+ req_access = list(150)
+ },
+/obj/machinery/recharger/wallcharger{
+ pixel_y = 20
+ },
+/obj/item/clothing/gloves/knuckledusters,
+/obj/item/clothing/gloves/knuckledusters,
+/obj/item/device/flash,
+/obj/item/device/flash,
+/obj/item/device/laser_pointer/upgraded,
+/obj/item/device/laser_pointer/upgraded,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Tk" = (
+/obj/structure/table/woodentable,
+/obj/item/weapon/storage/box/sinpockets,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Tl" = (
+/obj/item/device/aicard,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/item/weapon/plastique,
+/obj/structure/table/reinforced,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Tn" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"Tv" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Tw" = (
+/obj/item/weapon/handcuffs/legcuffs,
+/obj/item/weapon/handcuffs/legcuffs,
+/obj/item/weapon/handcuffs/legcuffs,
+/obj/item/weapon/handcuffs/legcuffs,
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/handcuffs,
+/obj/item/weapon/handcuffs,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Tz" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ dir = 4;
+ pixel_x = -23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"TB" = (
+/obj/structure/bed/pod,
+/obj/effect/landmark{
+ name = "Syndicate-Spawn"
+ },
+/obj/item/weapon/bedsheet/hos,
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_2)
+"TH" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"TM" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"TN" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/no_nightshift,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_port)
+"TS" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 4
+ },
+/obj/structure/railing/grey{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"TT" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"TY" = (
+/obj/item/weapon/gun/energy/sizegun,
+/obj/item/weapon/gun/energy/sizegun,
+/obj/effect/floor_decal/rust,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Ua" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Ub" = (
+/obj/machinery/airlock_sensor{
+ pixel_y = -23
+ },
+/obj/effect/map_helper/airlock/sensor/int_sensor,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"Ue" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/engine)
+"Ug" = (
+/obj/machinery/vending/wallmed1/public{
+ dir = 4;
+ pixel_x = -23
+ },
+/obj/item/weapon/paper/manta_prisoners,
+/obj/machinery/recharger/wallcharger{
+ pixel_y = -27
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/obj/machinery/light/no_nightshift,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Us" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/box/syndie_kit/chameleon,
+/obj/item/weapon/storage/box/syndie_kit/chameleon,
+/obj/item/weapon/storage/box/syndie_kit/chameleon,
+/obj/item/weapon/storage/box/syndie_kit/chameleon,
+/obj/item/weapon/storage/box/syndie_kit/chameleon,
+/obj/item/weapon/storage/box/syndie_kit/chameleon,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Uy" = (
+/obj/item/weapon/reagent_containers/syringe/drugs{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/syringe/drugs{
+ pixel_x = 3;
+ pixel_y = 9
+ },
+/obj/item/weapon/reagent_containers/syringe/drugs{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/obj/item/weapon/material/knife/tacknife/combatknife{
+ pixel_x = -7
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"UA" = (
+/obj/structure/closet{
+ name = "custodial"
+ },
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/machinery/alarm/alarms_hidden{
+ dir = 8;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"UD" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Barracks";
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_2)
+"UF" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/multi_tile/metal{
+ req_one_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"UH" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"UI" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"UM" = (
+/obj/machinery/door/blast/shutters{
+ density = 0;
+ dir = 2;
+ icon_state = "shutter0";
+ id = "manta_cells_privacy";
+ name = "Privacy Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"UQ" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/firealarm/alarms_hidden{
+ dir = 4;
+ pixel_x = 26
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"UR" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"UV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"UY" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"Va" = (
+/obj/machinery/atmospherics/pipe/tank/phoron,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"Vg" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_2)
+"Vh" = (
+/obj/structure/table/rack,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/item/weapon/gun/energy/darkmatter,
+/obj/item/weapon/gun/energy/darkmatter,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"Vk" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/simulated/floor/reinforced,
+/area/ship/manta/radiator_port)
+"Vl" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"Vp" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/hangar)
+"Vr" = (
+/obj/structure/table/rack,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545,
+/obj/item/ammo_magazine/m545/ap,
+/obj/item/ammo_magazine/m545/ap,
+/obj/item/ammo_magazine/m545/ap,
+/obj/item/ammo_magazine/m545/ap,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/item/weapon/gun/projectile/automatic/sts35,
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_as)
+"Vx" = (
+/obj/structure/railing/grey{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/computer/security/nuclear{
+ icon_state = "computer"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Vz" = (
+/obj/machinery/power/smes/buildable/point_of_interest,
+/obj/structure/cable/orange{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"VA" = (
+/obj/structure/table/rack,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/item/weapon/tank/emergency/oxygen/double,
+/obj/effect/floor_decal/techfloor{
+ dir = 9
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 23
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"VD" = (
+/obj/machinery/computer/ship/sensors{
+ dir = 4;
+ req_one_access = list(150)
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"VF" = (
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/shield/energy,
+/obj/item/weapon/melee/energy/sword/red,
+/obj/item/weapon/melee/energy/sword/red,
+/obj/item/weapon/melee/energy/sword/red,
+/obj/item/weapon/melee/energy/sword/red,
+/obj/item/weapon/melee/energy/sword/red,
+/obj/item/weapon/melee/energy/sword/red,
+/obj/structure/table/steel_reinforced,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"VG" = (
+/obj/machinery/atmospherics/portables_connector{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/empty,
+/obj/effect/floor_decal/industrial/outline/yellow,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"VH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/turf/simulated/wall/plastihull,
+/area/ship/manta/radiator_star)
+"VL" = (
+/obj/structure/table/rack,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/adv,
+/obj/item/weapon/storage/firstaid/clotting,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/effect/floor_decal/borderfloorblack/corner2{
+ dir = 5
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/alarm/alarms_hidden{
+ pixel_y = 26
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"VM" = (
+/obj/effect/floor_decal/techfloor,
+/obj/structure/table/steel_reinforced,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"VP" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"VW" = (
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"We" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"Wi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"Wn" = (
+/obj/structure/table/steel_reinforced,
+/obj/structure/railing/grey{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techmaint,
+/area/ship/manta/bridge)
+"Wv" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"Ww" = (
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ name = "Merc APC - South";
+ pixel_y = -24
+ },
+/obj/structure/cable/orange,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Wx" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"WA" = (
+/turf/simulated/floor/reinforced/airless,
+/area/ship/manta/engine)
+"WE" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/item/pizzabox/meat,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"WF" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/dock_port)
+"WN" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/door/airlock/multi_tile/metal{
+ req_one_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"WO" = (
+/obj/structure/table/woodentable,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"WU" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/multi_tile/metal{
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/multi_tile,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_port)
+"WV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Xa" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"Xd" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"Xl" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 6
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_1)
+"Xm" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Barracks";
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks/bed_1)
+"Xo" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Xp" = (
+/obj/machinery/atmospherics/pipe/simple/visible,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/ship/manta/atmos)
+"Xu" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 10
+ },
+/turf/simulated/wall/plastihull,
+/area/ship/manta/dock_port)
+"Xx" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/obj/structure/catwalk,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"Xy" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"Xz" = (
+/obj/structure/bed/chair/comfy/black,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"XB" = (
+/obj/structure/table/rack,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/item/device/flashlight/flare,
+/obj/machinery/recharger/wallcharger{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"XC" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"XD" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"XE" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/engine)
+"XF" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_star)
+"XH" = (
+/obj/machinery/atmospherics/pipe/simple/hidden{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/dead,
+/obj/effect/floor_decal/techfloor{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"XO" = (
+/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
+ dir = 4
+ },
+/turf/space,
+/area/ship/manta/radiator_star)
+"XQ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"XR" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/metal{
+ dir = 1;
+ req_one_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"XS" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_star)
+"XV" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"XY" = (
+/obj/structure/catwalk,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"Yd" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"Yf" = (
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ req_one_access = list(150)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
+"Yh" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Yi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Yj" = (
+/obj/effect/floor_decal/techfloor,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hangar)
+"Yl" = (
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/door/firedoor/multi_tile{
+ dir = 1
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ req_one_access = list(150)
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"Yo" = (
+/obj/machinery/door/window/brigdoor/northleft{
+ req_access = list(150);
+ req_one_access = list(150)
+ },
+/obj/machinery/door/firedoor/glass,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Yp" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Yq" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"YA" = (
+/obj/structure/bed/chair/bay/comfy/red,
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"YB" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 8
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 1;
+ name = "Merc APC - North";
+ pixel_y = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/catwalk_plated/dark,
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"YC" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"YF" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor/corner,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"YH" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"YJ" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
+"YM" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"YP" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_port)
+"YR" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
+"YS" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 5
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
+"YT" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 6
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"YV" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
+"YW" = (
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"YY" = (
+/obj/item/modular_computer/console/preset/mercenary{
+ dir = 8
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+"YZ" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/map_helper/airlock/door/int_door,
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/dock_star)
+"Zh" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Zp" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/teleporter)
+"Zr" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/hallways_aft)
+"Zv" = (
+/obj/machinery/door/firedoor,
+/obj/structure/grille,
+/obj/structure/window/titanium/full,
+/obj/structure/window/titanium,
+/obj/structure/window/titanium{
+ dir = 1
+ },
+/obj/structure/window/titanium{
+ dir = 4
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"Zy" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/dock_port)
+"Zz" = (
+/obj/machinery/atmospherics/pipe/manifold/visible/black{
+ dir = 8
+ },
+/obj/structure/catwalk,
+/obj/structure/railing,
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_star)
+"ZB" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"ZF" = (
+/obj/structure/sink{
+ dir = 4;
+ pixel_x = 12;
+ pixel_y = 8
+ },
+/obj/machinery/power/apc/hyper{
+ alarms_hidden = 1;
+ dir = 4;
+ name = "Merc APC - East";
+ pixel_x = 24
+ },
+/obj/structure/cable/orange{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/simulated/floor/tiled/dark,
+/area/ship/manta/holding)
+"ZG" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/airlock/glass{
+ req_one_access = list(150)
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"ZH" = (
+/obj/structure/table/steel_reinforced,
+/obj/effect/landmark{
+ name = "Syndicate-Uplink"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/armoury_st)
+"ZI" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 1
+ },
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"ZO" = (
+/obj/machinery/vending/fitness{
+ dir = 4;
+ prices = list()
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
+"ZQ" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/bridge)
+"ZS" = (
+/obj/structure/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/radiator_port)
+"ZT" = (
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/armoury_st)
+"ZU" = (
+/turf/simulated/wall/plastihull,
+/area/ship/manta/atmos)
+"ZV" = (
+/obj/structure/table/woodentable,
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
+"ZW" = (
+/turf/simulated/floor/plating,
+/area/ship/manta/dock_star)
+"ZY" = (
+/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_one_access = list(150)
+ },
+/obj/effect/floor_decal/techfloor{
+ dir = 8
+ },
+/obj/structure/cable/orange{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/bridge)
+
+(1,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+pf
+"}
+(2,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+aa
+yz
+"}
+(3,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(4,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(5,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(6,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(7,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(8,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(9,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(10,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(11,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(12,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cl
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(13,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(14,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(15,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(16,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(17,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(18,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(19,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(20,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(21,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(22,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(23,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(24,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(25,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(26,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(27,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(28,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(29,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(30,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(31,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(32,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(33,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(34,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(35,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(36,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(37,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(38,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(39,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(40,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(41,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+bg
+bg
+bg
+bg
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(42,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+nI
+nI
+nI
+nJ
+nI
+nI
+yz
+yz
+yz
+yz
+kW
+kW
+kW
+jh
+kW
+kW
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(43,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+rT
+oc
+oc
+oc
+oc
+oc
+oc
+fZ
+kW
+kW
+jh
+lm
+lm
+lm
+lm
+lm
+lm
+fZ
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+bg
+bg
+bg
+bg
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+bg
+bg
+bg
+bg
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(44,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+nI
+oc
+oc
+ve
+yY
+yY
+Hg
+oc
+lm
+lm
+lm
+lm
+lm
+RF
+bA
+cW
+Jq
+lm
+lm
+kW
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(45,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+nJ
+oc
+oc
+vl
+yZ
+Ca
+Hl
+oc
+Qu
+UI
+ZO
+oY
+Mv
+rq
+gh
+gh
+gf
+Db
+lm
+lm
+kW
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(46,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+nI
+oc
+oc
+oc
+vn
+za
+Cj
+Hr
+oc
+Qx
+gh
+Bi
+gk
+gk
+gk
+gk
+gk
+Yi
+hD
+CQ
+lm
+jh
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(47,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+nI
+dO
+oc
+oc
+vt
+zb
+Cu
+Hz
+oc
+RA
+UQ
+JX
+vu
+Gu
+Cz
+Tl
+vP
+hw
+gh
+gd
+lm
+lm
+kW
+yz
+mb
+qB
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(48,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+eH
+oc
+oc
+oc
+oc
+ze
+CF
+oc
+oc
+lq
+lq
+lq
+lq
+lq
+lq
+lq
+Qf
+hw
+gh
+gf
+ik
+lm
+fZ
+yz
+rm
+rm
+mb
+qB
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(49,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+eG
+ht
+ht
+ht
+tj
+vI
+zg
+CK
+vI
+bp
+bp
+bp
+bp
+vI
+bp
+bp
+QJ
+ZI
+hw
+gh
+gh
+io
+lm
+lm
+kW
+rm
+rm
+rm
+rm
+mb
+qB
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(50,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+eG
+ht
+kT
+ht
+tt
+vU
+zk
+Dc
+HJ
+HJ
+HJ
+HJ
+HJ
+HJ
+aM
+br
+tN
+cX
+dJ
+fa
+gk
+MV
+js
+lm
+kW
+rm
+rm
+rm
+rm
+rm
+rm
+mb
+qB
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(51,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+hq
+ht
+oe
+ht
+tx
+fg
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+zl
+tx
+TN
+lq
+cY
+Rq
+Ml
+gm
+it
+jx
+lm
+lm
+Vk
+rm
+rm
+rm
+rm
+rm
+rm
+rm
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(52,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+eG
+ht
+ht
+om
+rU
+tE
+vW
+zl
+Dg
+HL
+Nc
+RC
+Vh
+CT
+zl
+aN
+Ng
+lq
+lq
+KH
+Yl
+lq
+bx
+jz
+kz
+lm
+rp
+rp
+rm
+rm
+rm
+rm
+rm
+rm
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(53,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+eG
+ht
+kT
+op
+ht
+tx
+wb
+zm
+Dp
+HV
+HV
+RJ
+Vl
+Eh
+zl
+tx
+ua
+bp
+vI
+zg
+co
+lq
+Rj
+jB
+oS
+lm
+rp
+os
+rp
+rp
+rm
+rm
+rm
+rm
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(54,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+eH
+ht
+kT
+ov
+ht
+tx
+fg
+zl
+Dq
+Iq
+Nq
+RM
+Vr
+Fx
+zl
+ee
+bt
+dj
+dj
+nP
+gB
+lq
+iu
+jB
+kG
+lm
+PW
+mZ
+rr
+os
+rp
+rp
+rm
+rm
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(55,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+aE
+ZT
+ZT
+ZT
+ZT
+ZT
+ic
+wc
+ZT
+ZT
+ZT
+ZT
+ZT
+ZT
+ZT
+ZT
+ZT
+ZT
+ZT
+ZT
+tx
+fg
+lq
+Lb
+Aw
+zo
+lm
+mp
+Oq
+rs
+mZ
+rr
+os
+rp
+rm
+yz
+yz
+yz
+vA
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(56,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+aE
+ZT
+hU
+lj
+oD
+oD
+iR
+wi
+zv
+Du
+IJ
+Ny
+ZT
+VA
+TM
+DB
+Ou
+bI
+bY
+ZT
+tx
+fg
+lq
+ex
+JY
+Gd
+lq
+mp
+JL
+ZS
+Oq
+rs
+mZ
+rr
+rp
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(57,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+bG
+ZT
+ic
+bR
+bR
+rV
+tF
+wn
+bR
+bR
+bR
+NA
+RR
+iR
+bR
+bR
+bR
+bR
+bZ
+ZT
+tx
+fg
+lq
+iA
+jD
+kJ
+lq
+oT
+na
+TT
+ot
+pt
+Oq
+rs
+os
+yz
+yz
+WF
+Ha
+WF
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(58,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+aE
+ZT
+ZT
+ic
+bR
+bR
+sa
+tG
+wo
+OR
+OR
+OR
+ND
+Sb
+OR
+OR
+sy
+nC
+bR
+Us
+ZT
+tx
+fg
+lq
+lq
+ZG
+lq
+lq
+aI
+nc
+CB
+ou
+rt
+rt
+rt
+lk
+yz
+yz
+WF
+Di
+Df
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(59,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+aE
+ZT
+ZT
+ih
+lo
+oO
+lo
+aX
+wp
+zx
+Dz
+Jb
+NE
+ZT
+aj
+bR
+Dy
+jo
+bR
+cn
+ZT
+ee
+OD
+iB
+iB
+jF
+kL
+Zr
+sM
+nl
+PU
+oy
+pw
+MU
+ry
+zE
+YP
+WF
+WF
+lg
+IE
+WF
+WF
+cb
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(60,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cS
+ZT
+ZT
+ZT
+ZT
+ZT
+ZT
+tH
+wt
+ZT
+ZT
+ZT
+ZT
+ZT
+cP
+bR
+ZH
+aS
+bR
+RU
+DY
+KJ
+KJ
+KJ
+KJ
+KJ
+mo
+Zr
+rA
+rA
+SO
+rA
+rA
+rA
+rA
+rA
+uz
+Zy
+Zy
+KI
+Xu
+nL
+WF
+WF
+yo
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(61,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+aE
+ZT
+ZT
+ZT
+ip
+lz
+oP
+sk
+iR
+wy
+zy
+Eb
+Jt
+NH
+ZT
+VL
+bR
+VF
+aY
+bR
+Nb
+DY
+Lt
+Zp
+vN
+ak
+KJ
+oi
+KL
+In
+am
+Mf
+jv
+rC
+yk
+rC
+jv
+iw
+WU
+Nw
+pO
+Bn
+GA
+vw
+WF
+yo
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(62,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+bG
+ZT
+ZT
+eJ
+iR
+bR
+bR
+sa
+tG
+wC
+zC
+zC
+zC
+NK
+Ss
+We
+OR
+qu
+CX
+bR
+ct
+DY
+fR
+Fd
+Qd
+QD
+KJ
+DZ
+lI
+Ey
+rD
+rD
+oF
+rD
+qH
+rD
+oF
+da
+ub
+up
+Ox
+Zy
+xd
+RZ
+WF
+FZ
+WA
+WA
+WA
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(63,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+aE
+ZT
+ZT
+eR
+aX
+bR
+bR
+rV
+tF
+wO
+bR
+bR
+bR
+NT
+St
+aX
+bR
+bR
+bR
+bR
+HS
+DY
+RO
+fh
+QU
+uc
+KJ
+OX
+hT
+li
+ZU
+ZU
+ZU
+ZU
+ZU
+ZU
+ZU
+Bv
+ZU
+Ue
+Ue
+Ue
+Ue
+XE
+XE
+XE
+XE
+XE
+XE
+II
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(64,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+aE
+ZT
+ZT
+ZT
+iU
+lP
+lP
+lP
+aX
+wP
+zH
+lP
+lP
+On
+ZT
+bL
+ww
+cQ
+aZ
+EE
+XB
+DY
+lH
+fj
+gF
+Io
+KJ
+cG
+Fb
+AC
+ZU
+VG
+VG
+pD
+yh
+SI
+PE
+SG
+ZU
+Va
+vB
+Xx
+nH
+xT
+Hh
+fO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(65,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+bT
+Vp
+Vp
+Vp
+Vp
+Vp
+Vp
+Vp
+tK
+wQ
+Vp
+Vp
+Vp
+Vp
+Vp
+Pn
+Pn
+Pn
+Pn
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+gI
+iI
+ZQ
+sN
+sN
+VP
+ZU
+bw
+LS
+pE
+BU
+rH
+Wx
+Wi
+ZU
+Va
+vK
+cH
+Sl
+Sa
+Hh
+xL
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(66,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ag
+Vp
+Vp
+dT
+fw
+au
+fw
+oZ
+au
+tQ
+wX
+zI
+oZ
+au
+au
+au
+al
+au
+aB
+Ff
+ZQ
+qK
+vH
+TS
+fr
+gN
+jT
+ZQ
+ZQ
+sN
+VP
+ZU
+DE
+HB
+qM
+qM
+rK
+dt
+SG
+ZU
+UH
+vM
+mL
+nH
+xT
+Hh
+fO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(67,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+as
+Vp
+Vp
+dX
+fy
+jc
+lR
+jc
+jc
+tV
+wZ
+Al
+Al
+Al
+Al
+Al
+Wv
+HY
+Se
+xK
+ZY
+cK
+YW
+FQ
+hs
+FQ
+Xo
+ob
+ZQ
+ZQ
+VP
+ZU
+AA
+Dn
+BU
+pW
+Gr
+dt
+SG
+ZU
+Oi
+vO
+yu
+Sl
+Sa
+Hh
+xL
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(68,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ce
+dk
+ec
+ag
+jd
+je
+je
+ag
+tW
+xe
+ag
+je
+je
+je
+ux
+ag
+ag
+aJ
+tm
+WV
+wd
+dn
+er
+WV
+WV
+Jk
+jI
+hy
+ZQ
+UY
+ZU
+bw
+Qb
+pN
+LH
+yW
+HD
+se
+ZU
+Ni
+RK
+zj
+xc
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+II
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(69,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ce
+dk
+ec
+ag
+je
+je
+je
+je
+ud
+xf
+je
+je
+Ki
+je
+YV
+aQ
+ag
+aJ
+Yj
+ZQ
+IA
+Yd
+et
+dY
+Wn
+Jl
+HR
+Kc
+ZQ
+VP
+ZU
+bP
+bP
+pV
+Xp
+NV
+PE
+SG
+ZU
+Ni
+LU
+Tn
+yy
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+FZ
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(70,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ce
+dk
+ec
+ag
+jl
+lX
+pA
+sn
+uh
+uh
+Au
+Ec
+pH
+Ic
+Km
+cB
+aQ
+aJ
+Yj
+uk
+cx
+Yd
+et
+FV
+VD
+Js
+Yd
+yF
+ZQ
+VP
+ZU
+ZU
+ZU
+ZU
+xQ
+ZU
+ZU
+Bv
+ZU
+YB
+Hh
+lV
+vJ
+nH
+xT
+Hh
+fO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(71,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ce
+dk
+ec
+ag
+jE
+lZ
+pH
+pH
+ui
+pH
+AD
+En
+pH
+pH
+SF
+Ph
+ag
+aJ
+Yj
+uk
+wU
+do
+et
+fx
+gR
+Jw
+FQ
+FQ
+UF
+SV
+WN
+Xa
+LM
+LM
+oE
+GS
+UR
+xp
+aD
+Qw
+gC
+lw
+Fc
+Sl
+Sa
+Hh
+xL
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(72,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ce
+dk
+ec
+ag
+jE
+me
+pH
+pH
+pH
+pH
+AE
+Et
+pH
+pH
+SJ
+Ph
+ag
+aJ
+Yj
+uk
+wU
+do
+et
+Bq
+gR
+zU
+Yd
+Yd
+WV
+IG
+sg
+sg
+gP
+sg
+sg
+KZ
+sg
+sV
+NJ
+Ok
+fz
+lV
+RY
+nH
+xT
+Hh
+fO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(73,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ab
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ce
+dk
+ec
+ag
+jl
+ms
+pS
+sx
+ur
+ur
+AJ
+Eu
+pH
+uj
+YV
+or
+aQ
+aJ
+Yj
+uk
+Vx
+Yd
+et
+fC
+gW
+Jl
+Yd
+JD
+ZQ
+VP
+zR
+zR
+zR
+zR
+zR
+UV
+zR
+sX
+zR
+iv
+zf
+yu
+xt
+Sl
+Sa
+Hh
+xL
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+Nv
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(74,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ce
+dk
+ec
+ag
+je
+je
+je
+je
+uu
+xo
+je
+je
+Kv
+je
+Km
+aQ
+ag
+aJ
+LC
+ZQ
+jg
+gG
+Qy
+fE
+gX
+iK
+HR
+Kc
+ZQ
+VP
+zR
+uZ
+zR
+qt
+Bk
+XQ
+LJ
+XH
+vD
+Hh
+zf
+yu
+LI
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+FZ
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(75,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ce
+dk
+ec
+ag
+jd
+je
+je
+ag
+uy
+xq
+ag
+je
+je
+je
+ux
+ag
+ag
+aJ
+bc
+lM
+MI
+dr
+Ne
+gZ
+gZ
+Kn
+MQ
+YT
+ZQ
+UY
+zR
+va
+OO
+qv
+Kq
+gL
+rQ
+IF
+vD
+Hh
+zf
+zj
+xc
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+XE
+II
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(76,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+as
+Vp
+Vp
+el
+fI
+jP
+my
+jP
+jP
+uC
+xz
+AO
+AO
+AO
+AO
+AO
+Xd
+El
+iZ
+mD
+YC
+Tv
+hd
+hj
+yA
+hj
+YF
+wl
+ZQ
+ZQ
+VP
+zR
+nu
+Ak
+YH
+zp
+EY
+ym
+wu
+vD
+Hh
+xk
+lV
+nH
+xT
+Hh
+fO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(77,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+ag
+Vp
+Vp
+em
+fL
+jW
+fL
+pX
+jW
+uE
+xF
+AU
+pX
+jW
+jW
+jW
+bn
+jW
+gJ
+jX
+ZQ
+th
+zz
+mO
+YY
+hk
+Dw
+ZQ
+ZQ
+sN
+VP
+zR
+mW
+gl
+xa
+uY
+IO
+ng
+Mh
+vD
+UH
+vM
+eX
+Sl
+Sa
+Hh
+xL
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(78,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+bT
+Vp
+Pn
+Pn
+Pn
+Pn
+Pn
+Pn
+tK
+xG
+Pn
+Pn
+Pn
+Pn
+Pn
+Pn
+Pn
+Pn
+Pn
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+ZQ
+AQ
+ZQ
+sN
+sN
+VP
+zR
+va
+OO
+qw
+Vz
+wM
+Gk
+Mh
+Mg
+Va
+vK
+YJ
+nH
+xT
+Hh
+fO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(79,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+ep
+fP
+jZ
+mC
+qy
+rM
+uJ
+xN
+NQ
+EZ
+KA
+ge
+SW
+dp
+De
+py
+bl
+KW
+dc
+IV
+eN
+fK
+hx
+PP
+IV
+PJ
+qJ
+lA
+zR
+yj
+zR
+YS
+il
+lG
+sg
+BL
+zR
+Va
+zN
+ka
+Sl
+Sa
+Hh
+xL
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(80,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+eB
+fQ
+kh
+kh
+qz
+sz
+uK
+xN
+NQ
+xO
+Fj
+ge
+SX
+Xl
+ej
+py
+lW
+Vg
+TB
+IV
+Kd
+Lv
+Gz
+km
+IV
+Jd
+hT
+li
+zR
+zR
+zR
+zR
+zR
+zR
+zR
+sX
+zR
+Ue
+Ue
+Ue
+Ue
+XE
+XE
+XE
+XE
+XE
+XE
+II
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(81,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cI
+dl
+eF
+fU
+ki
+mG
+qA
+sG
+uM
+xP
+NQ
+NQ
+KE
+ge
+ge
+Xm
+ge
+py
+py
+UD
+py
+IV
+uH
+Lv
+hz
+Pa
+IV
+Ew
+lI
+sS
+yw
+yw
+Dj
+yw
+qJ
+yw
+Dj
+Jr
+LW
+Tz
+Ub
+rJ
+xB
+ZW
+PK
+pi
+WA
+WA
+WA
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(82,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+dl
+fV
+kh
+mY
+qR
+rM
+uJ
+xW
+NQ
+Fv
+qn
+Or
+Ta
+rX
+qn
+Sq
+qn
+rX
+tk
+IV
+bm
+Lv
+hH
+iQ
+IV
+le
+YR
+Kp
+np
+nY
+sq
+EI
+qP
+EI
+sq
+Hv
+EN
+OV
+cZ
+FH
+Ik
+Cn
+PK
+Ly
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(83,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+dI
+dl
+hc
+kh
+mY
+qS
+rM
+uQ
+yb
+AX
+qn
+qn
+qn
+qn
+rX
+Cw
+qn
+Cw
+rX
+BO
+IV
+IV
+IV
+IV
+IV
+IV
+VW
+Zr
+QT
+QT
+oU
+QT
+QT
+QT
+QT
+QT
+VH
+rJ
+rJ
+YZ
+Ky
+XS
+PK
+PK
+Ly
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(84,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+he
+fU
+mY
+qT
+rM
+uJ
+yp
+Bw
+FB
+FB
+FB
+FB
+Xy
+Gg
+lY
+WO
+su
+FB
+Qj
+Tk
+NQ
+iS
+aU
+NQ
+VW
+Zr
+iG
+Qh
+Zz
+bo
+wg
+dW
+TH
+cA
+sJ
+PK
+PK
+vV
+Lm
+PK
+PK
+yn
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(85,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+dl
+kl
+mY
+qU
+rM
+uJ
+xW
+NQ
+tJ
+KG
+qn
+qn
+Xz
+ZV
+Hm
+WE
+tp
+qn
+IT
+eO
+NQ
+iS
+Oj
+NQ
+VW
+Zr
+Sn
+Ab
+DL
+BW
+OP
+Mr
+Mr
+ss
+yz
+yz
+PK
+uN
+GY
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(86,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cI
+dl
+ky
+nf
+qz
+sz
+uK
+ys
+NQ
+tJ
+KG
+qn
+af
+XC
+zS
+Mt
+No
+YM
+qn
+IT
+qn
+JA
+iS
+GI
+NQ
+VW
+Zr
+xE
+Gi
+XY
+hu
+QE
+qQ
+oa
+oW
+yz
+yz
+PK
+yT
+PK
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(87,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+kF
+fU
+rb
+sY
+uS
+yt
+NQ
+tJ
+KG
+qn
+qn
+qn
+hB
+KG
+KG
+KG
+KG
+dC
+Ww
+NQ
+nS
+iS
+NQ
+VW
+Zr
+iX
+nq
+Dr
+qQ
+oa
+nr
+og
+QO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(88,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+dl
+ny
+rl
+rM
+uJ
+xW
+NQ
+tJ
+KP
+OQ
+Tc
+qn
+hB
+tJ
+tJ
+CP
+tJ
+dG
+Cw
+NQ
+Ns
+iS
+NQ
+VW
+Zr
+iX
+qQ
+oa
+nr
+og
+oW
+QO
+XO
+yz
+yz
+yz
+yO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(89,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+dI
+dl
+nz
+rE
+rM
+uV
+xW
+NQ
+NQ
+NQ
+NQ
+NQ
+XD
+Yf
+NQ
+NQ
+NQ
+NQ
+NQ
+Gl
+NQ
+hL
+iW
+NQ
+VW
+EA
+Cf
+nr
+og
+oW
+QO
+QO
+XO
+XO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(90,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+nA
+rF
+rM
+uJ
+yb
+BJ
+BJ
+BJ
+OT
+BJ
+uK
+DR
+BJ
+OT
+BJ
+ow
+NQ
+NQ
+NQ
+NQ
+NQ
+NQ
+VW
+EA
+QO
+oW
+QO
+QO
+XO
+XO
+XO
+XO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(91,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+dl
+rM
+rM
+uW
+yv
+BP
+BP
+BP
+OY
+BP
+XF
+Ko
+BP
+OY
+BP
+Rg
+bh
+JW
+bh
+yP
+QH
+QH
+nh
+EA
+QO
+QO
+XO
+XO
+XO
+XO
+XO
+XO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(92,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cI
+dl
+rM
+rM
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+XV
+XR
+ch
+ch
+ch
+ch
+ch
+ch
+ch
+hv
+Zr
+Zr
+EA
+EA
+pM
+XO
+XO
+XO
+XO
+XO
+XO
+XO
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(93,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+rM
+rM
+ch
+yx
+fN
+FL
+Ld
+ch
+Ti
+Yh
+Cp
+Ug
+ch
+uT
+Zv
+fN
+tL
+ch
+hW
+xv
+LZ
+mT
+pn
+XO
+XO
+XO
+XO
+XO
+XO
+Dm
+CD
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(94,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+dl
+rM
+ch
+yD
+BQ
+FR
+Le
+Pb
+Tw
+Yp
+HH
+ia
+Pb
+Pi
+Yo
+xh
+BN
+ch
+Mb
+MM
+mT
+mT
+pn
+XO
+XO
+XO
+XO
+Dm
+CD
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(95,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+dI
+dl
+rM
+ch
+yE
+BT
+GE
+Lp
+Py
+TY
+YA
+dP
+lO
+RL
+RQ
+GE
+BY
+OL
+ch
+hN
+hS
+mT
+kO
+yz
+XO
+XO
+Dm
+CD
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(96,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+kP
+rM
+ch
+ch
+ch
+ch
+LT
+PL
+Ua
+Zh
+hY
+dZ
+UM
+nT
+ch
+ch
+ch
+ch
+hS
+mT
+mT
+pn
+yz
+Dm
+CD
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(97,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+cr
+dl
+ch
+ch
+yK
+fN
+GH
+Mw
+Qc
+Uy
+ZB
+Mk
+VM
+Je
+hO
+Zv
+fN
+tL
+ch
+hS
+mT
+ts
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(98,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+rR
+ch
+ch
+yR
+BQ
+GN
+ME
+Pb
+UA
+ZF
+zX
+OK
+Pb
+AV
+Yo
+BQ
+cM
+ch
+ch
+mT
+pn
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(99,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+rS
+ch
+ch
+yV
+BY
+GE
+MY
+ch
+ch
+ch
+ch
+ch
+ch
+Yq
+GE
+BY
+OL
+ch
+ch
+pn
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(100,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+sZ
+ch
+ch
+ch
+ch
+ch
+ch
+sZ
+rS
+rS
+rR
+ch
+ch
+ch
+ch
+ch
+ch
+sZ
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(101,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+rS
+rS
+rS
+rR
+rS
+rS
+yz
+yz
+yz
+yz
+rS
+rS
+rS
+rR
+rS
+rS
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(102,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(103,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(104,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(105,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(106,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(107,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(108,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(109,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(110,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(111,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(112,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(113,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(114,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(115,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(116,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(117,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(118,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(119,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(120,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(121,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(122,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(123,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(124,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(125,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(126,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(127,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(128,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(129,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+oN
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(130,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(131,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(132,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(133,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(134,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(135,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(136,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(137,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(138,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(139,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
+(140,1,1) = {"
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+yz
+"}
diff --git a/maps/submaps/admin_use_vr/mercship.dm b/maps/submaps/admin_use_vr/mercship.dm
new file mode 100644
index 0000000000..90fd407614
--- /dev/null
+++ b/maps/submaps/admin_use_vr/mercship.dm
@@ -0,0 +1,264 @@
+ // Compile in the map for CI testing if we're testing compileability of all the maps
+#if MAP_TEST
+#include "mercship.dmm"
+#endif
+
+
+// Map template for spawning the shuttle
+/datum/map_template/om_ships/manta_ship
+ name = "OM Ship - Mercenary Cruiser (New Z)"
+ desc = "Mercenary Manta Cruiser."
+ mappath = 'kk_mercship.dmm'
+
+// The ship's area(s)
+/area/ship/manta
+ name = "\improper ERT Ship (Use a Subtype!)"
+ icon_state = "shuttle2"
+ requires_power = 1
+ dynamic_lighting = 1
+
+/area/ship/manta/engine
+ name = "\improper Mercenary Cruiser - Engine Bay"
+ icon_state = "engine"
+
+/area/ship/manta/engineering
+ name = "\improper Mercenary Cruiser - Engineering Control Room"
+ icon_state = "engine_monitoring"
+
+/area/ship/manta/bridge
+ name = "\improper Mercenary Cruiser - Bridge"
+ icon_state = "syndie-control"
+
+/area/ship/manta/atmos
+ name = "\improper Mercenary Cruiser - Atmospherics"
+ icon_state = "atmos"
+
+/area/ship/manta/mech_bay
+ name = "\improper Mercenary Cruiser - Mech Bay"
+ icon_state = "mechbay"
+
+/area/ship/manta/armoury_st
+ name = "\improper Mercenary Cruiser - Standard Armoury"
+ icon_state = "armory"
+
+/area/ship/manta/armoury_as
+ name = "\improper Mercenary Cruiser - Assault Armoury"
+ icon_state = "Tactical"
+
+/area/ship/manta/hangar
+ name = "\improper Mercenary Cruiser - Hangar"
+ icon_state = "hangar"
+
+/area/ship/manta/barracks
+ name = "\improper Mercenary Cruiser - Barracks"
+ icon_state = "syndie-elite"
+
+/area/ship/manta/barracks/bed_1
+ name = "\improper Mercenary Cruiser - Bunkroom 1"
+ icon_state = "syndie-elite"
+
+/area/ship/manta/barracks/bed_2
+ name = "\improper Mercenary Cruiser - Bunkroom 2"
+ icon_state = "syndie-elite"
+
+/area/ship/manta/med
+ name = "\improper Mercenary Cruiser - Medical"
+ icon_state = "medbay"
+
+/area/ship/manta/hallways_star
+ name = "\improper Mercenary Cruiser - Starboard Corridors"
+ icon_state = "smaint"
+
+/area/ship/manta/hallways_port
+ name = "\improper Mercenary Cruiser - Port Corridors"
+ icon_state = "pmaint"
+
+/area/ship/manta/hallways_aft
+ name = "\improper Mercenary Cruiser - Aft Corridors"
+ icon_state = "green"
+
+/area/ship/manta/dock_star
+ name = "\improper Mercenary Cruiser - Starboard Airlock"
+ icon_state = "exit"
+
+/area/ship/manta/dock_port
+ name = "\improper Mercenary Cruiser - Port Airlock"
+ icon_state = "exit"
+
+/area/ship/manta/radiator_star
+ name = "\improper Mercenary Cruiser - Starboard Radiator Array"
+ icon_state = "east"
+
+/area/ship/manta/radiator_port
+ name = "\improper Mercenary Cruiser - Port Radiator Array"
+ icon_state = "west"
+
+/area/ship/manta/teleporter
+ name = "\improper Mercenary Cruiser - Teleporter"
+ icon_state = "teleporter"
+
+/area/ship/manta/commander
+ name = "\improper Mercenary Cruiser - Commander's Room"
+ icon_state = "head_quarters"
+
+/area/ship/manta/holding
+ name = "\improper Mercenary Cruiser - Holding Cells"
+ icon_state = "brig"
+
+/area/ship/manta/recreation
+ name = "\improper Mercenary Cruiser - Recreation & Supplies"
+ icon_state = "recreation_area"
+
+/area/shuttle/manta_ship_boat
+ name = "\improper Boarding Craft"
+ icon_state = "syndie-ship"
+ requires_power = 0
+
+// The 'shuttle' of the excursion shuttle
+// /datum/shuttle/autodock/overmap/manta_ship
+// name = "Unknown Vessel"
+// warmup_time = 0
+// current_location = "tether_excursion_hangar"
+// docking_controller_tag = "expshuttle_docker"
+// shuttle_area = list(/area/ship/manta/engineering, /area/ship/manta/engineeringcntrl, /area/ship/manta/bridge, /area/ship/manta/atmos, /area/ship/manta/air, /area/ship/manta/engine, /area/ship/manta/engine1, /area/ship/manta/armoury, /area/ship/manta/hangar, /area/ship/manta/barracks, /area/ship/manta/fighter, /area/ship/manta/med, /area/ship/manta/med1, /area/ship/manta/hall1, /area/ship/manta/hall2)
+// fuel_consumption = 3
+
+// The 'ship'
+/obj/effect/overmap/visitable/ship/manta_ship
+ name = "SAARE Typhon Four-Niner"
+ desc = "Spacefaring vessel. Broadcasting Private Military Contractor IFF."
+ scanner_desc = @{"[i]Registration[/i]: SAARE Mercenary Cruiser [i]Typhon Four-Niner[/i]
+[i]Class[/i]: [i]Manta[/i]-class Cruiser
+[i]Transponder[/i]: Broadcasting (PMC)
+[b]Notice[/b]: SAARE are unlikely to tolerate civilian or corporate personnel interfering with their affairs. Approach with caution."}
+ color = "#333333" //TACTICAL BLACK
+ vessel_mass = 8000
+ vessel_size = SHIP_SIZE_LARGE
+ initial_generic_waypoints = list("manta_ship_near_fore", "manta_ship_near_aft", "manta_ship_near_port", "manta_ship_near_star", "manta_ship_port", "manta_ship_star", "manta_ship_base_dock", "omship_spawn_manta_lander")
+// initial_restricted_waypoints = list("Mercenary Cruiser's Bay" = list("omship_spawn_manta_lander"))
+
+/obj/effect/landmark/map_data/manta_ship
+ height = 1
+
+/obj/effect/shuttle_landmark/premade/manta_ship_port
+ name = "SAARE Cruiser - Port Airlock"
+ landmark_tag = "manta_ship_port"
+
+/obj/effect/shuttle_landmark/premade/manta_ship_star
+ name = "SAARE Cruiser - Starboard Airlock"
+ landmark_tag = "manta_ship_star"
+
+/obj/effect/shuttle_landmark/premade/manta_ship_near_fore
+ name = "Near SAARE Cruiser (Fore)"
+ landmark_tag = "manta_ship_near_fore"
+
+/obj/effect/shuttle_landmark/premade/manta_ship_near_aft
+ name = "Near SAARE Cruiser (Aft)"
+ landmark_tag = "manta_ship_near_aft"
+
+/obj/effect/shuttle_landmark/premade/manta_ship_near_port
+ name = "Near SAARE Cruiser (Port)"
+ landmark_tag = "manta_ship_near_port"
+
+/obj/effect/shuttle_landmark/premade/manta_ship_near_star
+ name = "Near SAARE Cruiser (Starboard)"
+ landmark_tag = "manta_ship_near_star"
+
+// The shuttle's 'shuttle' computer
+/obj/machinery/computer/shuttle_control/explore/manta_ship_boat
+ name = "boat control console"
+ shuttle_tag = "Boarding Craft"
+
+// A shuttle lateloader landmark
+/obj/effect/shuttle_landmark/shuttle_initializer/manta_ship_boat
+ name = "Mercenary Cruiser's Bay"
+ base_area = /area/ship/manta/hangar
+ base_turf = /turf/simulated/floor/plating
+ landmark_tag = "omship_spawn_manta_lander"
+ docking_controller = "manta_boarding_shuttle_dock"
+ shuttle_type = /datum/shuttle/autodock/overmap/manta_ship_boat
+
+// The 'shuttle'
+/obj/machinery/computer/shuttle_control/explore/manta_ship_boat
+ name = "LC control console"
+ shuttle_tag = "Boarding Craft"
+ req_one_access = list(150)
+
+/datum/shuttle/autodock/overmap/manta_ship_boat
+ name = "Boarding Craft"
+ current_location = "omship_spawn_manta_lander"
+ docking_controller_tag = "manta_boarding_shuttle"
+ shuttle_area = /area/shuttle/manta_ship_boat
+ fuel_consumption = 0 //this thing is too big already, let's just handwave everything
+ defer_initialisation = TRUE
+
+/obj/effect/overmap/visitable/ship/landable/manta_ship_boat
+ scanner_name = "Unknown Landing Craft"
+ desc = "Spacefaring vessel. No IFF detected."
+ scanner_desc = @{"[i]Registration[/i]: None detected.
+[i]Class[/i]: Unknown (Frigate-approximate Mass)
+[i]Transponder[/i]: Not Responding
+[b]Notice[/b]: Failure to broadcast a valid IFF signal via transponder is a breach of numerous interstellar codes. Approach with caution."}
+ color = "#3366FF"
+ color = "#333333" //TACTICAL BLACK
+ vessel_mass = 500
+ vessel_size = SHIP_SIZE_TINY
+ shuttle = "Boarding Craft"
+
+/obj/machinery/cryopod/manta_ship
+ announce_channel = "Mercenary"
+ on_store_message = "has entered cryogenic storage."
+ on_store_name = "Mercenary Cruiser Cryo"
+ on_enter_visible_message = "starts climbing into the"
+ on_enter_occupant_message = "You feel cool air surround you. You go numb as your senses turn inward."
+ on_store_visible_message_1 = "hums and hisses as it moves"
+ on_store_visible_message_2 = "into cryogenic storage."
+
+//Misc Stuff
+/obj/item/weapon/paper/manta_shields
+ name = "Shield Setup"
+ info = {"To All Personnel,
\
+The cruiser's shield generator is intended to keep asteroids and pesky railgun rounds off our ass, so make sure you use it if we get into a scuffle.
\
+
\
+Recommended settings as follows:
\
+Photonic: Off (or else the point defense won't work!!)
\
+Electromagnetic: On
\
+Humanoid: Off
\
+Atmosphere: Off
\
+Hull Shield: On
\
+Radius: 26
\
+
\
+The shield generator's a hungry beast and will drain the cruiser's reserves fairly quick, so don't overuse it. Don't be afraid to use it either, as this ship's a serious investment. If you fuck up, I won't be sticking my neck out for you, you get me? This 'Lieutenant Commander Sykes' asshole is enough of a pain already.
\
+
\
+Capt. Thorne"}
+
+/obj/item/weapon/paper/manta_new_personnel_brief
+ name = "Fresh Personnel Primer"
+ info = {"To All New Personnel,
\
+Welcome to your new home, the SAARE Typhon Four-Niner. This Manta-class Cruiser is equipped with everything you should ever need to conduct operations against any target we may encounter during our contracts. If you're reading this, you're probably in the Barracks right now; at the outer edge of the starboard wing are the Holding Cells. To the fore of the barracks is the Medbay, pray you don't end up there.
\
+
\
+Front and center is the Landing Craft Hangar, and just behind that is the Bridge. Off the Bridge, you'll find my quarters and the teleporter room. Aft of the Bridge is Engineering and the Engine Bay; I suggest steering clear unless you want to get an accidental dose of radiation. Engineering is flanked by the Radiator Arrays which are supposed to help keep our heat signature under control, as well as a pair of small airlocks.
\
+
\
+Finally, over in the port wing you'll find the recreation area and kitchen along with all of the armory and outfitting space for weapons, armor, and even our mech. If you somehow get authorization to take that out you better bring it back in one piece, by the way; it wasn't cheap. If it gets wrecked I'm taking the repair and replacement costs out of your paychecks until it's paid off.
\
+
\
+You don't want to know how long it's going to take to pay off.
\
+
\
+Capt. Thorne"}
+
+/obj/item/weapon/paper/manta_approach_tactics
+ name = "Installation Approach"
+ info = {"To All Personnel,
\
+Word of advice: this ship isn't exactly sneaky, despite our best efforts. If we pull up around a major site they're going to notice. Now sure we have the whole transponder thing that should throw them off for a bit, but sooner or later they're gonna catch on, especially if you go in loud. Fortunately for you all, our handy-dandy little landing craft is stealthy, and can get you aboard most ships, stations, or outposts without too much fuss. Better yet it's an all-passive system, so you don't even need to turn it on or worry about some idiot accidentally turning it off.
\
+
\
+We've also been supplied with a few packs of 'liberated' SAARE gear for use as disguises, so use them if you need to. Sometimes the stealthy approach is the best path.
\
+
\
+Capt. Thorne"}
+
+/obj/item/weapon/paper/manta_prisoners
+ name = "Prisoner Management"
+ info = {"To All Personnel,
\
+I don't care if they're 'not being cooperative', for the love of fuck if another high-value prisoner 'disappears' under your watch you are fucking next, do I make myself clear? I don't care if it's some schmuck we picked up during a raid who happened to be in the wrong place at the wrong time, but if it's someone we're trying to extract information from or ransom or whatever then they better not vanish.
\
+
\
+Capt. Thorne
\
+
\
+P.S. If you gotta cut 'em up or whatever try not to make too much of a mess, and clean up when you're done. Don't trail blood all over my damn ship, and don't get them killed by infections either."}
\ No newline at end of file
diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm
index 57feeafecd..01df663296 100644
--- a/maps/tether/submaps/_tether_submaps.dm
+++ b/maps/tether/submaps/_tether_submaps.dm
@@ -54,18 +54,33 @@
//////////////////////////////////////////////////////////////////////////////
//Antag/Event/ERT Areas
+
+#include "../../submaps/admin_use_vr/ert.dm"
+#include "../../submaps/admin_use_vr/mercship.dm"
+
+/*
+//not loading this here, it's already defined in the ert.dm
/datum/map_template/admin_use/ert
name = "Special Area - ERT"
desc = "It's the ERT ship! Lorge."
mappath = 'maps/submaps/admin_use_vr/ert.dmm'
+*/
/datum/map_template/admin_use/trader
name = "Special Area - Trader"
desc = "Big trader ship."
mappath = 'maps/submaps/admin_use_vr/tradeship.dmm'
+/*
+//not loading this here, it's already defined in the mercship.dm
/datum/map_template/admin_use/mercenary
- name = "Special Area - Merc Base"
+ name = "Special Area - Merc Ship"
+ desc = "Prepare tae be boarded, arr!"
+ mappath = 'maps/submaps/admin_use_vr/kk_mercship.dmm'
+*/
+
+/datum/map_template/admin_use/old_mercenary
+ name = "Special Area - Old Merc Base"
desc = "So much red!"
mappath = 'maps/submaps/admin_use_vr/mercbase.dmm'
@@ -330,8 +345,6 @@
#if AWAY_MISSION_TEST
#include "../../submaps/admin_use_vr/spa.dmm"
#endif
-
-#include "../../submaps/admin_use_vr/ert.dm"
#include "../../submaps/admin_use_vr/fun.dm"
/datum/map_template/tether_lateload/fun/spa
name = "Space Spa"
From a37c7db48b1954dd2d0ac73227b7326cddd6a172 Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Sat, 12 Sep 2020 15:57:06 +0100
Subject: [PATCH 13/13] various adjustments and updates
---
maps/submaps/admin_use_vr/ert.dm | 15 +-
maps/submaps/admin_use_vr/ert.dmm | 250 ++++----
maps/submaps/admin_use_vr/kk_mercship.dmm | 686 +++++++++++-----------
maps/submaps/admin_use_vr/mercship.dm | 29 +-
maps/tether/submaps/_tether_submaps.dm | 6 -
5 files changed, 484 insertions(+), 502 deletions(-)
diff --git a/maps/submaps/admin_use_vr/ert.dm b/maps/submaps/admin_use_vr/ert.dm
index a41e82357f..3921de0f26 100644
--- a/maps/submaps/admin_use_vr/ert.dm
+++ b/maps/submaps/admin_use_vr/ert.dm
@@ -107,7 +107,7 @@
/obj/effect/overmap/visitable/ship/ert_ship
name = "NRV Von Braun"
desc = "Spacefaring vessel. Broadcasting Corporate Emergency Responder IFF."
- scanner_desc = @{"[i]Registration[/i]: Nanotrasen Rapid Response Vessel [i]Von Braun[/i]
+ scanner_desc = @{"[i]Registration[/i]: Nanotrasen RRV Von Braun
[i]Class[/i]: [i]Kepler[/i]-class Frigate
[i]Transponder[/i]: Broadcasting (ER-CORP)
[b]Notice[/b]: Impeding or interfering with emergency response vessels is a breach of numerous interstellar codes. Approach with caution."}
@@ -200,8 +200,17 @@ EM: On
\
Humanoids: Off
\
Atmospheric: Off
\
Hull Shield: On
\
-Radius: 26
\
+Radius: 42
\
\
The shield generator will tax the Von Braun's reserves greatly so try to use it sparingly. Do not be afraid to use it however, as the Von Braun represents the Company making a significant investment in this sector's future. I can bail you out if the occasional intern goes missing or you break something minor, but if you go flying this thing through an asteroid belt and get massive holes blown in it Central will make everyone involved disappear permanently.
\
\
-Lt. Cmdr. Sykes"}
\ No newline at end of file
+Lt. Cmdr. Sykes"}
+
+/obj/machinery/computer/cryopod/ert
+ name = "responder oversight console"
+ desc = "An interface between responders and the cryo oversight systems tasked with keeping track of all responders who enter or exit cryostasis."
+ circuit = "/obj/item/weapon/circuitboard/robotstoragecontrol"
+
+ storage_type = "responders"
+ storage_name = "ERT Oversight Control"
+ allow_items = 1
\ No newline at end of file
diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm
index 563024084f..ce4c104a66 100644
--- a/maps/submaps/admin_use_vr/ert.dmm
+++ b/maps/submaps/admin_use_vr/ert.dmm
@@ -165,7 +165,7 @@
/obj/item/weapon/surgical/bone_clamp,
/obj/item/weapon/surgical/scalpel/manager,
/obj/item/weapon/surgical/circular_saw/manager,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"aV" = (
/obj/machinery/power/pointdefense{
@@ -177,15 +177,6 @@
/turf/space,
/turf/space,
/area/space)
-"bj" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/med_surg)
"bp" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/floor/tiled/techfloor,
@@ -303,7 +294,7 @@
/area/ship/ert/hallways_aft)
"cO" = (
/obj/machinery/computer/operating,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"cP" = (
/obj/machinery/recharge_station,
@@ -717,7 +708,9 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
"ga" = (
-/obj/structure/sign/department/operational,
+/obj/structure/sign/department/operational{
+ name = "MEDICAL & SURGERY"
+ },
/turf/simulated/wall/shull,
/area/ship/ert/med_surg)
"gf" = (
@@ -727,7 +720,7 @@
/obj/machinery/light/no_nightshift{
dir = 8
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"gh" = (
/obj/machinery/mech_recharger,
@@ -869,13 +862,13 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/armoury_dl)
"gZ" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"ha" = (
/obj/structure/cable/yellow{
@@ -923,7 +916,7 @@
/obj/machinery/light/no_nightshift{
dir = 8
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"hx" = (
/obj/structure/cable/yellow{
@@ -982,7 +975,7 @@
pixel_y = -23
},
/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"hU" = (
/obj/structure/cable/yellow{
@@ -1044,7 +1037,7 @@
/turf/simulated/floor/reinforced/airless,
/area/ship/ert/hangar)
"ij" = (
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"ik" = (
/obj/structure/cable/yellow{
@@ -1109,17 +1102,11 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
"iW" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
+ dir = 10
},
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/barracks)
+/turf/simulated/floor/tiled/white,
+/area/ship/ert/med_surg)
"iX" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 4
@@ -1131,11 +1118,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
"jv" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
+/obj/machinery/computer/cryopod/ert{
+ pixel_y = 32
},
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/barracks)
+/turf/simulated/floor/tiled/white,
+/area/ship/ert/med_surg)
"jz" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
/turf/simulated/floor/tiled/techmaint,
@@ -1475,7 +1462,7 @@
/obj/item/weapon/reagent_containers/blood/OMinus,
/obj/item/weapon/reagent_containers/blood/OMinus,
/obj/effect/floor_decal/industrial/outline,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"mj" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -1552,16 +1539,18 @@
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"mI" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
/obj/machinery/door/firedoor/multi_tile{
- dir = 1
+ dir = 1;
+ req_one_access = list(103)
+ },
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ req_one_access = list(103)
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
@@ -1585,7 +1574,7 @@
/obj/machinery/sleep_console{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"mR" = (
/obj/structure/cable/yellow{
@@ -1627,9 +1616,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
"mZ" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -1644,6 +1630,10 @@
/obj/machinery/door/firedoor/multi_tile{
dir = 1
},
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
"na" = (
@@ -1735,10 +1725,13 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/mech_bay)
"nq" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
},
-/turf/simulated/floor/tiled/techmaint,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"nt" = (
/obj/structure/cable/yellow{
@@ -2023,7 +2016,7 @@
pixel_x = 12;
pixel_y = 8
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"pd" = (
/obj/structure/table/rack/steel,
@@ -2074,7 +2067,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"pq" = (
/obj/structure/table/steel_reinforced,
@@ -2103,9 +2096,6 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/barracks)
"pz" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
- },
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -2120,6 +2110,10 @@
/obj/machinery/door/firedoor/multi_tile{
dir = 1
},
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/med)
"pA" = (
@@ -2211,7 +2205,7 @@
/area/space)
"pU" = (
/obj/machinery/body_scanconsole,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"pV" = (
/turf/simulated/wall/shull,
@@ -2377,20 +2371,6 @@
/obj/effect/floor_decal/industrial/outline/red,
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/mech_bay)
-"ra" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
-/obj/machinery/door/firedoor/multi_tile,
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hallways)
"rp" = (
/obj/structure/table/rack/steel,
/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy,
@@ -2633,7 +2613,7 @@
/area/ship/ert/eng_storage)
"sT" = (
/obj/machinery/cryopod/ert_ship,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"sU" = (
/obj/structure/cable/yellow{
@@ -2664,12 +2644,12 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
"ta" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
- },
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hangar)
"tb" = (
@@ -2696,11 +2676,11 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/dock_star)
"tx" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 1
},
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hangar)
+/turf/simulated/floor/tiled/white,
+/area/ship/ert/med_surg)
"tA" = (
/obj/structure/cable/yellow{
d1 = 1;
@@ -2901,7 +2881,7 @@
/obj/machinery/light/no_nightshift{
dir = 4
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"vd" = (
/obj/machinery/atmospherics/pipe/tank/phoron{
@@ -2990,9 +2970,6 @@
/turf/simulated/wall/rshull,
/area/ship/ert/bridge)
"wi" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
- },
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -3001,6 +2978,9 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/firedoor/multi_tile,
+/obj/machinery/door/airlock/multi_tile/glass{
+ req_one_access = list(103)
+ },
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways)
"wl" = (
@@ -3034,7 +3014,7 @@
/area/ship/ert/teleporter)
"wp" = (
/obj/machinery/sleep_console,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"wr" = (
/obj/machinery/shipsensors{
@@ -3055,12 +3035,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/med)
-"wL" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/hallways)
"wO" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
@@ -3086,7 +3060,7 @@
/area/ship/ert/med)
"wZ" = (
/obj/machinery/oxygen_pump/anesthetic,
-/turf/simulated/wall/rshull,
+/turf/simulated/wall/shull,
/area/ship/ert/med_surg)
"xe" = (
/obj/structure/cable/yellow{
@@ -3250,7 +3224,7 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"xZ" = (
/obj/structure/table/rack/steel,
@@ -3454,7 +3428,7 @@
/obj/machinery/firealarm/alarms_hidden{
pixel_y = 26
},
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"zc" = (
/turf/simulated/wall/shull,
@@ -3922,10 +3896,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/ert/engine)
"CP" = (
-/obj/machinery/atmospherics/unary/vent_pump/on{
+/obj/machinery/door/firedoor/multi_tile{
dir = 1
},
-/turf/simulated/floor/tiled/techmaint,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ req_one_access = list(103)
+ },
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"CT" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
@@ -4486,7 +4464,7 @@
pixel_y = -24
},
/obj/structure/cable/yellow,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"GU" = (
/obj/effect/floor_decal/corner/red{
@@ -4626,12 +4604,12 @@
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/ert_ship_boat)
"HK" = (
+/obj/machinery/shield_diffuser,
/obj/machinery/door/blast/regular/open{
dir = 2;
id = "ERT_Blast_Windows";
name = "Blast Shield"
},
-/obj/machinery/shield_diffuser,
/obj/machinery/door/blast/regular{
id = "ERT_Shuttle_Fore"
},
@@ -5274,7 +5252,7 @@
d2 = 8;
icon_state = "2-8"
},
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"LC" = (
/obj/structure/table/rack/steel,
@@ -5301,7 +5279,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 1
},
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"LR" = (
/obj/machinery/door/airlock/external,
@@ -5332,13 +5310,13 @@
/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
dir = 1
},
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"Mb" = (
/obj/machinery/computer/operating{
dir = 1
},
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"Md" = (
/obj/structure/table/rack/steel,
@@ -5420,7 +5398,7 @@
pixel_y = 8
},
/obj/structure/medical_stand,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"MD" = (
/obj/effect/floor_decal/corner/red{
@@ -5566,7 +5544,7 @@
/area/ship/ert/commander)
"NJ" = (
/obj/machinery/optable,
-/turf/simulated/floor/tiled/techfloor,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"NP" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -6011,7 +5989,7 @@
dir = 1;
pixel_y = -26
},
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"PH" = (
/obj/machinery/power/smes/buildable/point_of_interest,
@@ -6200,7 +6178,7 @@
name = "Medical Bay";
req_access = list(103)
},
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"Rw" = (
/obj/machinery/vending/security,
@@ -6380,7 +6358,13 @@
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/hallways_aft)
"SB" = (
-/turf/simulated/floor/tiled/techmaint,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"SD" = (
/obj/structure/table/rack,
@@ -6481,7 +6465,7 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/simulated/floor/tiled/techmaint,
+/turf/simulated/floor/tiled/white,
/area/ship/ert/med_surg)
"TG" = (
/obj/structure/grille,
@@ -7108,12 +7092,6 @@
},
/turf/simulated/floor/tiled/techmaint,
/area/ship/ert/bridge)
-"ZR" = (
-/obj/machinery/door/airlock/glass{
- req_one_access = list(103)
- },
-/turf/simulated/floor/tiled/techmaint,
-/area/ship/ert/med)
"ZT" = (
/turf/simulated/wall/rshull,
/area/ship/ert/med)
@@ -16901,7 +16879,7 @@ GM
VO
ZY
FM
-ra
+wi
Zi
Zi
Zi
@@ -17033,7 +17011,7 @@ Jd
mF
ip
ip
-wL
+BW
Bc
BW
Js
@@ -17043,7 +17021,7 @@ BW
VP
sX
Jf
-wL
+BW
Br
Br
Br
@@ -17313,7 +17291,7 @@ kO
Zo
Bo
Bo
-iW
+Jd
mI
Bo
tH
@@ -17330,7 +17308,7 @@ Rz
Yd
ZT
yI
-ZR
+QT
pz
KI
KI
@@ -18591,7 +18569,7 @@ kO
Zo
Bo
Bo
-jv
+ip
mZ
Bo
tH
@@ -19020,7 +18998,7 @@ fj
jD
JM
ip
-tx
+Tl
JE
Nf
Nf
@@ -19461,7 +19439,7 @@ dk
dq
gf
TF
-SB
+ij
hv
dq
MZ
@@ -19603,7 +19581,7 @@ Nz
nl
pU
TF
-SB
+ij
wp
dq
MZ
@@ -20028,8 +20006,8 @@ WC
Zx
nl
pb
-bj
-SB
+nq
+ij
MC
dq
MZ
@@ -20169,10 +20147,10 @@ og
WC
Zx
nl
-MZ
+dq
zb
PG
-MZ
+dq
dq
MZ
ci
@@ -20312,8 +20290,8 @@ WC
Zx
nl
aQ
-bj
-SB
+nq
+ij
aQ
dq
MZ
@@ -20454,8 +20432,8 @@ WC
Zx
nl
cO
-bj
-SB
+nq
+ij
Mb
dq
MZ
@@ -20596,8 +20574,8 @@ WC
Zx
nl
NJ
-bj
-SB
+nq
+ij
NJ
dq
MZ
@@ -20736,7 +20714,7 @@ HO
WC
WC
Zx
-nl
+dq
wZ
gZ
CP
@@ -20878,10 +20856,10 @@ HO
WC
WC
Zx
-nl
+dq
ij
nq
-LJ
+ij
ij
dq
MZ
@@ -21023,7 +21001,7 @@ zr
dq
mN
SB
-SB
+tx
mN
dq
MZ
@@ -21164,8 +21142,8 @@ QE
Ff
dq
vb
-SB
-SB
+iW
+LJ
vb
dq
MZ
@@ -21306,8 +21284,8 @@ CH
yX
MZ
dq
-sT
-sT
+jv
+ij
dq
MZ
MZ
@@ -21448,8 +21426,8 @@ za
hW
MZ
MZ
-dq
-dq
+sT
+sT
MZ
MZ
Cr
diff --git a/maps/submaps/admin_use_vr/kk_mercship.dmm b/maps/submaps/admin_use_vr/kk_mercship.dmm
index 0a8492edd4..bb3ee7cabe 100644
--- a/maps/submaps/admin_use_vr/kk_mercship.dmm
+++ b/maps/submaps/admin_use_vr/kk_mercship.dmm
@@ -7,10 +7,6 @@
/obj/effect/shuttle_landmark/premade/manta_ship_near_port,
/turf/space,
/area/space)
-"af" = (
-/obj/structure/flora/pottedplant/mysterious,
-/turf/simulated/floor/wood,
-/area/ship/manta/barracks)
"ag" = (
/turf/simulated/floor/reinforced,
/area/ship/manta/hangar)
@@ -189,12 +185,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
-"aQ" = (
-/obj/machinery/atmospherics/unary/engine{
- dir = 1
- },
-/turf/simulated/floor/reinforced,
-/area/shuttle/manta_ship_boat)
"aS" = (
/obj/item/weapon/cell/device/weapon,
/obj/item/weapon/cell/device/weapon,
@@ -226,9 +216,7 @@
dir = 4
},
/obj/structure/curtain/open/shower,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
+/turf/simulated/floor/tiled/freezer,
/area/ship/manta/barracks)
"aX" = (
/obj/effect/floor_decal/techfloor/corner{
@@ -246,6 +234,9 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
+/obj/item/weapon/storage/box/syndie_kit/imp_uplink,
+/obj/item/weapon/storage/box/syndie_kit/imp_uplink,
+/obj/item/weapon/storage/box/syndie_kit/imp_uplink,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"aZ" = (
@@ -376,6 +367,15 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
+"bv" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
"bw" = (
/obj/machinery/atmospherics/pipe/manifold/visible{
dir = 1
@@ -391,9 +391,7 @@
},
/obj/machinery/appliance/cooker/fryer,
/obj/effect/floor_decal/corner/black,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"bA" = (
/obj/structure/closet/cabinet{
@@ -436,15 +434,13 @@
/area/ship/manta/armoury_st)
"bI" = (
/obj/structure/table/rack,
-/obj/item/weapon/storage/box/syndie_kit/combat_armor,
-/obj/item/weapon/storage/box/syndie_kit/combat_armor,
-/obj/item/weapon/storage/box/syndie_kit/combat_armor,
-/obj/item/weapon/storage/box/syndie_kit/combat_armor,
-/obj/item/weapon/storage/box/syndie_kit/combat_armor,
-/obj/item/weapon/storage/box/syndie_kit/combat_armor,
/obj/effect/floor_decal/techfloor{
dir = 8
},
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
+/obj/item/device/binoculars,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"bL" = (
@@ -583,6 +579,12 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_port)
+"cq" = (
+/obj/structure/closet/crate{
+ dir = 2
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_star)
"cr" = (
/turf/simulated/floor/reinforced,
/area/ship/manta/med)
@@ -614,12 +616,6 @@
/obj/machinery/atmospherics/pipe/simple/visible,
/turf/simulated/wall/rplastihull,
/area/ship/manta/radiator_star)
-"cB" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
- dir = 8
- },
-/turf/simulated/wall/rplastihull,
-/area/shuttle/manta_ship_boat)
"cG" = (
/obj/structure/cable/orange{
d2 = 2;
@@ -864,6 +860,13 @@
/obj/structure/table/woodentable,
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
+"dH" = (
+/obj/effect/floor_decal/techfloor/corner{
+ dir = 4
+ },
+/obj/structure/flora/pottedplant/minitree,
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/recreation)
"dI" = (
/obj/machinery/porta_turret/stationary/syndie/CIWS,
/turf/simulated/floor/reinforced,
@@ -940,6 +943,12 @@
},
/turf/simulated/floor/reinforced,
/area/ship/manta/hangar)
+"ed" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 8
+ },
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
"ee" = (
/obj/effect/floor_decal/techfloor{
dir = 5
@@ -986,9 +995,7 @@
/obj/effect/floor_decal/techfloor{
dir = 9
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"er" = (
/obj/effect/floor_decal/techfloor/corner,
@@ -1006,9 +1013,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/black,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"eB" = (
/obj/machinery/chemical_dispenser/ert,
@@ -1020,9 +1025,7 @@
/obj/machinery/light/no_nightshift{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"eF" = (
/obj/machinery/chemical_dispenser/biochemistry/full,
@@ -1031,9 +1034,7 @@
/obj/effect/floor_decal/techfloor{
dir = 5
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"eG" = (
/turf/simulated/floor/reinforced,
@@ -1055,8 +1056,6 @@
/obj/item/weapon/hand_tele,
/obj/item/device/perfect_tele,
/obj/item/device/binoculars,
-/obj/item/device/survivalcapsule,
-/obj/item/device/survivalcapsule,
/turf/simulated/floor/wood,
/area/ship/manta/commander)
"eO" = (
@@ -1122,6 +1121,10 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/teleporter)
+"fp" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
"fr" = (
/obj/item/modular_computer/console/preset/mercenary{
dir = 4
@@ -1210,6 +1213,7 @@
/obj/item/ammo_magazine/s44,
/obj/item/ammo_magazine/s44,
/obj/item/ammo_magazine/s44,
+/obj/item/clothing/accessory/holster/armpit,
/turf/simulated/floor/wood,
/area/ship/manta/commander)
"fL" = (
@@ -1240,17 +1244,13 @@
/obj/effect/floor_decal/techfloor{
dir = 8
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"fQ" = (
/obj/structure/bed/chair/bay/comfy/red{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"fR" = (
/obj/machinery/teleport/station,
@@ -1263,9 +1263,7 @@
/obj/effect/floor_decal/techfloor/corner{
dir = 4
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"fV" = (
/obj/structure/closet/crate/freezer,
@@ -1280,14 +1278,17 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"fZ" = (
/obj/machinery/porta_turret/stationary/syndie/CIWS,
/turf/simulated/floor/reinforced,
/area/ship/manta/recreation)
+"gb" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
"gd" = (
/obj/structure/table/standard,
/obj/item/weapon/card/id/syndicate,
@@ -1448,15 +1449,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
-"gP" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
- },
-/obj/machinery/light/no_nightshift{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/manta/engineering)
"gR" = (
/obj/structure/bed/chair/bay/comfy/red{
dir = 1
@@ -1493,9 +1485,7 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"hd" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -1511,9 +1501,7 @@
/obj/effect/floor_decal/techfloor{
dir = 5
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"hj" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
@@ -1639,9 +1627,7 @@
/obj/structure/toilet{
dir = 8
},
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
+/turf/simulated/floor/tiled/freezer,
/area/ship/manta/barracks)
"hN" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
@@ -1685,6 +1671,12 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
+"hV" = (
+/obj/machinery/light/no_nightshift{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
"hW" = (
/obj/structure/cable/orange{
d1 = 2;
@@ -1730,6 +1722,8 @@
/obj/effect/floor_decal/techfloor{
dir = 5
},
+/obj/item/weapon/gun/projectile/sec/wood,
+/obj/item/weapon/gun/projectile/sec/wood,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"ik" = (
@@ -1814,9 +1808,7 @@
},
/obj/machinery/appliance/cooker/oven,
/obj/effect/floor_decal/corner/black,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"iv" = (
/obj/machinery/atmospherics/portables_connector/fuel{
@@ -1863,9 +1855,7 @@
/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
/obj/item/weapon/reagent_containers/food/snacks/meat/chicken,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"iB" = (
/obj/effect/floor_decal/techfloor{
@@ -1958,9 +1948,7 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"iS" = (
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
+/turf/simulated/floor/tiled/freezer,
/area/ship/manta/barracks)
"iU" = (
/obj/structure/table/rack,
@@ -1985,9 +1973,7 @@
dir = 4;
pixel_x = 28
},
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
+/turf/simulated/floor/tiled/freezer,
/area/ship/manta/barracks)
"iX" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
@@ -2080,6 +2066,8 @@
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 8
},
+/obj/item/weapon/storage/box/smokes,
+/obj/item/weapon/storage/box/smokes,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"js" = (
@@ -2128,9 +2116,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"jB" = (
/obj/effect/floor_decal/corner/black,
@@ -2140,9 +2126,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"jD" = (
/obj/effect/floor_decal/corner/black{
@@ -2153,9 +2137,7 @@
dir = 4
},
/obj/effect/floor_decal/techfloor/corner,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"jE" = (
/obj/machinery/door/blast/regular{
@@ -2248,24 +2230,18 @@
/obj/effect/floor_decal/techfloor{
dir = 8
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"ka" = (
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/ship/manta/engine)
"kh" = (
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"ki" = (
/obj/machinery/atmospherics/unary/vent_pump/on,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"kl" = (
/obj/machinery/computer/operating,
@@ -2275,9 +2251,7 @@
/obj/machinery/light/no_nightshift{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"km" = (
/obj/structure/bed/chair/office/dark{
@@ -2305,18 +2279,14 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"kz" = (
/obj/effect/floor_decal/techfloor{
dir = 10
},
/obj/machinery/appliance/cooker/grill,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"kF" = (
/obj/structure/table/steel_reinforced,
@@ -2328,9 +2298,10 @@
/obj/effect/floor_decal/techfloor{
dir = 5
},
-/turf/unsimulated/floor{
- icon_state = "white"
+/obj/machinery/light_switch{
+ pixel_y = 23
},
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"kG" = (
/obj/structure/table/reinforced,
@@ -2342,9 +2313,7 @@
/obj/effect/floor_decal/corner/black{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"kJ" = (
/obj/machinery/vending/food{
@@ -2356,9 +2325,7 @@
/obj/effect/floor_decal/corner/black{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"kL" = (
/obj/effect/floor_decal/techfloor/corner{
@@ -2385,12 +2352,13 @@
/turf/simulated/floor/reinforced,
/area/ship/manta/hallways_star)
"kP" = (
-/obj/machinery/shipsensors{
+/obj/structure/closet/crate{
dir = 1
},
-/turf/simulated/floor/reinforced,
-/area/ship/manta/med)
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_port)
"kT" = (
+/obj/structure/closet/crate,
/turf/simulated/floor/plating,
/area/ship/manta/hallways_port)
"kW" = (
@@ -2476,6 +2444,8 @@
/obj/effect/floor_decal/techfloor{
dir = 4
},
+/obj/item/weapon/gun/projectile/sec/wood,
+/obj/item/weapon/gun/projectile/sec/wood,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"lq" = (
@@ -2658,9 +2628,7 @@
/obj/effect/floor_decal/industrial/warning{
dir = 1
},
-/obj/effect/overmap/visitable/ship/landable/manta_ship_boat{
- cloaked = 1
- },
+/obj/effect/overmap/visitable/ship/landable/manta_ship_boat,
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/manta_ship_boat)
"mb" = (
@@ -2733,9 +2701,7 @@
/obj/effect/floor_decal/techfloor{
dir = 8
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"mD" = (
/obj/structure/cable/orange{
@@ -2752,9 +2718,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 6
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"mL" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
@@ -2767,6 +2731,12 @@
/obj/structure/railing,
/turf/simulated/floor/plating,
/area/ship/manta/engine)
+"mN" = (
+/obj/machinery/computer/ship/engines{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
"mO" = (
/obj/item/modular_computer/console/preset/mercenary{
dir = 8
@@ -2802,9 +2772,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"mZ" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
@@ -2830,9 +2798,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"ng" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -2937,29 +2903,23 @@
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"nz" = (
/obj/effect/floor_decal/techfloor{
dir = 1
},
-/obj/machinery/light_switch{
- pixel_y = 23
- },
-/turf/unsimulated/floor{
- icon_state = "white"
+/obj/machinery/computer/cryopod/merc{
+ pixel_y = 32
},
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"nA" = (
/obj/machinery/cryopod/manta_ship,
/obj/effect/floor_decal/techfloor{
dir = 5
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"nC" = (
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
@@ -3000,9 +2960,7 @@
/area/ship/manta/hallways_port)
"nS" = (
/obj/machinery/washing_machine,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
+/turf/simulated/floor/tiled/freezer,
/area/ship/manta/barracks)
"nT" = (
/obj/machinery/button/flasher{
@@ -3143,12 +3101,6 @@
},
/turf/simulated/floor/plating,
/area/ship/manta/hallways_port)
-"or" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
- dir = 4
- },
-/turf/simulated/wall/rplastihull,
-/area/shuttle/manta_ship_boat)
"os" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
dir = 4
@@ -3265,6 +3217,8 @@
dir = 8;
pixel_x = 26
},
+/obj/item/weapon/gun/projectile/sec/wood,
+/obj/item/weapon/gun/projectile/sec/wood,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"oP" = (
@@ -3290,9 +3244,7 @@
/obj/effect/floor_decal/corner/black{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"oT" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
@@ -3384,6 +3336,12 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/manta_ship_boat)
+"pB" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 5
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_port)
"pD" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 6
@@ -3479,6 +3437,18 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
+"qa" = (
+/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
+ dir = 4
+ },
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
+"qg" = (
+/obj/machinery/atmospherics/unary/engine{
+ dir = 1
+ },
+/turf/simulated/floor/reinforced,
+/area/shuttle/manta_ship_boat)
"qn" = (
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
@@ -3543,25 +3513,19 @@
dir = 1;
pixel_y = -26
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"qz" = (
/obj/effect/floor_decal/techfloor/corner{
dir = 8
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"qA" = (
/obj/effect/floor_decal/techfloor/corner,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"qB" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
@@ -3569,6 +3533,12 @@
},
/turf/space,
/area/ship/manta/radiator_port)
+"qF" = (
+/obj/machinery/atmospherics/pipe/simple/visible{
+ dir = 9
+ },
+/turf/simulated/wall/rplastihull,
+/area/ship/manta/radiator_star)
"qH" = (
/obj/machinery/alarm/alarms_hidden{
dir = 8;
@@ -3634,34 +3604,26 @@
dir = 1;
pixel_y = -23
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"qS" = (
/obj/machinery/body_scanconsole,
/obj/effect/floor_decal/techfloor,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"qT" = (
/obj/machinery/sleep_console{
dir = 4
},
/obj/effect/floor_decal/techfloor,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"qU" = (
/obj/machinery/sleeper{
dir = 4
},
/obj/effect/floor_decal/techfloor,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"rb" = (
/obj/effect/floor_decal/techfloor/corner,
@@ -3670,9 +3632,7 @@
d2 = 4;
icon_state = "2-4"
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"rl" = (
/obj/machinery/power/apc/hyper{
@@ -3685,9 +3645,7 @@
d2 = 8;
icon_state = "0-8"
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"rm" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging{
@@ -3766,9 +3724,7 @@
dir = 1;
pixel_y = -26
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"rF" = (
/obj/machinery/cryopod/manta_ship,
@@ -3778,9 +3734,7 @@
/obj/machinery/light/no_nightshift{
dir = 4
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"rH" = (
/obj/structure/railing{
@@ -3957,9 +3911,7 @@
/obj/machinery/door/airlock/multi_tile/glass{
req_one_access = list(150)
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"sG" = (
/obj/effect/floor_decal/techfloor{
@@ -3967,16 +3919,8 @@
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
-"sJ" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 9
- },
-/turf/simulated/wall/rplastihull,
-/area/ship/manta/radiator_star)
"sM" = (
/obj/machinery/atmospherics/portables_connector,
/obj/machinery/portable_atmospherics/canister/nitrogen/engine_setup,
@@ -4024,9 +3968,7 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/med)
"sZ" = (
/obj/machinery/porta_turret/stationary/syndie/CIWS,
@@ -4136,6 +4078,7 @@
/area/ship/manta/armoury_st)
"tJ" = (
/obj/structure/closet/wardrobe/merc,
+/obj/item/weapon/storage/box/syndie_kit/combat_armor,
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
"tK" = (
@@ -4249,15 +4192,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/manta_ship_boat)
-"uj" = (
-/obj/structure/bed/chair/bay/shuttle{
- dir = 1
- },
-/obj/structure/fuel_port{
- pixel_y = -29
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/manta_ship_boat)
"uk" = (
/obj/machinery/door/firedoor/border_only,
/obj/structure/grille,
@@ -4625,13 +4559,6 @@
},
/turf/simulated/floor/plating,
/area/ship/manta/engine)
-"vP" = (
-/obj/effect/floor_decal/techfloor/corner{
- dir = 4
- },
-/obj/structure/flora/pottedplant/minitree,
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/manta/recreation)
"vU" = (
/obj/effect/floor_decal/techfloor/corner,
/obj/structure/cable/orange{
@@ -5159,11 +5086,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
"xO" = (
-/obj/machinery/light/no_nightshift{
- dir = 4
+/obj/machinery/shipsensors{
+ dir = 1
},
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/manta/barracks)
+/turf/simulated/floor/reinforced,
+/area/ship/manta/med)
"xP" = (
/obj/effect/floor_decal/techfloor,
/obj/structure/cable/orange{
@@ -5246,6 +5173,15 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_star)
+"yd" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/barracks)
"yh" = (
/obj/machinery/atmospherics/pipe/simple/visible,
/obj/structure/railing,
@@ -5602,9 +5538,7 @@
/obj/machinery/door/firedoor/border_only,
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/unsimulated/floor{
- icon_state = "dark"
- },
+/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_as)
"zo" = (
/obj/structure/table/standard,
@@ -5615,9 +5549,7 @@
/obj/effect/floor_decal/corner/black{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"zp" = (
/obj/structure/cable{
@@ -5783,6 +5715,10 @@
},
/turf/simulated/floor/plating,
/area/ship/manta/holding)
+"zY" = (
+/obj/structure/flora/pottedplant/mysterious,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
"Ab" = (
/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{
dir = 1
@@ -5825,9 +5761,7 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 8
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"AA" = (
/obj/machinery/atmospherics/portables_connector{
@@ -6242,6 +6176,7 @@
/obj/machinery/light/no_nightshift{
dir = 4
},
+/obj/item/weapon/storage/box/syndie_kit/combat_armor,
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
"CQ" = (
@@ -6566,6 +6501,12 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/manta_ship_boat)
+"Eg" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 6
+ },
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
"Eh" = (
/obj/effect/floor_decal/techfloor,
/obj/machinery/button/remote/blast_door{
@@ -6677,6 +6618,15 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hallways_aft)
+"EJ" = (
+/obj/structure/bed/chair/bay/shuttle{
+ dir = 1
+ },
+/obj/structure/fuel_port{
+ pixel_y = -29
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/shuttle/manta_ship_boat)
"EN" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -6769,6 +6719,10 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
"Fj" = (
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/barracks)
"Fv" = (
@@ -6883,9 +6837,7 @@
dir = 1
},
/obj/machinery/light/no_nightshift,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"Gg" = (
/obj/structure/table/woodentable,
@@ -6993,9 +6945,7 @@
/area/ship/manta/holding)
"GI" = (
/obj/machinery/light/no_nightshift,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
+/turf/simulated/floor/tiled/freezer,
/area/ship/manta/barracks)
"GN" = (
/obj/machinery/door/window/brigdoor/southleft{
@@ -7218,11 +7168,14 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
"Ic" = (
-/obj/machinery/computer/ship/engines{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
},
-/turf/simulated/floor/tiled/techfloor,
-/area/shuttle/manta_ship_boat)
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 10
+ },
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
"Ik" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 4
@@ -7351,6 +7304,27 @@
/obj/item/weapon/cell/device/weapon,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
+"IK" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/floor_decal/techfloor,
+/obj/effect/floor_decal/techfloor{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 1
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/hallways_aft)
"IO" = (
/obj/structure/cable/orange{
d1 = 4;
@@ -7584,9 +7558,7 @@
/obj/effect/floor_decal/corner/black{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"Kc" = (
/obj/item/modular_computer/console/preset/mercenary{
@@ -7617,12 +7589,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/shuttle/manta_ship_boat)
-"Km" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 10
- },
-/turf/simulated/wall/rplastihull,
-/area/shuttle/manta_ship_boat)
"Kn" = (
/obj/structure/cable/orange{
d1 = 4;
@@ -7710,11 +7676,23 @@
/obj/item/clothing/accessory/storage/pouches/large/green,
/obj/item/clothing/accessory/storage/pouches/large/green,
/obj/item/clothing/accessory/storage/pouches/large/green,
+/obj/machinery/atmospherics/unary/vent_pump/on{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/barracks)
"KE" = (
-/obj/machinery/door/window/brigdoor/eastright,
+/obj/machinery/door/window/brigdoor/eastright{
+ req_access = list();
+ req_one_access = list(150)
+ },
/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/barracks)
"KG" = (
@@ -7801,9 +7779,7 @@
dir = 1
},
/obj/effect/floor_decal/corner/black,
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"Ld" = (
/obj/effect/floor_decal/industrial/warning/corner{
@@ -8137,6 +8113,12 @@
pixel_y = -32
},
/obj/effect/floor_decal/techfloor,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
+/obj/item/clothing/accessory/holster/armpit,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"Nc" = (
@@ -8200,9 +8182,7 @@
/obj/structure/window/reinforced/tinted{
dir = 8
},
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
+/turf/simulated/floor/tiled/freezer,
/area/ship/manta/barracks)
"Nv" = (
/obj/effect/shuttle_landmark/premade/manta_ship_near_star,
@@ -8305,6 +8285,15 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
+"NM" = (
+/obj/effect/floor_decal/techfloor{
+ dir = 4
+ },
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/ship/manta/engineering)
"NQ" = (
/turf/simulated/wall/plastihull,
/area/ship/manta/barracks)
@@ -8341,9 +8330,7 @@
},
/obj/item/weapon/soap/syndie,
/obj/structure/curtain/open/shower,
-/turf/unsimulated/floor{
- icon_state = "freezerfloor"
- },
+/turf/simulated/floor/tiled/freezer,
/area/ship/manta/barracks)
"Ok" = (
/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{
@@ -8571,10 +8558,6 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled/dark,
/area/ship/manta/holding)
-"Ph" = (
-/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,
-/turf/simulated/wall/rplastihull,
-/area/shuttle/manta_ship_boat)
"Pi" = (
/obj/effect/floor_decal/industrial/warning,
/obj/effect/floor_decal/techfloor{
@@ -8909,9 +8892,7 @@
/obj/machinery/light/no_nightshift{
dir = 1
},
-/turf/unsimulated/floor{
- icon_state = "white"
- },
+/turf/simulated/floor/tiled/white,
/area/ship/manta/recreation)
"Rq" = (
/obj/effect/floor_decal/techfloor/corner{
@@ -9063,16 +9044,19 @@
/area/ship/manta/armoury_st)
"RU" = (
/obj/structure/table/rack,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
-/obj/item/device/binoculars,
/obj/effect/floor_decal/techfloor,
/obj/machinery/light_switch{
dir = 1;
pixel_y = -23
},
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
+/obj/item/clothing/mask/gas/half,
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/armoury_st)
"RY" = (
@@ -9088,6 +9072,9 @@
/turf/simulated/floor/plating,
/area/ship/manta/engine)
"RZ" = (
+/obj/structure/closet/crate{
+ dir = 2
+ },
/turf/simulated/floor/plating,
/area/ship/manta/dock_port)
"Sa" = (
@@ -9124,6 +9111,16 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/hangar)
+"Sf" = (
+/obj/structure/cable/orange{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply,
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,
+/turf/simulated/floor/wood,
+/area/ship/manta/barracks)
"Sl" = (
/obj/effect/floor_decal/industrial/warning,
/turf/simulated/floor/plating,
@@ -9317,6 +9314,12 @@
},
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
+"Th" = (
+/obj/structure/closet/crate{
+ dir = 8
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/hallways_star)
"Ti" = (
/obj/machinery/button/remote/blast_door{
dir = 4;
@@ -9349,7 +9352,6 @@
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
"Tl" = (
-/obj/item/device/aicard,
/obj/item/weapon/plastique,
/obj/item/weapon/plastique,
/obj/item/weapon/plastique,
@@ -9695,26 +9697,11 @@
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/engineering)
"UY" = (
-/obj/structure/cable/orange{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
+ dir = 10
},
-/obj/effect/floor_decal/techfloor,
-/obj/effect/floor_decal/techfloor{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/light/no_nightshift{
- dir = 1
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/ship/manta/hallways_aft)
+/turf/simulated/wall/rplastihull,
+/area/shuttle/manta_ship_boat)
"Va" = (
/obj/machinery/atmospherics/pipe/tank/phoron,
/turf/simulated/floor/plating,
@@ -10147,6 +10134,12 @@
/obj/structure/railing,
/turf/simulated/floor/plating,
/area/ship/manta/atmos)
+"Xq" = (
+/obj/machinery/light/no_nightshift{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/ship/manta/engine)
"Xu" = (
/obj/machinery/atmospherics/pipe/simple/visible{
dir = 10
@@ -10490,12 +10483,6 @@
},
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
-"YP" = (
-/obj/machinery/atmospherics/pipe/simple/visible{
- dir = 5
- },
-/turf/simulated/wall/rplastihull,
-/area/ship/manta/radiator_port)
"YR" = (
/obj/effect/floor_decal/techfloor{
dir = 4
@@ -10531,12 +10518,6 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/ship/manta/bridge)
-"YV" = (
-/obj/machinery/atmospherics/pipe/simple/hidden/fuel{
- dir = 6
- },
-/turf/simulated/wall/rplastihull,
-/area/shuttle/manta_ship_boat)
"YW" = (
/obj/structure/cable/orange{
d1 = 1;
@@ -10718,9 +10699,20 @@
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
},
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
+/obj/item/weapon/card/id/syndicate,
/turf/simulated/floor/wood,
/area/ship/manta/barracks)
"ZW" = (
+/obj/structure/closet/crate{
+ dir = 1
+ },
/turf/simulated/floor/plating,
/area/ship/manta/dock_star)
"ZY" = (
@@ -17338,7 +17330,7 @@ vu
Gu
Cz
Tl
-vP
+dH
hw
gh
gd
@@ -17749,7 +17741,7 @@ yz
yz
eG
ht
-kT
+kP
ht
tt
vU
@@ -19058,7 +19050,7 @@ pw
MU
ry
zE
-YP
+pB
WF
WF
lg
@@ -19775,7 +19767,7 @@ vB
Xx
nH
xT
-Hh
+hV
fO
yz
yz
@@ -20201,7 +20193,7 @@ vO
yu
Sl
Sa
-Hh
+Xq
xL
yz
yz
@@ -20328,7 +20320,7 @@ Jk
jI
hy
ZQ
-UY
+IK
ZU
bw
Qb
@@ -20455,8 +20447,8 @@ je
je
Ki
je
-YV
-aQ
+Eg
+qg
ag
aJ
Yj
@@ -20596,10 +20588,10 @@ uh
Au
Ec
pH
-Ic
-Km
-cB
-aQ
+mN
+UY
+ed
+qg
aJ
Yj
uk
@@ -20628,7 +20620,7 @@ lV
vJ
nH
xT
-Hh
+hV
fO
yz
yz
@@ -20740,7 +20732,7 @@ En
pH
pH
SF
-Ph
+fp
ag
aJ
Yj
@@ -20882,7 +20874,7 @@ Et
pH
pH
SJ
-Ph
+fp
ag
aJ
Yj
@@ -20899,7 +20891,7 @@ WV
IG
sg
sg
-gP
+NM
sg
sg
KZ
@@ -21022,10 +21014,10 @@ ur
AJ
Eu
pH
-uj
-YV
-or
-aQ
+EJ
+Eg
+qa
+qg
aJ
Yj
uk
@@ -21054,7 +21046,7 @@ yu
xt
Sl
Sa
-Hh
+Xq
xL
yz
yz
@@ -21165,8 +21157,8 @@ je
je
Kv
je
-Km
-aQ
+UY
+qg
ag
aJ
LC
@@ -21322,7 +21314,7 @@ Kn
MQ
YT
ZQ
-UY
+IK
zR
va
OO
@@ -21479,7 +21471,7 @@ xk
lV
nH
xT
-Hh
+hV
fO
yz
yz
@@ -21905,7 +21897,7 @@ zN
ka
Sl
Sa
-Hh
+Xq
xL
yz
yz
@@ -22014,8 +22006,8 @@ sz
uK
xN
NQ
-xO
Fj
+yd
ge
SX
Xl
@@ -22299,7 +22291,7 @@ uJ
xW
NQ
Fv
-qn
+bv
Or
Ta
rX
@@ -22441,10 +22433,10 @@ uQ
yb
AX
qn
-qn
-qn
-qn
-rX
+Ic
+gb
+gb
+Sf
Cw
qn
Cw
@@ -22608,7 +22600,7 @@ wg
dW
TH
cA
-sJ
+qF
PK
PK
vV
@@ -22869,7 +22861,7 @@ NQ
tJ
KG
qn
-af
+zY
XC
zS
Mt
@@ -24158,7 +24150,7 @@ BY
OL
ch
hN
-hS
+Th
mT
kO
yz
@@ -24281,7 +24273,7 @@ yz
yz
yz
cr
-kP
+xO
rM
ch
ch
@@ -24441,7 +24433,7 @@ Zv
fN
tL
ch
-hS
+cq
mT
ts
yz
diff --git a/maps/submaps/admin_use_vr/mercship.dm b/maps/submaps/admin_use_vr/mercship.dm
index 90fd407614..ba81a160f4 100644
--- a/maps/submaps/admin_use_vr/mercship.dm
+++ b/maps/submaps/admin_use_vr/mercship.dm
@@ -110,7 +110,7 @@
icon_state = "recreation_area"
/area/shuttle/manta_ship_boat
- name = "\improper Boarding Craft"
+ name = "\improper SAARE Lander"
icon_state = "syndie-ship"
requires_power = 0
@@ -127,7 +127,7 @@
/obj/effect/overmap/visitable/ship/manta_ship
name = "SAARE Typhon Four-Niner"
desc = "Spacefaring vessel. Broadcasting Private Military Contractor IFF."
- scanner_desc = @{"[i]Registration[/i]: SAARE Mercenary Cruiser [i]Typhon Four-Niner[/i]
+ scanner_desc = @{"[i]Registration[/i]: SAARE Mercenary Cruiser Typhon Four-Niner
[i]Class[/i]: [i]Manta[/i]-class Cruiser
[i]Transponder[/i]: Broadcasting (PMC)
[b]Notice[/b]: SAARE are unlikely to tolerate civilian or corporate personnel interfering with their affairs. Approach with caution."}
@@ -193,12 +193,12 @@
defer_initialisation = TRUE
/obj/effect/overmap/visitable/ship/landable/manta_ship_boat
- scanner_name = "Unknown Landing Craft"
- desc = "Spacefaring vessel. No IFF detected."
- scanner_desc = @{"[i]Registration[/i]: None detected.
-[i]Class[/i]: Unknown (Frigate-approximate Mass)
-[i]Transponder[/i]: Not Responding
-[b]Notice[/b]: Failure to broadcast a valid IFF signal via transponder is a breach of numerous interstellar codes. Approach with caution."}
+ scanner_name = "SAARE Landing Craft"
+ desc = "Spacefaring vessel. Broadcasting Private Military Contractor IFF."
+ scanner_desc = @{"[i]Registration[/i]: SAARE Mercenary Cruiser Typhon Four-Niner's Lander
+[i]Class[/i]: Unknown Shuttle-approximate
+[i]Transponder[/i]: Broadcasting (PMC)
+[b]Notice[/b]: SAARE are unlikely to tolerate civilian or corporate personnel interfering with their affairs. Approach with caution."}
color = "#3366FF"
color = "#333333" //TACTICAL BLACK
vessel_mass = 500
@@ -226,7 +226,7 @@ Electromagnetic: On
\
Humanoid: Off
\
Atmosphere: Off
\
Hull Shield: On
\
-Radius: 26
\
+Radius: 28 minimum
\
\
The shield generator's a hungry beast and will drain the cruiser's reserves fairly quick, so don't overuse it. Don't be afraid to use it either, as this ship's a serious investment. If you fuck up, I won't be sticking my neck out for you, you get me? This 'Lieutenant Commander Sykes' asshole is enough of a pain already.
\
\
@@ -261,4 +261,13 @@ I don't care if they're 'not being cooperative', for the love of fuck if another
\
Capt. Thorne
\
\
-P.S. If you gotta cut 'em up or whatever try not to make too much of a mess, and clean up when you're done. Don't trail blood all over my damn ship, and don't get them killed by infections either."}
\ No newline at end of file
+P.S. If you gotta cut 'em up or whatever try not to make too much of a mess, and clean up when you're done. Don't trail blood all over my damn ship, and don't get them killed by infections either."}
+
+/obj/machinery/computer/cryopod/merc
+ name = "mercenary oversight console"
+ desc = "An interface between mercenaries and the cryo oversight systems tasked with keeping track of all mercenaries who enter or exit cryostasis."
+ circuit = "/obj/item/weapon/circuitboard/robotstoragecontrol"
+
+ storage_type = "mercenaries"
+ storage_name = "Merc Oversight Control"
+ allow_items = 1
\ No newline at end of file
diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm
index 01df663296..85148472f7 100644
--- a/maps/tether/submaps/_tether_submaps.dm
+++ b/maps/tether/submaps/_tether_submaps.dm
@@ -58,26 +58,20 @@
#include "../../submaps/admin_use_vr/ert.dm"
#include "../../submaps/admin_use_vr/mercship.dm"
-/*
-//not loading this here, it's already defined in the ert.dm
/datum/map_template/admin_use/ert
name = "Special Area - ERT"
desc = "It's the ERT ship! Lorge."
mappath = 'maps/submaps/admin_use_vr/ert.dmm'
-*/
/datum/map_template/admin_use/trader
name = "Special Area - Trader"
desc = "Big trader ship."
mappath = 'maps/submaps/admin_use_vr/tradeship.dmm'
-/*
-//not loading this here, it's already defined in the mercship.dm
/datum/map_template/admin_use/mercenary
name = "Special Area - Merc Ship"
desc = "Prepare tae be boarded, arr!"
mappath = 'maps/submaps/admin_use_vr/kk_mercship.dmm'
-*/
/datum/map_template/admin_use/old_mercenary
name = "Special Area - Old Merc Base"