From 4ad035b16d416379967815890174f3e4cdca6de3 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 18 Mar 2020 01:27:07 -0400 Subject: [PATCH] Move most antag things to admin-loadable maps --- code/game/objects/effects/landmarks_vr.dm | 39 + code/game/response_team.dm | 1 + code/game/response_team_vr.dm | 11 + code/game/trader_visit.dm | 1 + code/game/trader_visit_vr.dm | 11 + maps/tether/submaps/_tether_submaps.dm | 38 + maps/tether/submaps/admin_use/cruiser.dm | 7 + maps/tether/submaps/admin_use/dojo.dmm | 2218 + maps/tether/submaps/admin_use/ert.dmm | 3160 + maps/tether/submaps/admin_use/mercbase.dmm | 7056 ++ maps/tether/submaps/admin_use/skipjack.dmm | 3159 + maps/tether/submaps/admin_use/thunderdome.dmm | 554 + maps/tether/submaps/admin_use/tradeship.dmm | 3660 + maps/tether/submaps/admin_use/wizard.dmm | 2116 + maps/tether/submaps/om_ships/cruiser.dm | 17 + maps/tether/submaps/om_ships/cruiser.dmm | 29560 ++++++++ maps/tether/submaps/tether_misc.dmm | 62952 +++++----------- maps/tether/tether_shuttle_defs.dm | 6 +- vorestation.dme | 3 + 19 files changed, 71961 insertions(+), 42608 deletions(-) create mode 100644 code/game/objects/effects/landmarks_vr.dm create mode 100644 code/game/response_team_vr.dm create mode 100644 code/game/trader_visit_vr.dm create mode 100644 maps/tether/submaps/admin_use/cruiser.dm create mode 100644 maps/tether/submaps/admin_use/dojo.dmm create mode 100644 maps/tether/submaps/admin_use/ert.dmm create mode 100644 maps/tether/submaps/admin_use/mercbase.dmm create mode 100644 maps/tether/submaps/admin_use/skipjack.dmm create mode 100644 maps/tether/submaps/admin_use/thunderdome.dmm create mode 100644 maps/tether/submaps/admin_use/tradeship.dmm create mode 100644 maps/tether/submaps/admin_use/wizard.dmm create mode 100644 maps/tether/submaps/om_ships/cruiser.dm create mode 100644 maps/tether/submaps/om_ships/cruiser.dmm diff --git a/code/game/objects/effects/landmarks_vr.dm b/code/game/objects/effects/landmarks_vr.dm new file mode 100644 index 00000000000..1111b717248 --- /dev/null +++ b/code/game/objects/effects/landmarks_vr.dm @@ -0,0 +1,39 @@ +/obj/effect/landmark/late_antag + name = "Antag Latespawn" + var/antag_id + +/obj/effect/landmark/late_antag/Initialize() + . = ..() + var/datum/antagonist/A = all_antag_types[antag_id] + if(istype(A)) + A.starting_locations |= get_turf(src) + var/list/allpoints = all_antag_spawnpoints[A.landmark_id] + allpoints |= get_turf(src) + +/obj/effect/landmark/late_antag/ert + name = "Response Team - Lateload" + antag_id = MODE_ERT + +/obj/effect/landmark/late_antag/trader + name = "Trader - Lateload" + antag_id = MODE_TRADE + +/obj/effect/landmark/late_antag/wizard + name = "Wizard - Lateload" + antag_id = MODE_WIZARD + +/obj/effect/landmark/late_antag/technomancer + name = "Technomancer - Lateload" + antag_id = MODE_TECHNOMANCER + +/obj/effect/landmark/late_antag/mercenary + name = "Mercenary - Lateload" + antag_id = MODE_MERCENARY + +/obj/effect/landmark/late_antag/ninja + name = "Ninja - Lateload" + antag_id = MODE_NINJA + +/obj/effect/landmark/late_antag/raider + name = "Raider - Lateload" + antag_id = MODE_RAIDER \ No newline at end of file diff --git a/code/game/response_team.dm b/code/game/response_team.dm index 480d89c61b2..2b3ae97ae2d 100644 --- a/code/game/response_team.dm +++ b/code/game/response_team.dm @@ -131,6 +131,7 @@ proc/trigger_armed_response_team(var/force = 0) can_call_ert = 0 // Only one call per round, gentleman. send_emergency_team = 1 + consider_ert_load() //VOREStation Add sleep(600 * 5) send_emergency_team = 0 // Can no longer join the ERT. diff --git a/code/game/response_team_vr.dm b/code/game/response_team_vr.dm new file mode 100644 index 00000000000..5b9c93ed6cf --- /dev/null +++ b/code/game/response_team_vr.dm @@ -0,0 +1,11 @@ +GLOBAL_VAR(ert_loaded) + +/proc/consider_ert_load() + if(!GLOB.ert_loaded) + GLOB.ert_loaded = TRUE + var/datum/map_template/MT = SSmapping.map_templates["Special Area - ERT"] + if(!istype(MT)) + error("ERT Area is not a valid map template!") + else + MT.load_new_z(centered = TRUE) + log_and_message_admins("Loaded the ERT shuttle just now.") \ No newline at end of file diff --git a/code/game/trader_visit.dm b/code/game/trader_visit.dm index 1fa78fdf215..31889dfff71 100644 --- a/code/game/trader_visit.dm +++ b/code/game/trader_visit.dm @@ -64,6 +64,7 @@ proc/trigger_trader_visit() can_call_traders = 0 // Only one call per round. send_beruang = 1 + consider_trader_load() //VOREStation Add sleep(600 * 5) send_beruang = 0 // Can no longer join the traders. diff --git a/code/game/trader_visit_vr.dm b/code/game/trader_visit_vr.dm new file mode 100644 index 00000000000..81b9b3adcdd --- /dev/null +++ b/code/game/trader_visit_vr.dm @@ -0,0 +1,11 @@ +GLOBAL_VAR(trader_loaded) + +/proc/consider_trader_load() + if(!GLOB.trader_loaded) + GLOB.trader_loaded = TRUE + var/datum/map_template/MT = SSmapping.map_templates["Special Area - Trader"] + if(!istype(MT)) + error("Trader is not a valid map template!") + else + MT.load_new_z(centered = TRUE) + log_and_message_admins("Loaded the trade shuttle just now.") \ No newline at end of file diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm index c0336d30f20..88af648547f 100644 --- a/maps/tether/submaps/_tether_submaps.dm +++ b/maps/tether/submaps/_tether_submaps.dm @@ -63,6 +63,43 @@ . = ..() seed_submaps(list(Z_LEVEL_PLAINS), 120, /area/tether/outpost/exploration_plains, /datum/map_template/surface/plains) +////////////////////////////////////////////////////////////////////////////// +//Antag/Event/ERT Areas +/datum/map_template/admin_use/ert + name = "Special Area - ERT" + desc = "It's the ERT ship! Lorge." + mappath = 'admin_use/ert.dmm' + +/datum/map_template/admin_use/trader + name = "Special Area - Trader" + desc = "Big trader ship." + mappath = 'admin_use/tradeship.dmm' + +/datum/map_template/admin_use/mercenary + name = "Special Area - Merc Base" + desc = "So much red!" + mappath = 'admin_use/mercbase.dmm' + +/datum/map_template/admin_use/skipjack + name = "Special Area - Skipjack Base" + desc = "Stinky!" + mappath = 'admin_use/skipjack.dmm' + +/datum/map_template/admin_use/thunderdome + name = "Special Area - Thunderdome" + desc = "Thunderrrrdomeee" + mappath = 'admin_use/thunderdome.dmm' + +/datum/map_template/admin_use/wizardbase + name = "Special Area - Wizard Base" + desc = "Wingardium Levosia" + mappath = 'admin_use/wizard.dmm' + +/datum/map_template/admin_use/dojo + name = "Special Area - Ninja Dojo" + desc = "Sneaky" + mappath = 'admin_use/dojo.dmm' + ////////////////////////////////////////////////////////////////////////////// //Rogue Mines Stuff @@ -447,3 +484,4 @@ #include "om_ships/hybridshuttle.dm" #include "om_ships/screebarge.dm" #include "om_ships/aro.dm" +#include "om_ships/cruiser.dm" diff --git a/maps/tether/submaps/admin_use/cruiser.dm b/maps/tether/submaps/admin_use/cruiser.dm new file mode 100644 index 00000000000..427d1e15086 --- /dev/null +++ b/maps/tether/submaps/admin_use/cruiser.dm @@ -0,0 +1,7 @@ +/obj/effect/overmap/visitable/ship/cruiser + name = "NT Cruiser" + desc = "A small cruiser pinging NT IFF." + color = "#00aaff" //Bluey + vessel_mass = 12000 + vessel_size = SHIP_SIZE_LARGE + initial_generic_waypoints = list("cruiser_fore", "cruiser_aft", "cruiser_port", "cruiser_starboard") diff --git a/maps/tether/submaps/admin_use/dojo.dmm b/maps/tether/submaps/admin_use/dojo.dmm new file mode 100644 index 00000000000..fd50bcf52f6 --- /dev/null +++ b/maps/tether/submaps/admin_use/dojo.dmm @@ -0,0 +1,2218 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/unsimulated/wall, +/area/ninja_dojo/dojo) +"ac" = ( +/turf/unsimulated/mineral, +/area/ninja_dojo/dojo) +"ad" = ( +/turf/simulated/mineral, +/area/ninja_dojo/dojo) +"ae" = ( +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"af" = ( +/obj/effect/floor_decal/asteroid, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"ag" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/shuttle/ninja) +"ah" = ( +/obj/item/target/alien, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken2" + }, +/area/ninja_dojo/dojo) +"ai" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"aj" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/flame/candle, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"ak" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/material/sword/katana, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"al" = ( +/obj/machinery/space_heater, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"am" = ( +/obj/item/target, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"an" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/ninja) +"ao" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/shuttle/ninja) +"ap" = ( +/obj/item/target/syndicate, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"aq" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"ar" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"as" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"at" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"au" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"av" = ( +/obj/machinery/teleport/station, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"aw" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"ax" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"ay" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"az" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"aA" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"aB" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/shuttle/ninja) +"aC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 2; + start_pressure = 740.5 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"aD" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/shuttle/plating, +/area/shuttle/ninja) +"aE" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/plating, +/area/shuttle/ninja) +"aF" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/shuttle/plating, +/area/shuttle/ninja) +"aG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"aH" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"aI" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"aJ" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"aK" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "ninja_shuttle_outer"; + name = "Ship External Hatch"; + req_access = list(150) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "blastninja"; + name = "Outer Airlock"; + opacity = 0 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"aL" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "ninja_shuttle_sensor"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/effect/shuttle_landmark/shuttle_initializer{ + base_area = /area/ninja_dojo/dojo; + base_turf = /turf/unsimulated/floor; + landmark_tag = "ninja_base"; + name = "The Dojo"; + shuttle_type = /datum/shuttle/autodock/multi/ninja + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"aM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"aN" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"aO" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"aP" = ( +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"aQ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/combat, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"aR" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"aS" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1331; + id_tag = "ninja_shuttle"; + pixel_x = 0; + pixel_y = -25; + req_access = list(150) + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "ninja_shuttle_pump" + }, +/obj/machinery/button/remote/blast_door{ + id = "blastninja"; + name = "ship lockdown control"; + pixel_x = -25 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"aT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "ninja_shuttle_inner"; + name = "Ship Internal Hatch"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"aU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "ninja_shuttle"; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"aV" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"aW" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"aX" = ( +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"aY" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"aZ" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"ba" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"bb" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken1" + }, +/area/ninja_dojo/dojo) +"bc" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/paicard, +/obj/item/device/pda/syndicate, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"bd" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/shuttle/ninja) +"be" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/machinery/button/remote/blast_door{ + id = "ninjawindow"; + name = "remote shutter control"; + pixel_x = 0; + pixel_y = -25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"bf" = ( +/obj/structure/table/bench/wooden, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bg" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"bh" = ( +/obj/machinery/computer/shuttle_control/multi/ninja{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"bi" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/ninja) +"bj" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/ninja) +"bl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/ninja) +"bm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/ninja) +"bn" = ( +/obj/structure/flora/tree/pine, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"bo" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"bp" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"bq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"br" = ( +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"bs" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"bt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"bu" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/recharger{ + pixel_y = 0 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bv" = ( +/obj/structure/table/wooden_reinforced, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bw" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Dooruranium.dmi'; + icon_state = "door_closed"; + name = "Sealed Door" + }, +/area/ninja_dojo/dojo) +"bx" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/balaclava/tactical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/mask/balaclava, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"by" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/fortunecookie, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bz" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/balaclava, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bA" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bB" = ( +/obj/structure/table/glass, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bC" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"bD" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"bE" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"bF" = ( +/obj/structure/table/bench/wooden, +/obj/effect/landmark/late_antag/ninja, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bG" = ( +/obj/effect/landmark/late_antag/ninja, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bH" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/obj/random/soap, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"bI" = ( +/obj/machinery/recharger{ + pixel_y = 0 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bJ" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/radio/uplink, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bK" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"bL" = ( +/obj/item/weapon/rig/light/stealth, +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"bM" = ( +/obj/item/device/suit_cooling_unit, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"bN" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"bO" = ( +/obj/machinery/door/morgue, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bP" = ( +/obj/structure/closet/crate, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"bQ" = ( +/obj/item/broken_device, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"bR" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"bS" = ( +/obj/machinery/door/morgue, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"bT" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/chem_dispenser/ninja, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"bU" = ( +/obj/structure/bed/chair/office/dark, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"bV" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/random/tech_supply, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"bW" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"bX" = ( +/obj/machinery/shower{ + dir = 8; + icon_state = "shower"; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower/medical, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"bY" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"bZ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/mounted/energy_blade, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"ca" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/fabricator/energy_net, +/obj/item/rig_module/vision/multi, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"cb" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"cc" = ( +/obj/machinery/sleep_console, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"cd" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/adv, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"ce" = ( +/obj/machinery/space_heater, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken3" + }, +/area/ninja_dojo/dojo) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bw +bw +ab +ab +ab +ab +ab +ab +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +ab +au +aH +aR +ab +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +ai +ai +at +bL +bP +bT +bY +ab +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +ab +av +aH +aR +ab +ae +ae +ae +bn +ae +ae +af +ae +ae +ae +ae +ae +ae +ab +ai +ai +aI +aR +aR +bU +bZ +ab +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +ab +aw +aH +aR +ab +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +ai +ai +at +bM +bQ +bV +ca +ab +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aI +ab +ab +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +bn +ae +ae +at +ai +ai +ab +ab +ab +ab +ab +ab +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +at +ai +ai +bI +at +bR +bR +cb +ab +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +ab +ah +am +ap +ai +ai +ai +ai +ai +bf +ab +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +at +ai +ai +ai +bN +bR +bR +cc +ab +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +ab +ai +ai +ai +ai +ai +ai +ai +ai +bf +ab +bo +ae +ae +ae +ae +ae +ae +ae +ae +ae +at +ai +ai +ai +at +bR +bR +cd +ab +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +ab +ai +ai +aq +ax +ax +ax +aW +ai +bf +ab +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +ab +ai +ai +ai +ab +ab +ab +ab +ab +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +ab +aj +ai +ar +ay +ay +ay +aX +ai +ai +at +bq +bq +bq +bq +bq +bq +bq +bq +bq +bq +at +ai +ai +ai +ai +ai +ai +bw +ab +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +ab +ak +ai +ar +ay +ay +ay +aX +ai +ai +bj +br +br +br +br +br +br +br +br +br +br +bj +ai +ai +ai +ai +ai +ai +ab +ab +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +ab +aj +ai +ar +ay +ay +ay +aX +ai +ai +at +bs +bs +bs +bs +bs +bs +bs +bs +br +br +at +bx +ai +ai +ai +ai +ai +bw +ab +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +ab +ai +ai +as +az +az +az +aY +ai +bf +ab +bt +bt +bt +bt +bt +bt +bt +bt +ab +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +ab +ai +ai +ai +ai +ai +ai +ai +bb +bf +ab +bo +ae +ae +ae +ae +ae +ae +ae +ab +bu +ai +ai +ai +bJ +at +ai +ai +ab +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +ab +al +ai +ai +ai +ai +ai +ai +ai +bf +ab +ae +ae +ae +ae +ae +bn +ae +ae +at +ai +ai +bf +ai +ai +ab +ai +ai +ab +aa +"} +(16,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ae +ae +ae +ae +ae +ae +ae +ae +at +ai +bf +by +bF +ai +bO +ai +ai +ab +aa +"} +(17,1,1) = {" +aa +ab +ac +ac +ac +ad +ae +ae +ab +ab +aJ +ab +ab +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +at +ai +ai +bf +ai +ai +ab +ai +ai +ab +aa +"} +(18,1,1) = {" +aa +ab +ac +ad +ad +ae +af +ae +at +aA +aA +aA +at +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +bv +ai +ai +ai +bv +at +ai +ai +ab +aa +"} +(19,1,1) = {" +aa +ab +ac +ad +ae +ae +ae +ae +at +aA +aA +aA +at +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +ab +ab +ab +ab +ab +ab +ai +ai +ab +aa +"} +(20,1,1) = {" +aa +ab +ac +ad +ae +af +ae +ae +ab +ab +aJ +ab +ab +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +at +bz +ai +ai +ab +ai +ai +ab +aa +"} +(21,1,1) = {" +aa +ab +ac +ae +ae +ae +ae +ae +ae +ag +aK +ag +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +bA +bG +ai +bO +ai +ai +ab +ab +"} +(22,1,1) = {" +aa +ab +ac +af +ae +ae +ae +ae +ag +ag +aL +aS +aB +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +ab +ab +ab +ab +ai +ai +ai +ab +"} +(23,1,1) = {" +aa +ab +ac +ae +ae +ae +ae +ae +an +aB +ag +aT +aB +aB +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +bA +bG +ai +bO +ai +ai +ai +ab +"} +(24,1,1) = {" +aa +ab +ac +ae +ag +ag +ag +ag +ag +aC +aM +aU +aZ +bc +ag +ag +ae +ae +ae +ae +ae +ae +ae +af +ae +ae +at +bB +ai +ai +ab +ai +ai +al +ab +"} +(25,1,1) = {" +aa +ab +ac +ae +ae +ae +ae +an +ag +aD +aN +aP +aP +aP +bg +bk +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +ab +ab +ab +ab +ai +ai +ce +ab +"} +(26,1,1) = {" +aa +ab +ac +ae +ae +ae +ae +ao +ag +aE +aN +aP +aP +bd +bh +bl +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +bC +bH +bK +ab +bS +ab +ab +ab +"} +(27,1,1) = {" +aa +ab +ac +ae +ae +ae +ae +an +ag +aF +aN +aP +aP +aP +bi +bm +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +bD +bD +bD +bD +bD +bW +ab +aa +"} +(28,1,1) = {" +aa +ab +ac +ae +ag +ag +ag +ag +ag +aG +aO +aP +ba +be +ag +ag +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +bE +bD +bD +bD +bD +bX +ab +aa +"} +(29,1,1) = {" +aa +ab +ac +ae +ae +ae +ae +ae +an +aB +aP +aP +aB +aB +ag +ae +ae +ae +ae +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(30,1,1) = {" +aa +ab +ac +ae +ae +ae +ae +ae +ag +ag +aQ +aV +aB +ag +ae +ae +ae +ae +ae +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +ab +ac +ad +ad +ae +ae +ae +ae +ag +ag +ag +ag +ae +ae +ae +ae +ae +ae +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +ab +ac +ad +ad +ad +ae +ae +af +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +ab +ac +ad +ad +ad +ad +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +ab +ac +ad +ad +ad +ad +ad +ae +ae +ae +ae +af +ae +ae +ae +ae +ae +ae +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/admin_use/ert.dmm b/maps/tether/submaps/admin_use/ert.dmm new file mode 100644 index 00000000000..8c0af6b0e65 --- /dev/null +++ b/maps/tether/submaps/admin_use/ert.dmm @@ -0,0 +1,3160 @@ +//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{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/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, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/weapon/gun/energy/gun/martin, +/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, +/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, +/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, +/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, +/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/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/glass/bucket, +/obj/item/weapon/mop, +/obj/item/weapon/rig/ert/janitor, +/turf/simulated/shuttle/floor/black, +/area/shuttle/specops/centcom) +"cG" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list(103) + }, +/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) + }, +/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) + +(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 +"} +(2,1,1) = {" +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 +"} +(3,1,1) = {" +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 +"} +(4,1,1) = {" +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 +"} +(5,1,1) = {" +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 +"} +(6,1,1) = {" +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 +"} +(7,1,1) = {" +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 +"} +(8,1,1) = {" +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 +"} +(9,1,1) = {" +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 +"} +(10,1,1) = {" +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 +"} +(11,1,1) = {" +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 +"} +(12,1,1) = {" +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 +"} +(13,1,1) = {" +aa +ae +aj +aj +ap +ap +aI +ap +ap +ap +ap +am +bZ +aH +aH +ap +ap +ap +ap +dD +ap +ap +aj +aj +ef +aa +"} +(14,1,1) = {" +aa +ae +aj +aj +ap +az +aJ +az +ap +ap +ap +ap +ap +aH +cG +am +ap +da +dr +aH +dS +ap +aj +aj +ef +aa +"} +(15,1,1) = {" +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 +"} +(16,1,1) = {" +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 +"} +(17,1,1) = {" +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 +"} +(18,1,1) = {" +aa +ae +aj +aj +as +az +aJ +aV +bi +ap +aH +bd +cb +cs +bd +aH +ap +db +du +dG +dV +dJ +aj +aj +ef +aa +"} +(19,1,1) = {" +aa +ae +aj +aj +ap +ap +ap +ap +ap +am +bG +bd +cc +ct +bd +aH +am +ap +ap +ap +ap +ap +aj +aj +ef +aa +"} +(20,1,1) = {" +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 +"} +(21,1,1) = {" +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 +"} +(22,1,1) = {" +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 +"} +(23,1,1) = {" +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 +"} +(24,1,1) = {" +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 +"} +(25,1,1) = {" +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 +"} +(26,1,1) = {" +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 +"} +(27,1,1) = {" +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 +"} +(28,1,1) = {" +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 +"} +(29,1,1) = {" +ab +ab +ab +am +ap +am +aN +aH +aH +bh +am +bd +bd +bd +bd +am +cX +aH +aH +dN +am +ap +am +aj +ef +aa +"} +(30,1,1) = {" +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 +"} +(31,1,1) = {" +aa +ae +aj +aj +aj +aq +aO +aH +aH +ap +bK +bd +cl +bd +bd +cO +ap +dk +aH +dO +dH +aj +aj +aj +ef +aa +"} +(32,1,1) = {" +aa +ae +aj +aj +aj +as +aP +aH +bq +ap +bL +bd +bd +bd +bd +cP +ap +dl +aH +dP +dJ +aj +aj +aj +ef +aa +"} +(33,1,1) = {" +aa +ae +aj +aj +ap +ap +aQ +aH +br +am +ap +bT +cm +cy +cI +cQ +ap +dm +aH +dQ +ap +ap +aj +aj +ef +aa +"} +(34,1,1) = {" +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 +"} +(35,1,1) = {" +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 +"} +(36,1,1) = {" +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 +"} +(37,1,1) = {" +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 +"} +(38,1,1) = {" +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 +"} +(39,1,1) = {" +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 +"} +(40,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 +"} diff --git a/maps/tether/submaps/admin_use/mercbase.dmm b/maps/tether/submaps/admin_use/mercbase.dmm new file mode 100644 index 00000000000..bac8c22541e --- /dev/null +++ b/maps/tether/submaps/admin_use/mercbase.dmm @@ -0,0 +1,7056 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/unsimulated/wall, +/area/antag/antag_base) +"ac" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_w = 0; + pixel_x = 0; + pixel_y = 32 + }, +/obj/effect/landmark{ + name = "Syndicate-Spawn" + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"ad" = ( +/obj/structure/table/glass, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"ae" = ( +/obj/structure/bed/padded, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_w = 0; + pixel_x = 0; + pixel_y = 32 + }, +/obj/item/weapon/bedsheet/clown{ + desc = "A surprisingly soft linen bedsheet, except for the spots where it's crusty. Gross."; + name = "Dave's bedsheet" + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"af" = ( +/obj/structure/table/glass, +/obj/item/weapon/handcuffs/fuzzy, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"ag" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + tree_chance = 0 + }, +/area/antag/antag_base) +"ah" = ( +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"ai" = ( +/obj/structure/flora/tree/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + tree_chance = 0 + }, +/area/antag/antag_base) +"aj" = ( +/obj/machinery/door/airlock/centcom{ + name = "Private Room"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ak" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"al" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/plasmastun, +/obj/item/weapon/gun/energy/plasmastun, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"am" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/darkmatter, +/obj/item/weapon/gun/energy/darkmatter, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"an" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ao" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/frags, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ap" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/gun/projectile/heavysniper, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"aq" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ar" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"as" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/xray, +/obj/item/weapon/gun/energy/xray, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"at" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + layer = 1; + name = "Blocker" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/antag/antag_base) +"au" = ( +/obj/structure/window/reinforced{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + layer = 1; + name = "Blocker" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/antag/antag_base) +"av" = ( +/obj/structure/window/reinforced{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + layer = 1; + name = "Blocker" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/antag/antag_base) +"aw" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ax" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ay" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"az" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"aA" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/sniperrifle, +/obj/item/weapon/gun/energy/sniperrifle, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"aB" = ( +/obj/structure/closet/athletic_mixed, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/antag/antag_base) +"aC" = ( +/obj/machinery/fitness/heavy/lifter, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/antag/antag_base) +"aD" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/weapon/melee/telebaton, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_w = 0; + pixel_x = 0; + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/antag/antag_base) +"aE" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/antag/antag_base) +"aF" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed"; + 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, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"aG" = ( +/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, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"aH" = ( +/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, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"aI" = ( +/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, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"aJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"aK" = ( +/obj/machinery/door/airlock/vault{ + name = "War Armory"; + req_access = list(999); + req_one_access = list(999) + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"aL" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/antag/antag_base) +"aM" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"aN" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/obj/effect/landmark{ + name = "Syndicate-Spawn" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"aO" = ( +/obj/structure/table/rack, +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"aP" = ( +/obj/structure/table/rack, +/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/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"aQ" = ( +/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/item/weapon/gun/energy/sizegun, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"aR" = ( +/obj/structure/table/rack, +/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/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"aS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"aT" = ( +/obj/machinery/vending/fitness, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/antag/antag_base) +"aU" = ( +/obj/machinery/scale, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/antag/antag_base) +"aV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/antag/antag_base) +"aW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/antag/antag_base) +"aX" = ( +/obj/machinery/door/airlock/centcom{ + name = "Gym"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/antag/antag_base) +"aY" = ( +/obj/machinery/door/airlock/centcom{ + name = "Barracks"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"aZ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_w = 0; + pixel_x = 32; + pixel_y = 0 + }, +/obj/effect/landmark{ + name = "Syndicate-Spawn" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"ba" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bb" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bc" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed"; + 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, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"bd" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"be" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/weapon/gun/projectile/automatic/c20r, +/obj/item/weapon/gun/projectile/automatic/c20r, +/obj/item/weapon/gun/projectile/automatic/c20r, +/obj/item/weapon/gun/projectile/automatic/c20r, +/obj/item/weapon/gun/projectile/automatic/c20r, +/obj/item/weapon/gun/projectile/automatic/c20r, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bf" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/silenced, +/obj/item/weapon/gun/projectile/silenced, +/obj/item/weapon/gun/projectile/silenced, +/obj/item/weapon/gun/projectile/silenced, +/obj/item/weapon/gun/projectile/silenced, +/obj/item/weapon/gun/projectile/silenced, +/obj/item/weapon/gun/projectile/silenced, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bg" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bh" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/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/borderfloorblack{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bi" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/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/borderfloorblack{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bj" = ( +/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/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bk" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/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/borderfloorblack{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bl" = ( +/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, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"bm" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/backpack/dufflebag/syndie, +/obj/item/weapon/storage/backpack/dufflebag/syndie, +/obj/item/weapon/storage/backpack/messenger/black, +/obj/item/weapon/storage/backpack/messenger/black, +/obj/item/weapon/storage/backpack/satchel/norm, +/obj/item/weapon/storage/backpack/satchel/norm, +/obj/item/weapon/storage/backpack/satchel/norm, +/obj/item/weapon/storage/backpack/satchel/norm, +/obj/item/weapon/storage/backpack/satchel/norm, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"bn" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bo" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bp" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bq" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"br" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bs" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/antag/antag_base) +"bt" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bu" = ( +/obj/structure/table/rack, +/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/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bv" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bw" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bx" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"by" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bz" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bA" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = -32 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bB" = ( +/obj/effect/landmark{ + name = "Syndicate-Uplink" + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bC" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = -32 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bD" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bE" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/gun/energy/netgun, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bF" = ( +/obj/structure/table/rack, +/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/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, +/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/stunrevolver, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/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/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bG" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bH" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas/voice, +/obj/item/clothing/mask/gas/voice, +/obj/item/clothing/mask/gas/voice, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bI" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/structure/table/rack, +/obj/item/weapon/rig/merc/empty, +/obj/item/weapon/rig/merc/empty, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bJ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bK" = ( +/obj/machinery/door/airlock/vault{ + name = "Armory"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bL" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/oxygen/red, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bM" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bN" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"bO" = ( +/obj/structure/table/marble, +/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 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"bP" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_w = 0; + pixel_x = 0; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"bQ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"bR" = ( +/obj/machinery/vending/sovietsoda, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"bS" = ( +/obj/structure/table/rack, +/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/item/clothing/suit/storage/vest/heavy/merc, +/obj/item/clothing/suit/storage/vest/heavy/merc, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bT" = ( +/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/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"bU" = ( +/obj/structure/bed/chair/comfy/black, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"bV" = ( +/turf/unsimulated/floor/steel{ + icon = 'icons/turf/flooring/circuit.dmi'; + icon_state = "bcircuit" + }, +/area/antag/antag_base) +"bW" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bX" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bY" = ( +/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/borderfloorblack{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"bZ" = ( +/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/borderfloorblack{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ca" = ( +/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/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cb" = ( +/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/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cc" = ( +/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/borderfloorblack{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cd" = ( +/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/borderfloorblack{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ce" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/antag/antag_base) +"cf" = ( +/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) + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"cg" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"ch" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/donut{ + desc = "There's a name, and a message written on the lid. It reads, \"DO NOT EAT. That means you, Dave!\""; + name = "Mike's donut box" + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"ci" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder{ + pixel_y = 2 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"cj" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"ck" = ( +/obj/structure/table/rack, +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cl" = ( +/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/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cm" = ( +/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{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"co" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"cp" = ( +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cq" = ( +/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/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/item/weapon/card/emag, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cr" = ( +/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 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cs" = ( +/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 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ct" = ( +/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, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cu" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/item/clothing/mask/gas/wwii, +/obj/item/clothing/mask/gas/wwii, +/obj/item/clothing/mask/gas/wwii, +/obj/item/clothing/mask/gas/wwii, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cv" = ( +/obj/machinery/door/airlock/centcom{ + name = "Equipment Storage"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-20" + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"cx" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/item/clothing/mask/gas/voice, +/obj/item/clothing/mask/gas/voice, +/obj/item/clothing/mask/gas/voice, +/obj/item/clothing/mask/gas/voice, +/obj/item/clothing/mask/gas/voice, +/obj/item/clothing/mask/gas/voice, +/obj/item/clothing/mask/gas/voice, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cy" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cz" = ( +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = -32; + pixel_y = 0; + 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/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/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/borderfloorblack{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cA" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Cell"; + req_access = list(150) + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cC" = ( +/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/borderfloorblack{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cD" = ( +/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/borderfloorblack{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cE" = ( +/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/effect/floor_decal/borderfloorblack, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cF" = ( +/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/borderfloorblack, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cG" = ( +/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/effect/floor_decal/borderfloorblack, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cH" = ( +/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/effect/floor_decal/borderfloorblack, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cI" = ( +/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/effect/floor_decal/borderfloorblack, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cJ" = ( +/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/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/vending/nifsoft_shop{ + categories = 111; + emagged = 1; + name = "Hacked NIFSoft Shop"; + prices = list() + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cL" = ( +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cM" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cN" = ( +/obj/structure/bed, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/antag/antag_base) +"cP" = ( +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs/fuzzy, +/obj/item/weapon/handcuffs/fuzzy, +/obj/item/weapon/handcuffs, +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/antag/antag_base) +"cR" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cS" = ( +/obj/item/weapon/reagent_containers/hypospray, +/obj/structure/table/steel, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cT" = ( +/obj/machinery/door/airlock/centcom{ + name = "Prison Wing"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cU" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cV" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cW" = ( +/obj/effect/floor_decal/rust, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cX" = ( +/mob/living/simple_mob/animal/passive/fox/syndicate{ + name = "Rick" + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cY" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"cZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/antag/antag_base) +"da" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"db" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dc" = ( +/obj/effect/floor_decal/borderfloorblack, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dd" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = -32 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"de" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"df" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dg" = ( +/obj/machinery/door/airlock/centcom{ + name = "Bathroom"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/antag/antag_base) +"dh" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"di" = ( +/obj/machinery/door/airlock/centcom{ + name = "Kitchen"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dj" = ( +/obj/machinery/door/airlock/centcom{ + name = "MedBay"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/antag/antag_base) +"dk" = ( +/obj/item/weapon/material/knife/plastic{ + pixel_x = -6 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = -1 + }, +/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/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/structure/table/steel, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dl" = ( +/obj/machinery/shower{ + pixel_y = 32 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/obj/item/weapon/soap/syndie, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/antag/antag_base) +"dm" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/antag/antag_base) +"dn" = ( +/obj/structure/toilet, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/antag/antag_base) +"do" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dp" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dq" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dr" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"ds" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dt" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"du" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dv" = ( +/obj/machinery/chemical_dispenser/full, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dw" = ( +/obj/machinery/chem_master, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dx" = ( +/obj/item/device/defib_kit, +/obj/item/device/defib_kit, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dy" = ( +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/structure/closet/crate/freezer, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dz" = ( +/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, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dA" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dB" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw, +/obj/item/weapon/surgical/surgicaldrill, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dC" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/retractor, +/obj/item/weapon/surgical/bonesetter, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dD" = ( +/obj/item/weapon/gun/energy/sizegun, +/obj/item/weapon/gun/energy/sizegun, +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dE" = ( +/obj/machinery/door/airlock/centcom{ + name = "Toilet"; + req_one_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/antag/antag_base) +"dF" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tray{ + pixel_y = 5 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dG" = ( +/obj/structure/reagent_dispensers/beerkeg/fakenuke, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dI" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dK" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/surgical/FixOVein, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dL" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = -32 + }, +/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/structure/table/steel, +/obj/effect/floor_decal/borderfloorblack, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dM" = ( +/obj/item/clothing/gloves/knuckledusters, +/obj/item/clothing/gloves/knuckledusters, +/obj/item/clothing/gloves/knuckledusters, +/obj/item/clothing/gloves/knuckledusters, +/obj/item/clothing/gloves/knuckledusters, +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dN" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/antag/antag_base) +"dO" = ( +/obj/machinery/washing_machine, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/antag/antag_base) +"dP" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = 28; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/antag/antag_base) +"dQ" = ( +/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 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dR" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dS" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dT" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dU" = ( +/obj/machinery/vending/food, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dW" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/scalpel, +/obj/item/device/healthanalyzer, +/obj/item/weapon/surgical/hemostat, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"dX" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1331; + id_tag = "merc_base"; + pixel_x = -25; + pixel_y = -25 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dY" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"dZ" = ( +/obj/structure/bed/roller, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ea" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + name = "Grenade Crate"; + opened = 1 + }, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"eb" = ( +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/storage/box/beakers, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"ec" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"ed" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"ee" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"ef" = ( +/obj/structure/medical_stand, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"eg" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"eh" = ( +/obj/machinery/optable, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"ei" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/advanced/bruise_pack{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/medical/advanced/bruise_pack{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/surgical/bonegel, +/obj/item/weapon/surgical/bonegel, +/obj/item/stack/nanopaste, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/antag/antag_base) +"ej" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1331; + id_tag = "merc_base_hatch"; + req_access = list(150) + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"ek" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1331; + id_tag = "merc_base_hatch"; + req_access = list(150) + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"el" = ( +/turf/simulated/shuttle/wall/dark, +/area/shuttle/mercenary) +"em" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "smindicate"; + name = "Outer Airlock"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"en" = ( +/obj/machinery/door/airlock/glass_external{ + density = 1; + frequency = 1331; + id_tag = "merc_shuttle_outer"; + name = "Ship External Access"; + req_access = list(150) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "smindicate"; + name = "Outer Airlock"; + opacity = 0 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "merc_shuttle"; + name = "exterior access button"; + pixel_x = -25; + pixel_y = 0; + req_access = list(150) + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"eo" = ( +/obj/machinery/door/airlock/glass_external{ + density = 1; + frequency = 1331; + id_tag = "merc_shuttle_outer"; + name = "Ship External Access"; + req_access = list(150) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "smindicate"; + name = "Outer Airlock"; + opacity = 0 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"ep" = ( +/obj/structure/symbol/lo, +/turf/simulated/shuttle/wall/dark, +/area/shuttle/mercenary) +"eq" = ( +/obj/structure/symbol/da, +/turf/simulated/shuttle/wall/dark, +/area/shuttle/mercenary) +"er" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 1; + icon_state = "shutter0"; + id = "syndieshutters_infirmary"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"es" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "merc_shuttle_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "merc_shuttle_sensor"; + pixel_x = 8; + pixel_y = 25 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"et" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"eu" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/shuttle_landmark/shuttle_initializer{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "merc_base"; + landmark_tag = "merc_base"; + name = "The Hideaway"; + shuttle_type = /datum/shuttle/autodock/multi/mercenary + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"ev" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"ew" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"ex" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1331; + id_tag = "merc_shuttle_pump" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"ey" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"ez" = ( +/obj/machinery/sleep_console, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"eA" = ( +/obj/structure/table/standard, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_y = 32; + req_access = list(150) + }, +/obj/item/bodybag, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"eB" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"eC" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"eD" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "merc_shuttle_pump" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"eE" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"eF" = ( +/obj/machinery/button/remote/blast_door{ + id = "syndieshutters_infirmary"; + name = "remote shutter control"; + pixel_x = -25 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"eG" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"eH" = ( +/obj/machinery/vending/medical{ + density = 0; + pixel_x = 32; + pixel_y = 0; + req_access = null + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"eI" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4; + start_pressure = 740.5 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"eJ" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"eK" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil/black, +/obj/item/weapon/storage/toolbox/syndicate, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"eL" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/shuttle/mercenary) +"eM" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1331; + id_tag = "merc_shuttle"; + pixel_x = 0; + pixel_y = 0; + req_access = list(150) + }, +/turf/simulated/shuttle/wall/dark, +/area/shuttle/mercenary) +"eN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"eO" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1331; + id_tag = "merc_shuttle_inner"; + name = "Ship External Access"; + req_access = list(150) + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "merc_shuttle"; + name = "interior access button"; + pixel_x = -25; + pixel_y = 0; + req_access = list(150) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"eP" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1331; + id_tag = "merc_shuttle_inner"; + name = "Ship External Access"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"eQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"eR" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"eS" = ( +/obj/structure/table/glass, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"eT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"eU" = ( +/obj/machinery/vending/food, +/turf/simulated/shuttle/wall/dark, +/area/shuttle/mercenary) +"eV" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/shuttle/wall/dark, +/area/shuttle/mercenary) +"eW" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"eX" = ( +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"eY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"eZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fa" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_one_access = list(150) + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fb" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"fd" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fe" = ( +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = 0; + 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/machinery/light{ + dir = 4 + }, +/obj/item/device/defib_kit/compact/combat/loaded, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"ff" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fg" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fh" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fj" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/nosmoking_1, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fl" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"fm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/surgical/retractor, +/obj/item/stack/nanopaste, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/mercenary) +"fn" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Surgery"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor, +/area/shuttle/mercenary) +"fo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw, +/obj/item/weapon/surgical/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/weapon/surgical/hemostat, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/item/weapon/surgical/surgicaldrill, +/turf/simulated/shuttle/floor, +/area/shuttle/mercenary) +"fp" = ( +/obj/structure/sign/department/operational, +/turf/simulated/shuttle/wall/dark, +/area/shuttle/mercenary) +"fq" = ( +/obj/effect/landmark/late_antag/mercenary, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/antag/antag_base) +"fr" = ( +/obj/effect/floor_decal/rust, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "mfloor5" + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fs" = ( +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"ft" = ( +/obj/structure/mopbucket, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fu" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"fv" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"fw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/mercenary) +"fx" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/mercenary) +"fy" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = 32; + pixel_y = 0; + req_access = list(150) + }, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/turf/simulated/shuttle/floor, +/area/shuttle/mercenary) +"fz" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/mercenary) +"fA" = ( +/obj/effect/landmark/late_antag/mercenary, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "dark" + }, +/area/antag/antag_base) +"fB" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = -32; + pixel_y = 0; + subspace_transmission = 1; + syndie = 1 + }, +/obj/structure/closet, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fC" = ( +/obj/structure/closet, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fD" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fE" = ( +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 0; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fF" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/medbay, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fH" = ( +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"fI" = ( +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/structure/table/reinforced, +/obj/item/bodybag/cryobag, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"fJ" = ( +/obj/structure/medical_stand, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/mercenary) +"fK" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor, +/area/shuttle/mercenary) +"fL" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/simulated/shuttle/floor, +/area/shuttle/mercenary) +"fM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fN" = ( +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fO" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/m380, +/obj/item/ammo_magazine/m380, +/obj/item/ammo_magazine/m380, +/obj/item/ammo_magazine/m380, +/obj/item/ammo_magazine/m380, +/obj/item/weapon/gun/projectile/giskard, +/obj/item/clothing/accessory/holster, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fP" = ( +/obj/machinery/vending/cigarette{ + name = "hacked 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/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fQ" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"fR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"fT" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + id = "syndieshutters"; + name = "remote shutter control"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fU" = ( +/obj/machinery/vending/coffee{ + name = "hacked Hot Drinks machine"; + prices = list() + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fV" = ( +/obj/structure/sign/department/bridge, +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/shuttle/mercenary) +"fW" = ( +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fX" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fY" = ( +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"fZ" = ( +/obj/structure/closet/syndicate, +/obj/item/clothing/mask/gas/wwii, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/item/clothing/head/helmet, +/obj/item/clothing/shoes/boots/jackboots, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/gloves/black, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"ga" = ( +/obj/structure/closet/syndicate, +/obj/item/clothing/mask/gas/wwii, +/obj/item/clothing/head/helmet, +/obj/item/clothing/shoes/boots/jackboots, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/gloves/black, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gb" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/telecoms, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"gd" = ( +/obj/structure/closet, +/obj/item/weapon/reagent_containers/food/snacks/tastybread, +/obj/item/weapon/reagent_containers/food/snacks/tastybread, +/obj/item/weapon/reagent_containers/food/snacks/tastybread, +/obj/item/weapon/reagent_containers/food/snacks/tastybread, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/mercenary) +"ge" = ( +/obj/structure/closet, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/mercenary) +"gf" = ( +/obj/structure/closet, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/mercenary) +"gg" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/structure/closet, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/mercenary) +"gh" = ( +/obj/machinery/computer/shuttle_control/multi/mercenary{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gi" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/clothing/glasses/goggles, +/obj/item/clothing/head/helmet/merc{ + armor = list("melee" = 70, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); + desc = "A pilot's flight helmet. It's not very well armored, but it's very well padded, making it resistant to melee attacks."; + name = "pilot helmet" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gj" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/mercenary) +"gk" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/mercenary) +"gl" = ( +/obj/machinery/computer/security/nuclear{ + dir = 4; + icon_state = "computer" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gm" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 1; + req_one_access = list(150) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"gn" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"go" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"gp" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + id = "smindicate"; + name = "ship lockdown control"; + pixel_x = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gq" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gr" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gs" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 0; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gv" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 0; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/structure/closet/syndicate, +/obj/item/clothing/mask/gas/wwii, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/item/clothing/head/helmet, +/obj/item/clothing/shoes/boots/jackboots, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/gloves/black, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gw" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/structure/table/rack, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/mercenary) +"gx" = ( +/obj/structure/frame/computer, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/mercenary) +"gy" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/mercenary) +"gz" = ( +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/mercenary) +"gA" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r"; + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/mercenary) +"gB" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gC" = ( +/obj/machinery/washing_machine, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gD" = ( +/obj/machinery/washing_machine, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gE" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gF" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gG" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gH" = ( +/obj/structure/sign/department/armory, +/turf/simulated/shuttle/wall/dark, +/area/shuttle/mercenary) +"gI" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"gJ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 32 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"gK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/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, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"gL" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"gM" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"gN" = ( +/obj/structure/mirror{ + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"gO" = ( +/obj/machinery/door/airlock/centcom{ + name = "Equipment Storage"; + req_one_access = list(150) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"gP" = ( +/obj/structure/table/rack, +/obj/item/weapon/paper{ + info = "Remember to stock the armory before leaving.\[br]-Mike"; + name = "reminder" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"gQ" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"gR" = ( +/obj/item/weapon/tool/screwdriver, +/obj/effect/spawner/newbomb/timer/syndicate, +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"gS" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = -32; + pixel_y = 0; + subspace_transmission = 1; + syndie = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 6 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"gT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"gU" = ( +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"gV" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"gX" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"gY" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"gZ" = ( +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = 0; + 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/machinery/light{ + dir = 4 + }, +/obj/item/device/defib_kit/compact/combat/loaded, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"ha" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 0; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"hb" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"hc" = ( +/obj/item/weapon/storage/box/frags, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"hd" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4; + start_pressure = 740.5 + }, +/obj/machinery/door/window, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"he" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/mercenary) +"hf" = ( +/obj/machinery/shower{ + dir = 8; + icon_state = "shower"; + pixel_x = -5; + pixel_y = 0 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/shuttle/mercenary) +"hg" = ( +/obj/machinery/embedded_controller/radio/airlock/phoron{ + id_tag = "merc_south_airlock"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/shuttle/wall/dark, +/area/shuttle/mercenary) +"hh" = ( +/obj/machinery/access_button/airlock_exterior{ + command = "cycle_interior"; + master_tag = "merc_south_airlock"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "merc_south_airlock_inner"; + locked = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"hi" = ( +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "merc_south_airlock_inner"; + locked = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"hj" = ( +/obj/item/device/aicard, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"hk" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "merc_south_airlock_pump" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"hl" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"hm" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "merc_south_airlock_pump" + }, +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"hn" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + frequency = 1379; + scrub_id = "merc_south_airlock_scrubber" + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"ho" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 2 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "syndieshutters_workshop"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"hp" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/device/multitool, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"hq" = ( +/obj/machinery/airlock_sensor/phoron{ + id_tag = "civ_airlock_sensor"; + pixel_x = 8; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "merc_south_airlock_pump" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/mercenary) +"hr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"hs" = ( +/obj/machinery/button/remote/blast_door{ + id = "syndieshutters_workshop"; + name = "remote shutter control"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_black" + }, +/area/shuttle/mercenary) +"ht" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "smindicate"; + name = "Outer Airlock"; + opacity = 0 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "smindicate"; + name = "Outer Airlock"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"hu" = ( +/obj/machinery/access_button/airlock_exterior{ + master_tag = "merc_south_airlock"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "merc_south_airlock_outer"; + locked = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "smindicate"; + name = "Outer Airlock"; + opacity = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"hv" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "merc_south_airlock_outer"; + locked = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "smindicate"; + name = "Outer Airlock"; + opacity = 0 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_dred" + }, +/area/shuttle/mercenary) +"hw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "syndieshutters_workshop"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/mercenary) +"hx" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/mercenary) +"hy" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l"; + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/mercenary) + +(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 +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 +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +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 +ab +ak +aq +aq +aK +aq +aq +bd +bd +bt +bD +aq +bV +aq +cp +ab +aq +cM +ab +aq +df +ab +cW +df +ab +aa +aa +aa +aa +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 +ab +al +aq +aw +ab +aO +aq +be +bn +bu +bE +aq +bW +aq +cq +ab +aq +cN +ab +cW +cN +ab +aq +cN +ab +aa +aa +aa +aa +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 +ab +am +aq +ax +ab +aP +aq +bf +bo +bv +bF +aq +bW +aq +cr +ab +cA +cO +ab +cA +cO +ab +cA +cO +ab +aa +aa +aa +aa +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 +aa +ab +an +aq +ay +ab +aQ +ba +bg +bg +bw +bG +aq +bV +aq +cs +ab +bp +aq +cS +aq +aq +dk +aq +bx +ab +aa +aa +aa +aa +aa +aa +aa +el +gk +el +aa +fR +fM +fM +go +aa +el +gk +el +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ao +aq +az +ab +aR +bb +aq +aq +aq +aq +aq +aq +aq +ct +ab +cB +aq +aq +cX +aq +aq +aq +dL +ab +aa +aa +aa +aa +aa +aa +el +el +el +el +fM +fS +gh +gl +fS +fM +el +el +el +el +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +ab +ab +ab +ab +ap +as +aA +ab +aS +aq +aq +aq +aq +bH +bS +bX +ck +aS +ab +cC +cP +aq +cY +br +br +dD +dM +ab +aa +aa +aa +aa +aa +el +el +el +el +el +fN +fT +gi +gi +gp +fN +el +gL +el +el +el +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +ab +ac +ah +ab +ab +ab +ab +ab +ab +ab +ab +bp +bx +ab +ab +ab +ab +ab +ab +ab +ab +cT +cZ +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +el +eI +eX +fr +el +fO +fu +fu +fu +fu +fO +el +gM +eL +hd +el +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +ab +ad +ah +aj +aq +ab +aB +aL +aT +ab +bh +bq +by +bI +ab +bY +cl +cu +cx +cD +ab +bp +da +ab +dl +dm +dN +ab +aa +aa +aa +aa +aa +el +eJ +eY +fs +el +fP +fU +fu +fu +gq +gB +el +eG +gS +he +el +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +ab +ab +ab +ab +aq +ab +aC +aL +aU +ab +bi +aq +bz +bJ +ab +bZ +aq +aq +aq +cE +ab +cB +db +dg +dm +dm +dO +ab +aa +aa +aa +aa +el +el +eK +eZ +ft +el +el +fV +fu +gm +eL +el +el +gN +gT +hf +el +el +aa +aa +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +aa +ab +ac +ah +ab +aq +ab +aD +aL +aV +ab +bi +aq +bA +ab +ab +ca +aq +aq +aq +cF +cQ +cB +aq +ab +ab +dE +ab +ab +aa +aa +aa +el +el +el +eL +fa +eL +el +el +fW +fu +fu +gr +el +el +eL +gU +eL +el +el +el +aa +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +aa +ab +ad +ah +aj +aq +ab +aC +aL +aU +ab +bj +aq +bB +bK +aq +aq +aq +aq +aq +cG +cQ +cB +bx +ab +dn +dm +dP +ab +aa +aa +aa +el +es +eD +eM +ew +fg +fB +el +fX +fu +fu +gs +el +fB +fg +ew +hg +hk +hq +el +aa +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +ab +ab +ab +ab +ar +ab +aE +aL +aW +ab +bi +aq +bC +ab +ab +cb +aq +aq +aq +cH +cQ +cB +dc +ab +ab +ab +ab +ab +ab +ab +ab +em +et +eE +eN +fb +fh +fC +ff +fX +fu +fu +gt +ff +fC +fh +gV +ff +ew +ew +ht +aa +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +ab +ae +ah +ab +aq +ab +ab +ab +aX +ab +bi +aq +by +bL +ab +cc +aq +aq +aq +cI +ab +cB +by +dh +dh +dh +dh +dX +ej +dh +ej +en +eu +ev +eO +fc +fu +fu +fQ +fu +fu +fu +fu +fQ +fu +fu +gW +hh +hl +hr +hu +aa +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +ab +af +ah +aj +aq +aq +aq +aq +aq +ab +bk +br +br +bM +ab +cd +cm +aq +cy +cJ +ab +cB +bz +br +br +br +br +br +ek +br +ek +eo +ev +ev +eP +fc +fu +fu +fu +fu +fu +fu +fu +fu +fu +fu +gX +hi +ev +ev +hv +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aY +ab +ab +ab +ab +ab +ab +ce +ce +cv +ab +ab +ab +cB +dc +ab +ab +ab +ab +ab +ab +ab +ab +em +ew +ew +eQ +fd +fu +fC +ff +fX +fu +fu +gt +ff +gC +fu +gY +ff +hm +hm +ht +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +ab +ag +ag +ag +ag +ab +aF +aM +aM +bc +bl +bs +ab +bN +bT +cf +cn +ah +cz +cK +cR +bq +dd +ab +do +dF +dQ +ab +aa +aa +aa +ep +ex +ex +el +fe +fu +fD +el +fY +fu +fu +gu +el +gD +fu +gZ +el +hn +hn +el +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +ab +ag +ai +ag +ag +at +aG +aM +aM +aM +aM +aM +ab +bO +ah +ah +ah +ah +aq +aq +aq +aq +db +cZ +dp +dp +dR +ab +aa +aa +aa +eq +el +el +el +ff +fv +ff +el +ff +fu +gn +ff +el +ff +fv +ff +el +el +el +el +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +ab +ag +ag +ag +ag +au +aH +aM +aM +aM +aM +aM +aY +ah +ah +ah +fq +fq +fA +aq +aq +aq +aq +di +dp +dp +dS +ab +aa +aa +aa +aa +el +el +eL +fg +fu +fE +el +fZ +fu +fu +gv +el +gE +fu +ha +eL +el +el +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +ab +ag +ag +ai +ag +av +aI +aM +aM +aM +aM +aM +ab +ah +ah +cg +fq +fq +fA +aq +aq +aq +bx +ab +dq +dp +dT +ab +aa +aa +aa +aa +aa +er +eR +fh +fu +eT +ff +ga +fu +fu +ga +ff +gF +fu +fh +gF +ho +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +ab +ag +ag +ag +ag +ab +aJ +aN +aZ +aN +bm +aJ +ab +bP +bU +ch +co +ah +aq +aq +aq +aq +dd +ab +dr +dG +dU +ab +aa +aa +aa +aa +aa +er +eS +fi +fu +fu +fv +fu +fu +fu +fu +fv +fu +fu +fh +gF +ho +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bQ +bU +ci +co +ah +br +br +br +cU +dc +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +er +eT +fh +fu +eR +ff +ga +fu +fu +ga +ff +gF +fu +fh +gF +ho +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +bR +ah +cj +ah +cw +ab +cL +ab +cB +dc +ab +ds +dH +dV +dY +ab +aa +aa +aa +el +el +eU +fh +fu +eS +el +ga +fu +fu +ga +el +gF +fu +fh +el +el +el +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +cB +dc +ab +ds +dI +dV +dY +ab +aa +aa +el +el +el +eV +fj +fu +fF +el +gb +fu +fu +gb +el +gG +fu +fj +el +el +el +el +aa +aa +aa +aa +aa +"} +(27,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 +ab +cB +dc +ab +dt +dJ +aq +dZ +ab +aa +aa +el +el +el +eL +fk +fv +fG +el +gc +fu +gn +ff +el +gH +gO +el +el +el +el +el +aa +aa +aa +aa +aa +"} +(28,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 +ab +cB +dc +ab +du +du +du +du +ab +aa +aa +el +ey +eF +eG +fl +eG +fH +el +gd +gj +gj +gw +el +gI +gI +hb +gI +gI +hs +el +aa +aa +aa +aa +aa +"} +(29,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 +ab +cB +dc +cZ +dv +dp +dp +ea +ab +aa +aa +er +ez +eG +eG +eG +eG +fI +el +ge +gj +gj +gx +el +gJ +gP +gQ +gQ +gQ +gI +hw +aa +aa +aa +aa +aa +"} +(30,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 +ab +bp +dc +cZ +dw +dp +dp +eb +ab +aa +aa +er +eA +eG +eG +fm +fw +fJ +el +gf +gj +gj +gy +el +gJ +gQ +gQ +gQ +gQ +gI +hw +aa +aa +aa +aa +aa +"} +(31,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 +ab +cB +dc +ab +dx +dp +dp +ec +ab +aa +aa +er +eB +eG +eG +fn +fx +fK +el +gg +gj +gj +gz +el +gI +gI +gI +gI +gI +gI +hw +aa +aa +aa +aa +aa +"} +(32,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 +ab +cB +dc +dj +dp +dp +dp +ed +ab +aa +aa +el +eC +eH +eW +fo +fy +fL +el +el +el +el +el +el +gK +gR +hc +hj +hp +hp +el +aa +aa +aa +aa +aa +"} +(33,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 +ab +cB +dc +ab +dy +dp +dp +ee +ab +aa +aa +el +el +el +el +fp +el +el +eL +fz +fz +fz +fz +eL +el +el +el +el +el +el +el +aa +aa +aa +aa +aa +"} +(34,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 +ab +cB +dc +cZ +dz +dp +dp +ef +ab +aa +aa +el +el +el +el +el +el +eL +fz +gA +hx +hx +hy +fz +eL +el +el +el +el +el +el +aa +aa +aa +aa +aa +"} +(35,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 +ab +cB +dc +cZ +dA +dp +dp +eg +ab +aa +aa +aa +el +el +el +el +eL +fz +gA +aa +aa +aa +aa +hy +fz +eL +el +el +el +el +aa +aa +aa +aa +aa +aa +"} +(36,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 +ab +aq +dc +ab +dB +dp +dp +eh +ab +aa +aa +aa +aa +el +el +el +fz +gA +aa +aa +aa +aa +aa +aa +hy +fz +el +el +el +aa +aa +aa +aa +aa +aa +aa +"} +(37,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 +ab +cV +de +ab +dC +dK +dW +ei +ab +aa +aa +aa +aa +aa +el +eL +gA +aa +aa +aa +aa +aa +aa +aa +aa +hy +eL +el +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/admin_use/skipjack.dmm b/maps/tether/submaps/admin_use/skipjack.dmm new file mode 100644 index 00000000000..2c252f6ad8a --- /dev/null +++ b/maps/tether/submaps/admin_use/skipjack.dmm @@ -0,0 +1,3159 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/unsimulated/wall, +/area/skipjack_station) +"ac" = ( +/obj/structure/table/standard, +/obj/random/projectile, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ad" = ( +/obj/structure/table/standard, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ae" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"af" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ag" = ( +/turf/simulated/mineral, +/area/skipjack_station) +"ah" = ( +/obj/structure/inflatable, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"ai" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"aj" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"ak" = ( +/obj/structure/inflatable, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"al" = ( +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"am" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"an" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"ao" = ( +/obj/item/weapon/tray{ + pixel_y = 5 + }, +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"ap" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aq" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"ar" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"as" = ( +/obj/item/weapon/ore, +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"at" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"au" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"av" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/item/weapon/soap/syndie, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"aw" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"ax" = ( +/obj/structure/toilet, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"ay" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/carapace, +/obj/item/clothing/suit/space/vox/carapace, +/obj/item/clothing/head/helmet/space/vox/carapace, +/obj/item/clothing/head/helmet/space/vox/carapace, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"az" = ( +/obj/item/weapon/gun/energy/sonic, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aA" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_robes, +/obj/item/clothing/under/vox/vox_robes, +/obj/item/clothing/under/vox/vox_robes, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aB" = ( +/obj/structure/closet/crate, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aC" = ( +/obj/structure/closet/crate, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aD" = ( +/obj/item/weapon/gun/launcher/spikethrower, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aE" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/stealth, +/obj/item/clothing/suit/space/vox/stealth, +/obj/item/clothing/head/helmet/space/vox/stealth, +/obj/item/clothing/head/helmet/space/vox/stealth, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aF" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"aG" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"aH" = ( +/obj/structure/mirror/raider{ + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"aI" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"aJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"aK" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/medic, +/obj/item/clothing/suit/space/vox/medic, +/obj/item/clothing/head/helmet/space/vox/medic, +/obj/item/clothing/head/helmet/space/vox/medic, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aL" = ( +/obj/item/clothing/glasses/night/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aM" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/darkmatter, +/obj/item/weapon/gun/energy/darkmatter, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aN" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken1" + }, +/area/skipjack_station) +"aO" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"aP" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"aQ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"aR" = ( +/obj/structure/table/standard, +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"aS" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"aT" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -28; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"aU" = ( +/obj/machinery/shower{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"aV" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/pressure, +/obj/item/clothing/suit/space/vox/pressure, +/obj/item/clothing/head/helmet/space/vox/pressure, +/obj/item/clothing/head/helmet/space/vox/pressure, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aW" = ( +/obj/item/weapon/gun/energy/plasmastun, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aX" = ( +/obj/item/weapon/gun/launcher/crossbow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aY" = ( +/obj/fiftyspawner/rods, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"aZ" = ( +/obj/item/clothing/mask/gas/swat/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"ba" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas/swat/vox, +/obj/item/clothing/mask/gas/swat/vox, +/obj/item/clothing/mask/gas/swat/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"bb" = ( +/obj/effect/landmark/late_antag/raider, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"bc" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"bd" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/skipjack_station) +"be" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"bf" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"bg" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"bh" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/skipjack_station) +"bi" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken3" + }, +/area/skipjack_station) +"bj" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/skipjack_station) +"bk" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"bl" = ( +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"bm" = ( +/obj/item/xenos_claw, +/obj/item/organ/internal/brain/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"bn" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "asteroid_dug" + }, +/area/skipjack_station) +"bo" = ( +/obj/effect/landmark/late_antag/raider, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken3" + }, +/area/skipjack_station) +"bp" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/skipjack_station) +"bq" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"br" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/thermal/plain/monocle, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bs" = ( +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bt" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/spikethrower, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bu" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/blue, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"bv" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"bw" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hop, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"bx" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"by" = ( +/obj/item/clothing/head/xenos, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bz" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"bA" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bB" = ( +/obj/item/weapon/storage/box, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bC" = ( +/obj/item/clothing/mask/gas/swat{ + desc = "A close-fitting mask clearly not made for a human face."; + name = "\improper alien mask" + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bD" = ( +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bE" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bF" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"bG" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"bH" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bI" = ( +/obj/item/pizzabox/meat, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bJ" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bK" = ( +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bM" = ( +/obj/structure/table/steel, +/obj/item/device/pda/syndicate, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bO" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bP" = ( +/obj/item/clothing/head/philosopher_wig, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bQ" = ( +/obj/structure/table/steel, +/obj/item/device/radio/uplink, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bR" = ( +/obj/item/weapon/gun/launcher/pneumatic, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bS" = ( +/obj/item/weapon/storage/box/syndie_kit/spy, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"bU" = ( +/obj/structure/ore_box, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"bV" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"bW" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"bX" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) +"bY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"bZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ca" = ( +/turf/simulated/wall/skipjack, +/area/shuttle/skipjack) +"cb" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "vox_west_control"; + req_one_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/shuttle/skipjack) +"cc" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_northwest_lock"; + locked = 0; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cd" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_northeast_lock"; + locked = 0; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"ce" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "vox_east_control"; + req_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/shuttle/skipjack) +"cf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1331; + id_tag = "vox_west_vent" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cg" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "vox_west_sensor"; + pixel_x = 25 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"ch" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"ci" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"ck" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "vox_east_sensor"; + pixel_x = -25 + }, +/obj/effect/shuttle_landmark/shuttle_initializer{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = null; + landmark_tag = "skipjack_base"; + name = "The Hideaway"; + shuttle_type = /datum/shuttle/autodock/multi/heist + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1331; + id_tag = "vox_east_vent" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cn" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + tag_airpump = "vox_west_vent"; + tag_exterior_door = "vox_northwest_lock"; + frequency = 1331; + id_tag = "vox_west_control"; + tag_interior_door = "vox_southwest_lock"; + pixel_x = 24; + req_access = list(150); + tag_chamber_sensor = "vox_west_sensor" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1331; + id_tag = "vox_west_vent" + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"co" = ( +/obj/machinery/computer/station_alert, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cp" = ( +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cq" = ( +/obj/machinery/computer/shuttle_control/multi/skipjack, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cr" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/head/pirate, +/obj/item/clothing/glasses/thermal/plain/monocle, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cs" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1331; + id_tag = "skipjack_shuttle"; + pixel_x = -24; + req_access = list(150); + tag_airpump = "vox_east_vent"; + tag_chamber_sensor = "vox_east_sensor"; + tag_exterior_door = "vox_northeast_lock"; + tag_interior_door = "vox_southeast_lock" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "vox_east_vent" + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"ct" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cu" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_southwest_lock"; + locked = 0; + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cv" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cy" = ( +/obj/machinery/button/remote/blast_door{ + id = "skipjackshutters"; + name = "remote shutter control"; + req_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/shuttle/skipjack) +"cz" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_southeast_lock"; + locked = 0; + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cA" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "vox_west_control"; + pixel_x = -22; + req_one_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cB" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/harpoon, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/random/rigsuit, +/obj/random/multiple/voidsuit, +/obj/random/multiple/voidsuit, +/obj/random/energy, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cC" = ( +/obj/structure/table/rack, +/obj/random/rigsuit, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cD" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/obj/random/multiple/voidsuit, +/obj/random/multiple/voidsuit, +/obj/random/energy, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cE" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "vox_east_control"; + pixel_x = 22; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cF" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cG" = ( +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cH" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/steel, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cI" = ( +/obj/item/seeds/potatoseed, +/obj/item/seeds/potatoseed, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/beartrap, +/obj/structure/table/steel, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cJ" = ( +/obj/machinery/vending/hydroseeds, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cK" = ( +/obj/structure/table/rack, +/obj/item/weapon/melee/energy/sword/pirate, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/suit/space/pirate, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/pinpointer/shuttle/heist, +/obj/item/weapon/pinpointer/shuttle/heist, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cL" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/clothing/shoes/magboots, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cM" = ( +/obj/machinery/washing_machine, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cN" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/weapon/card/emag, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cS" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"cT" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/multiple/voidsuit, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cU" = ( +/obj/item/robot_parts/head, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cW" = ( +/obj/item/robot_parts/l_leg, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cY" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"cZ" = ( +/obj/machinery/floodlight, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"da" = ( +/obj/item/device/suit_cooling_unit, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"db" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/crossbow, +/obj/item/stack/rods{ + amount = 10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dc" = ( +/obj/structure/table/rack, +/obj/item/weapon/grenade/empgrenade, +/obj/item/weapon/grenade/flashbang, +/obj/item/weapon/grenade/spawnergrenade/manhacks, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dd" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"de" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"df" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dg" = ( +/obj/item/robot_parts/robot_suit, +/obj/item/robot_parts/r_leg, +/obj/item/robot_parts/r_arm, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"di" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/skipjack) +"dj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dk" = ( +/obj/structure/table/steel, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dm" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"dn" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"do" = ( +/obj/item/weapon/tool/wrench, +/obj/item/weapon/mop, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dp" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/item/weapon/tool/crowbar, +/obj/item/device/suit_cooling_unit, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dr" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"ds" = ( +/turf/simulated/shuttle/floor/black, +/area/shuttle/skipjack) +"dt" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/skipjack) +"du" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dw" = ( +/obj/structure/table/steel, +/obj/item/weapon/deck/cards, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dy" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"dz" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"dA" = ( +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"dB" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dC" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/item/weapon/tank/nitrogen, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dE" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/skipjack) +"dF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dG" = ( +/obj/structure/table/steel, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dH" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"dI" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/skipjack) +"dJ" = ( +/obj/structure/table/standard, +/obj/item/weapon/handcuffs/legcuffs, +/turf/simulated/shuttle/floor/black, +/area/shuttle/skipjack) +"dK" = ( +/obj/structure/table/standard, +/obj/item/weapon/deck/cards, +/turf/simulated/shuttle/floor/black, +/area/shuttle/skipjack) +"dL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/skipjack) +"dM" = ( +/obj/machinery/light/small, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/skipjack) +"dN" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw{ + pixel_y = 8 + }, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/scalpel, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"dO" = ( +/mob/living/simple_mob/animal/passive/tindalos, +/turf/simulated/shuttle/floor/black, +/area/shuttle/skipjack) +"dP" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/skipjack) +"dQ" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"dR" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/surgical/retractor, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/syringe, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"dS" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/skipjack) +"dT" = ( +/obj/item/weapon/bedsheet/rainbow, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/shuttle/skipjack) +"dU" = ( +/turf/simulated/shuttle/floor/red, +/area/shuttle/skipjack) +"dV" = ( +/obj/item/weapon/bedsheet/hos, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/shuttle/skipjack) +"dW" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel, +/obj/item/weapon/surgical/FixOVein, +/obj/item/stack/nanopaste, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"dX" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/skipjack) +"dY" = ( +/obj/item/weapon/bedsheet/orange, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/shuttle/skipjack) +"dZ" = ( +/obj/item/weapon/bedsheet/green, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/shuttle/skipjack) +"ea" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/storage/firstaid/clotting, +/obj/item/stack/medical/splint, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"eb" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = 32; + pixel_y = 0; + req_access = list(150) + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/shuttle/floor/white, +/area/shuttle/skipjack) +"ec" = ( +/obj/item/weapon/bedsheet/rd, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/shuttle/skipjack) +"ed" = ( +/obj/item/pizzabox/meat, +/turf/simulated/shuttle/floor/red, +/area/shuttle/skipjack) +"ee" = ( +/obj/item/weapon/bedsheet/clown, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/shuttle/skipjack) + +(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 +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 +ca +ca +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 +ab +ab +ab +ab +ab +bV +bV +bV +ca +ca +ca +ca +ca +ca +ca +cV +cX +dh +ca +ca +ca +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +af +af +bl +af +bW +bY +bW +cb +cf +cm +cu +cA +cF +cF +cF +cY +cY +dq +dE +dI +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aN +bb +bc +bb +bu +ab +ae +af +af +af +bl +bW +bZ +bW +cc +cg +cn +ca +cB +cG +cG +cG +cG +cG +dr +dE +dI +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aO +bc +bi +bc +aO +ab +af +af +af +ab +ab +bX +bX +bX +ca +ca +ca +ca +ca +cH +cG +cG +cZ +cG +dr +ca +ca +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +ab +ab +ah +ak +ab +ab +ab +aP +bb +bc +bb +bv +ab +af +af +af +bz +aa +aa +aa +aa +aa +aa +aa +aa +ca +cI +cG +cG +da +ca +ca +ca +ca +ca +ca +ca +ca +aa +aa +aa +"} +(8,1,1) = {" +aa +ab +ac +af +al +ap +af +ab +aO +bc +bc +bc +aO +ab +bl +af +af +bz +aa +aa +aa +aa +aa +aa +aa +aa +ca +cJ +cO +cG +cG +di +ds +ds +dJ +ds +ds +ca +ca +aa +aa +aa +"} +(9,1,1) = {" +aa +ab +ac +af +af +af +af +ab +aQ +bb +bc +bo +bw +ab +bl +bl +af +bz +aa +aa +aa +aa +aa +aa +ca +ca +ca +ca +ca +cS +ca +ca +dt +ds +dK +dO +ds +dX +ca +ca +aa +aa +"} +(10,1,1) = {" +aa +ab +ad +af +af +af +af +ab +aR +bd +bj +bp +aO +ab +ab +ab +bA +ab +ab +ab +aa +aa +ca +ca +ca +ca +cC +cK +cP +cp +db +ca +ds +ds +ds +ds +dS +ds +ca +ca +ca +aa +"} +(11,1,1) = {" +aa +ab +ab +ab +am +ab +ab +ab +ab +ab +bk +ab +ab +ab +bD +bD +bD +bD +bS +ab +aa +aa +aa +ch +co +cv +cp +cp +cQ +cp +dc +ca +du +dF +dL +ca +ca +ca +ca +dE +dI +aa +"} +(12,1,1) = {" +aa +ab +ae +af +af +af +af +af +af +af +af +af +bl +bz +bD +bD +bL +bL +bD +bz +aa +aa +aa +ci +cp +cp +cp +cp +cR +cp +cp +dj +dv +dv +dM +ca +dT +dY +ec +dE +dI +aa +"} +(13,1,1) = {" +aa +ab +af +af +af +af +af +af +af +af +af +af +af +bA +bD +bJ +bM +bQ +bT +bz +aa +aa +aa +ci +cq +cw +cp +cp +cS +cp +cp +dk +dw +dG +cp +dP +dU +dU +ed +dE +dI +aa +"} +(14,1,1) = {" +aa +ab +af +ai +af +af +af +af +af +af +af +af +af +bz +bD +bD +bN +bN +bD +bz +aa +aa +aa +ci +cp +cp +cp +cp +cP +cp +cp +dl +dx +dx +dM +ca +dV +dZ +ee +dE +dI +aa +"} +(15,1,1) = {" +aa +ab +ab +aj +ab +ab +ab +aF +ab +ab +ab +af +af +ab +bE +bD +bD +bD +bD +ab +aa +aa +aa +cj +cr +cx +cp +cp +cQ +cp +dd +ca +du +dF +dL +ca +ca +ca +ca +dE +dI +aa +"} +(16,1,1) = {" +aa +ab +ag +ag +an +aq +at +ar +ar +be +ab +af +af +ab +ab +ab +bA +ab +ab +ab +aa +aa +ca +ca +ca +cy +cC +cK +cR +cp +de +ca +dy +dA +dA +dQ +dA +ea +ca +ca +ca +aa +"} +(17,1,1) = {" +aa +aa +aa +ag +ao +ar +ar +ar +ar +bf +ab +af +af +ab +bF +af +af +bz +aa +aa +aa +aa +aa +aa +ca +ca +ca +ca +ca +cS +ca +ca +dz +dA +dA +dA +dA +eb +ca +ca +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +ag +ag +as +ar +ar +ar +bg +ab +af +af +ab +af +af +af +bz +aa +aa +aa +aa +aa +aa +aa +aa +ca +cL +cT +cG +cG +dm +dA +dH +dN +dR +dW +ca +ca +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +ag +ag +aj +aG +aS +ab +ab +af +af +ab +af +af +af +bz +aa +aa +aa +aa +aa +aa +aa +aa +ca +cM +cG +cG +df +ca +ca +ca +ca +ca +ca +ca +ca +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +ag +ag +ab +ab +ab +af +af +af +ab +af +af +af +ab +ab +bV +bV +bV +ca +ca +ca +ca +ca +cN +cG +cW +cG +dn +dB +ca +ca +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +ab +au +aH +aT +ab +af +af +af +ab +bG +bl +af +af +af +bW +bY +bW +cd +ck +cs +ca +cD +cG +cU +cG +dg +do +dC +dE +dI +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +ab +av +aI +aI +am +af +af +ab +ab +ab +bl +bl +af +af +bW +bZ +bW +ce +cl +ct +cz +cE +cF +cF +cF +cF +dp +dD +dE +dI +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +ab +aw +aI +aI +ab +af +af +ab +ag +ab +ab +ab +ab +ab +bX +bX +bX +ca +ca +ca +ca +ca +ca +ca +cV +cX +dh +ca +ca +ca +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +ab +ax +aJ +aU +ab +aj +af +ab +ag +ag +ag +ag +ag +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ca +ca +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +bk +bq +ag +ag +ag +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +ab +ay +aK +aV +ab +bl +bl +bx +ag +ag +ag +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +ab +az +aj +aW +ab +bm +al +bl +bB +al +bK +ag +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +ab +aA +aL +aX +bh +al +br +al +al +bH +al +bO +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +ab +aB +aj +aY +bh +al +bs +al +al +bs +al +bP +ag +ag +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +ab +aC +aj +aL +bh +bn +bt +al +al +bs +al +al +bR +ag +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +ab +aD +aj +aZ +ab +al +al +by +bC +bI +al +ag +al +bU +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +ab +aE +aM +ba +ab +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/admin_use/thunderdome.dmm b/maps/tether/submaps/admin_use/thunderdome.dmm new file mode 100644 index 00000000000..7d7a19345ae --- /dev/null +++ b/maps/tether/submaps/admin_use/thunderdome.dmm @@ -0,0 +1,554 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/unsimulated/wall, +/area/tdome/tdomeadmin) +"c" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"d" = ( +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"e" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/weapon/melee/energy/axe, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"f" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/effect/blocker, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome/tdomeobserve) +"g" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/weapon/melee/energy/axe, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"h" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"i" = ( +/obj/machinery/igniter, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"j" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"k" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/energy/sword/red, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"l" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomegen"; + name = "General Supply" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"m" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"n" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"o" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"p" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/energy/sword/green, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"q" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"r" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"s" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"t" = ( +/obj/machinery/flasher{ + id = "flash"; + name = "Thunderdome Flash" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"u" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"v" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"w" = ( +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"x" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"y" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"z" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/weapon/gun/energy/laser, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) +"A" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/weapon/gun/energy/laser, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/tdome/tdome1) + +(1,1,1) = {" +a +a +b +b +b +b +b +b +b +b +a +a +"} +(2,1,1) = {" +a +a +b +k +k +k +k +k +k +b +a +a +"} +(3,1,1) = {" +b +b +b +l +l +l +l +l +l +b +b +b +"} +(4,1,1) = {" +b +e +h +m +q +s +v +q +m +y +z +b +"} +(5,1,1) = {" +b +e +h +m +m +m +m +m +m +y +z +b +"} +(6,1,1) = {" +b +b +b +n +n +n +n +n +n +b +b +b +"} +(7,1,1) = {" +c +f +i +j +j +j +j +j +j +i +b +a +"} +(8,1,1) = {" +c +f +j +j +j +j +j +j +j +j +b +a +"} +(9,1,1) = {" +c +f +j +j +j +j +j +j +j +j +b +a +"} +(10,1,1) = {" +c +f +j +j +j +j +j +j +j +j +b +a +"} +(11,1,1) = {" +c +f +j +j +j +t +w +j +j +j +b +a +"} +(12,1,1) = {" +d +f +j +j +j +j +j +j +j +j +b +a +"} +(13,1,1) = {" +c +f +j +j +j +j +j +j +j +j +b +a +"} +(14,1,1) = {" +c +f +j +j +j +j +j +j +j +j +b +a +"} +(15,1,1) = {" +c +f +i +j +j +j +j +j +j +i +b +a +"} +(16,1,1) = {" +b +b +b +n +n +n +n +n +n +b +b +b +"} +(17,1,1) = {" +b +g +h +o +o +o +o +o +o +y +A +b +"} +(18,1,1) = {" +b +g +h +o +r +u +x +r +o +y +A +b +"} +(19,1,1) = {" +b +b +b +l +l +l +l +l +l +b +b +b +"} +(20,1,1) = {" +a +a +b +p +p +p +p +p +p +b +a +a +"} +(21,1,1) = {" +a +a +b +b +b +b +b +b +b +b +a +a +"} diff --git a/maps/tether/submaps/admin_use/tradeship.dmm b/maps/tether/submaps/admin_use/tradeship.dmm new file mode 100644 index 00000000000..daaa523ff86 --- /dev/null +++ b/maps/tether/submaps/admin_use/tradeship.dmm @@ -0,0 +1,3660 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/unsimulated/wall, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ac" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ad" = ( +/obj/structure/closet/wardrobe/pink, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ae" = ( +/obj/structure/closet/wardrobe/white, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"af" = ( +/obj/structure/closet/wardrobe/green, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ag" = ( +/obj/structure/closet/wardrobe/grey, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ah" = ( +/obj/structure/closet/wardrobe/black, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ai" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"aj" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ak" = ( +/obj/structure/closet/crate, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 1 + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"al" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"am" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"an" = ( +/obj/structure/closet/wardrobe/suit, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ao" = ( +/obj/item/weapon/stool/padded, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ap" = ( +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 1 + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"aq" = ( +/obj/item/weapon/stool/padded, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ar" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"as" = ( +/obj/structure/closet/wardrobe/xenos, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"at" = ( +/obj/effect/landmark/late_antag/trader, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"au" = ( +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 1 + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"av" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/shuttle/floor/red, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"aw" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/simulated/shuttle/floor/white, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ax" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/white, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"ay" = ( +/turf/simulated/shuttle/floor, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"az" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/shuttle/floor/white, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"aA" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/shuttle/floor, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"aB" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/deluxe, +/turf/simulated/shuttle/floor, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"aC" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/shuttle/floor, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"aD" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "trade_shuttle_bay"; + name = "shuttle bay controller"; + pixel_x = 25; + pixel_y = 0; + tag_door = "trade_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"aE" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "trade_shuttle_bay_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/syndicate_mothership{ + name = "\improper Trader Base" + }) +"aF" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/shuttle/trade) +"aG" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "trade_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aH" = ( +/turf/simulated/shuttle/wall/dark, +/area/shuttle/trade) +"aI" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradestarshutters"; + 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/trade) +"aJ" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradestarshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/trade) +"aK" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradestarshutters"; + 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/trade) +"aL" = ( +/obj/effect/shuttle_landmark/shuttle_initializer{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "trade_shuttle_bay"; + landmark_tag = "trade_dock"; + name = "Trader Station"; + shuttle_type = /datum/shuttle/autodock/multi/trade + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aM" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aN" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/trade) +"aO" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r"; + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade) +"aP" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aQ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/rd, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aR" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aS" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aT" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"aU" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"aV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"aW" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "trade_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "trade_shuttle"; + pixel_x = -25; + pixel_y = 0; + req_one_access = list(101); + tag_door = "trade_shuttle_hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aX" = ( +/obj/machinery/sleep_console{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aY" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"aZ" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade) +"ba" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradestarshutters"; + 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/trade) +"bb" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bc" = ( +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bd" = ( +/obj/machinery/door/airlock/silver{ + name = "Sleeping" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"be" = ( +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"bf" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"bg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"bh" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bi" = ( +/obj/machinery/suit_cycler/syndicate, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bj" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bk" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bl" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/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/structure/closet/medical_wall{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bm" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradestarshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/trade) +"bo" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bp" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/obj/machinery/light, +/obj/structure/table/glass, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bq" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"br" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"bs" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"bt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/inflatable_duck, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bu" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/mhydrogen, +/obj/item/stack/material/diamond, +/obj/item/stack/material/sandstone, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bv" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/rig/internalaffairs, +/obj/item/clothing/head/helmet/space/void/wizard, +/obj/item/clothing/suit/space/void/wizard, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bw" = ( +/obj/structure/table/steel_reinforced, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bx" = ( +/obj/structure/table/steel_reinforced, +/obj/random/toolbox, +/obj/random/toolbox, +/obj/random/toolbox, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"by" = ( +/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/trade) +"bz" = ( +/obj/vehicle/train/engine, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bA" = ( +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/trade) +"bB" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(160); + req_one_access = newlist() + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bC" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bD" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l"; + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade) +"bE" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bF" = ( +/obj/machinery/button/remote/blast_door{ + id = "tradestarshutters"; + name = "remote shutter control"; + pixel_x = 30; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bG" = ( +/obj/structure/table/steel_reinforced, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/firstaid, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bI" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bK" = ( +/obj/structure/table/steel_reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/weapon/weldpack, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/trade) +"bM" = ( +/obj/vehicle/train/trolley, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bN" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bO" = ( +/obj/machinery/vending/medical{ + density = 0; + pixel_y = -32; + req_access = null + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bP" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bQ" = ( +/obj/structure/table/steel_reinforced, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bR" = ( +/obj/machinery/door/window/southleft{ + name = "Cargo Hold"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bS" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/coin/uranium, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/platinum, +/obj/item/weapon/coin/phoron, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/diamond, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bT" = ( +/obj/machinery/door/window/southright{ + name = "Cargo Hold"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bU" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/potato, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bV" = ( +/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/trade) +"bW" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/surgical/retractor{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/surgical/circular_saw, +/obj/item/stack/nanopaste, +/obj/item/weapon/surgical/hemostat{ + pixel_y = 4 + }, +/obj/item/weapon/surgical/cautery{ + pixel_y = 4 + }, +/obj/item/weapon/surgical/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bX" = ( +/obj/structure/medical_stand, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"bY" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + 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/trade) +"bZ" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + 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/trade) +"ca" = ( +/obj/machinery/vending/coffee, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cb" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cc" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/trade) +"cd" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"ce" = ( +/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/trade) +"cf" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cg" = ( +/obj/structure/toilet, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade) +"ch" = ( +/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/trade) +"ci" = ( +/obj/structure/mirror{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade) +"cj" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade) +"ck" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cl" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/trade) +"cm" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cn" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + 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/trade) +"co" = ( +/obj/structure/frame/computer, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cp" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/kiddieplaque{ + desc = "A plaque commemorating the construction of the cargo ship Beruang."; + name = "Beruang"; + pixel_x = 32 + }, +/mob/living/simple_mob/animal/passive/dog/tamaskan/Spice, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/trade) +"cq" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade) +"cr" = ( +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade) +"cs" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"ct" = ( +/obj/machinery/vending/cigarette{ + name = "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/shuttle/floor/black, +/area/shuttle/trade) +"cu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/largecrate/animal/cat, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cv" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/structure/largecrate/animal/cow, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cw" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cx" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/item/device/kit/paint/ripley/death, +/obj/item/device/kit/paint/ripley/flames_blue, +/obj/item/device/kit/paint/ripley/flames_red, +/obj/item/device/kit/paint/ripley, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cy" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/structure/closet/crate/secure, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cz" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/structure/largecrate/hoverpod, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/mecha/working/ripley/mining, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cB" = ( +/obj/machinery/door/window/westright{ + name = "Storefront"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade"; + name = "Shop Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/trade) +"cC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/trade) +"cD" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + 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/trade) +"cE" = ( +/obj/machinery/computer/shuttle_control/multi/trade{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/trade) +"cG" = ( +/obj/machinery/door/airlock/command{ + name = "Bridge"; + req_access = list(160); + req_one_access = newlist() + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cH" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/largecrate/animal/corgi, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cJ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/largecrate/animal/corgi, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/internals, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cL" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning, +/obj/item/device/kit/paint/gygax/darkgygax, +/obj/item/device/kit/paint/gygax/recitence, +/obj/item/device/kit/paint/durand, +/obj/item/device/kit/paint/durand/phazon, +/obj/item/device/kit/paint/durand/seraph, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cM" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/secure, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cN" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/largecrate/hoverpod, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/mecha/working/ripley/firefighter, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cP" = ( +/obj/machinery/door/window/westleft{ + name = "Storefront"; + req_access = list(160) + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade"; + name = "Shop Shutters"; + opacity = 0 + }, +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/trade) +"cQ" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cR" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + id = "tradebridgeshutters"; + name = "remote shutter control"; + pixel_x = 30; + req_access = list(150) + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-09"; + name = "Esteban"; + pixel_y = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cS" = ( +/obj/machinery/vending/assist{ + contraband = null; + name = "Old Vending Machine"; + products = list(/obj/item/device/assembly/prox_sensor = 5, /obj/item/device/assembly/signaler = 4, /obj/item/device/assembly/infra = 4, /obj/item/device/assembly/prox_sensor = 4, /obj/item/weapon/handcuffs = 8, /obj/item/device/flash = 4, /obj/item/weapon/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cT" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cU" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cV" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/item/weapon/towel{ + color = "#0000FF" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cW" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cX" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cY" = ( +/obj/machinery/door/window/westleft{ + name = "Storefront"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"cZ" = ( +/obj/machinery/button/remote/blast_door{ + id = "trade"; + name = "Shop Shutters"; + pixel_x = 0; + pixel_y = -26 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/trade) +"da" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + 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/trade) +"db" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + 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/trade) +"dc" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dd" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"de" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"df" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/contraband/poster, +/obj/item/weapon/contraband/poster, +/obj/item/weapon/contraband/poster, +/obj/item/weapon/contraband/poster, +/obj/item/weapon/contraband/poster, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dg" = ( +/obj/machinery/door/window/northleft{ + name = "Cargo Hold"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dh" = ( +/obj/structure/table/steel_reinforced, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"di" = ( +/obj/machinery/door/window/northright{ + name = "Cargo Hold"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dj" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/blue, +/obj/item/clothing/gloves/brown, +/obj/item/clothing/gloves/captain, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/green, +/obj/item/clothing/gloves/grey, +/obj/item/clothing/gloves/light_brown, +/obj/item/clothing/gloves/purple, +/obj/item/clothing/gloves/rainbow, +/obj/item/clothing/gloves/swat, +/obj/item/clothing/gloves/white, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dk" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 2; + start_pressure = 740.5 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dl" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dm" = ( +/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/trade) +"dn" = ( +/obj/machinery/button/remote/blast_door{ + id = "tradeportshutters"; + name = "remote shutter control"; + pixel_x = 30; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"do" = ( +/obj/structure/table/steel_reinforced, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/item/weapon/bikehorn, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dq" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"ds" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/head/bearpelt, +/obj/item/clothing/head/bowler, +/obj/item/clothing/head/caphat/cap, +/obj/item/clothing/head/beaverhat, +/obj/item/clothing/head/beret/centcom, +/obj/item/clothing/head/beret/sec, +/obj/item/clothing/head/collectable/kitty, +/obj/item/clothing/head/collectable/kitty, +/obj/item/clothing/head/collectable/kitty, +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/head/collectable/petehat, +/obj/item/clothing/head/collectable/pirate, +/obj/item/clothing/head/collectable/wizard, +/obj/item/clothing/head/collectable/xenom, +/obj/item/clothing/head/cowboy_hat, +/obj/item/clothing/head/pin/flower/violet, +/obj/item/clothing/head/pin/flower/blue, +/obj/item/clothing/head/pin/flower/orange, +/obj/item/clothing/head/pin/flower/pink, +/obj/item/clothing/head/justice, +/obj/item/clothing/head/justice/blue, +/obj/item/clothing/head/justice/green, +/obj/item/clothing/head/justice/pink, +/obj/item/clothing/head/justice/yellow, +/obj/item/clothing/head/philosopher_wig, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/head/xenos, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dt" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/obj/structure/largecrate/animal/cat, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"du" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access = list(160); + req_one_access = newlist() + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradeportshutters"; + 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/trade) +"dw" = ( +/obj/structure/closet/wardrobe/captain, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bookcase, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dy" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dz" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"dA" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"dB" = ( +/obj/structure/table/steel_reinforced, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dC" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/lipstick/black, +/obj/item/weapon/lipstick/jade, +/obj/item/weapon/lipstick/purple, +/obj/item/weapon/lipstick, +/obj/item/weapon/lipstick/random, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dD" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/scarf/white, +/obj/item/clothing/accessory/scarf/lightblue, +/obj/item/clothing/accessory/scarf/red, +/obj/item/clothing/accessory/scarf/purple, +/obj/item/clothing/accessory/armband/science, +/obj/item/clothing/accessory/armband/med, +/obj/item/clothing/accessory/armband/engine, +/obj/item/clothing/accessory/armband/cargo, +/obj/item/clothing/accessory/armband, +/obj/item/clothing/accessory/medal/nobel_science, +/obj/item/clothing/accessory/medal/silver, +/obj/item/clothing/accessory/medal/gold, +/obj/item/clothing/accessory/medal/bronze_heart, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dE" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/under/cheongsam, +/obj/item/clothing/under/hosformalmale, +/obj/item/clothing/under/hosformalfem, +/obj/item/clothing/under/harness, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/under/ert, +/obj/item/clothing/under/schoolgirl, +/obj/item/clothing/under/redcoat, +/obj/item/clothing/under/sexymime, +/obj/item/clothing/under/sexyclown, +/obj/item/clothing/under/soviet, +/obj/item/clothing/under/space, +/obj/item/clothing/under/swimsuit/stripper/mankini, +/obj/item/clothing/under/suit_jacket/female, +/obj/item/clothing/under/rank/psych/turtleneck, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/under/dress/sailordress, +/obj/item/clothing/under/dress/redeveninggown, +/obj/item/clothing/under/dress/dress_saloon, +/obj/item/clothing/under/dress/blacktango, +/obj/item/clothing/under/dress/blacktango/alt, +/obj/item/clothing/under/dress/dress_orange, +/obj/item/clothing/under/dress/maid/janitor, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dF" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/suit/hgpirate, +/obj/item/clothing/suit/imperium_monk, +/obj/item/clothing/suit/leathercoat, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/pirate, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dG" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/closet/crate/solar, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/shuttle/trade) +"dI" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = list(160); + req_one_access = newlist() + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dJ" = ( +/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/trade) +"dK" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"dL" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"dM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/shuttle/trade) +"dN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/shuttle/trade) +"dO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/shuttle/trade) +"dP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/atm{ + pixel_x = -32 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dQ" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "trade2_control"; + pixel_x = -22; + pixel_y = -32; + req_one_access = list(150) + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dR" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dS" = ( +/obj/structure/table/standard, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dT" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dU" = ( +/obj/structure/table/standard, +/obj/item/stack/material/steel{ + amount = 2 + }, +/obj/item/stack/material/steel{ + amount = 2 + }, +/obj/item/stack/material/glass{ + amount = 15 + }, +/obj/item/stack/material/glass{ + amount = 15 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dV" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/captain, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dW" = ( +/obj/structure/table/glass, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -35 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dX" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"dY" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"dZ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"ea" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade) +"eb" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/door/airlock/glass_external{ + frequency = 1331; + icon_state = "door_locked"; + id_tag = "trade2_shuttle_inner"; + locked = 1; + name = "Ship Hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"ec" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1331; + icon_state = "door_locked"; + id_tag = "trade2_shuttle_inner"; + locked = 1; + name = "Ship Hatch" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"ed" = ( +/obj/machinery/vending/engivend, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"ee" = ( +/obj/machinery/vending/tool, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"ef" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1331; + id_tag = "trade2_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1331; + id_tag = "trade2_control"; + pixel_x = -24; + req_access = list(150); + tag_airpump = "trade2_vent"; + tag_chamber_sensor = "trade2_sensor"; + tag_exterior_door = "trade2_shuttle_outer"; + tag_interior_door = "trade2_shuttle_inner" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"eg" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "trade2_sensor"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1331; + id_tag = "trade2_vent" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"eh" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1331; + icon_state = "door_locked"; + id_tag = "trade2_shuttle_outer"; + locked = 1; + name = "Ship Hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) +"ei" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "trade2_control"; + pixel_x = 24; + req_one_access = list(150) + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1331; + icon_state = "door_locked"; + id_tag = "trade2_shuttle_outer"; + locked = 1; + name = "Ship Hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/trade) + +(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 +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 +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 +aH +cn +cD +aH +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 +aH +aH +co +cE +aH +aH +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 +bY +ce +bA +cF +cQ +da +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 +bZ +cf +cp +bA +cR +db +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,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 +aH +aH +aH +cG +aH +aH +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,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 +aH +cg +cq +bc +cS +aH +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +ba +bn +aH +aa +aH +aH +aF +bc +cT +aH +aa +aH +dv +dH +aH +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aF +bb +bo +aH +aa +aH +ch +aH +bc +cU +aH +aa +aH +dw +bc +aF +aH +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aP +bc +bp +aH +aa +aH +ci +cr +bc +cV +aH +aa +aH +dx +bc +dV +aH +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aQ +bc +bq +aH +aa +aH +cj +aH +cH +cW +aH +aa +aH +dy +bc +dW +aH +aa +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aH +bd +aH +aH +aH +aH +aF +cs +bc +bc +aH +aH +aH +aH +dI +aH +aH +aa +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aR +bc +bc +aH +aH +aH +aH +aH +bc +cX +aF +aH +bc +bc +bc +dX +aH +aa +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aS +bc +bc +bE +aH +ca +ck +ct +bc +bc +dc +aH +dl +bc +bc +bc +aH +aa +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aI +aT +be +br +bc +bP +bc +bc +bA +bA +bc +bc +bP +bc +be +dJ +dY +dM +aa +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aJ +aU +bf +bs +bc +bc +bc +bA +bA +bA +bA +bc +bc +bc +dz +dK +dZ +dN +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +ab +ac +ac +ac +ab +av +ab +az +az +ab +aa +aa +aa +aa +aK +aV +bg +bg +bF +aH +bc +bA +cu +cI +bA +bc +aH +dn +dA +dL +ea +dO +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +ab +ad +aj +aj +ab +aw +ab +ay +ay +ab +aa +aa +aa +aa +aH +aH +aH +aH +aH +aF +bc +bA +cv +cJ +bA +bc +aF +aH +aH +aH +aH +aH +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +ab +ae +aj +aj +aj +aj +ax +ay +aB +ab +aa +aa +aa +aa +aa +aH +aH +bt +bG +bQ +cb +bA +cw +cK +bA +bN +df +do +dB +aH +aH +aa +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +ab +af +aj +aq +aq +aj +ay +ay +aC +ab +aa +aa +aa +aa +aa +aa +aI +bu +bH +bR +bc +bA +cx +cL +bA +bc +dg +dp +dC +dM +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +ab +ag +aj +aj +aj +aj +ab +ay +ay +ab +aa +aa +aa +aa +aa +aa +aJ +bv +bI +bS +bc +bA +cy +cM +bA +bc +dh +dq +dD +dN +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +ab +ah +am +ar +aj +aj +ab +aA +aA +ab +aa +aa +aa +aa +aa +aa +aK +bw +bJ +bT +bc +bA +cz +cN +bA +bc +di +dr +dE +dO +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +ab +ab +ab +ab +aj +aj +ab +ab +ab +ab +aa +aa +aa +aa +aa +aH +aH +bx +bK +bU +bc +bA +cA +cO +bA +bc +dj +ds +dF +aH +aH +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +ab +ai +an +as +aj +aj +aj +aj +aj +ab +aa +aa +aa +aa +aH +aH +aH +by +bL +bV +aH +bA +bA +bA +bA +aH +by +bL +bV +aH +aH +aH +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +ab +aj +al +al +al +al +al +al +aj +ab +ab +ab +ab +aF +aH +aF +bh +bz +bM +bM +aH +bc +bA +bA +bc +aH +dk +dt +dG +dP +aF +aH +aF +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +ab +aj +al +at +at +at +at +al +aj +aj +aj +aj +aE +aG +aL +aW +bc +bA +bA +bA +cc +bA +bA +bA +bA +cc +bA +bA +bA +dQ +eb +ef +eh +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +ab +aj +al +at +at +at +at +al +aj +aj +aD +aj +aE +aG +aM +aG +bc +bA +bA +bc +bc +bc +bA +bA +bc +bc +bc +bA +bA +dR +ec +eg +ei +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +ab +aj +ao +ao +al +al +ao +ao +aj +ab +ab +ab +ab +aF +aH +aF +bi +bc +bc +bE +aF +cl +cB +cP +cY +aF +dl +bc +bc +bc +aF +aH +aF +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +aa +aa +aa +aa +aH +aH +aH +bB +bB +aF +aH +cm +cC +bA +bc +aH +aF +du +du +aH +aH +aH +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +ab +ab +ab +ab +au +au +ab +ab +ab +ab +aa +aa +aa +aa +aa +aI +bj +bc +bc +aH +cd +bA +bA +bA +cZ +dd +aH +bc +bc +dS +dM +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +ab +ak +ap +al +al +al +al +ap +ak +ab +aa +aa +aa +aa +aa +aK +bk +bc +bN +aH +cd +bA +bA +bA +bA +de +aH +cb +bc +dT +dO +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +ab +al +al +al +al +al +al +al +al +ab +aa +aa +aa +aa +aH +aF +bl +bc +bO +aF +aH +bc +bc +bc +bm +aH +aH +bc +bc +dU +aH +aH +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +ab +ak +ap +al +al +al +al +ak +ak +ab +aa +aa +aa +aH +aH +aX +bc +bc +bc +bW +aH +aH +aH +aH +aH +aH +bc +bc +bc +bc +ed +aH +aH +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +ab +al +al +al +al +al +al +al +al +ab +aa +aa +aa +aH +aH +aY +bm +bC +bc +bX +aH +aN +aN +aN +aN +aH +dm +bc +bc +bm +ee +aH +aH +aa +aa +aa +aa +"} +(36,1,1) = {" +aa +aa +aa +ab +ak +ap +al +al +al +al +ap +ak +ab +aa +aa +aa +aH +aH +aH +aH +aH +aH +aH +aH +aO +aZ +aZ +bD +aH +aH +aH +aH +aH +aH +aH +aH +aa +aa +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +ab +al +al +al +al +al +al +al +al +ab +aa +aa +aa +aH +aN +aN +aN +aN +aH +aH +aa +aa +aa +aa +aa +aa +aH +aH +aN +aN +aN +aN +aH +aa +aa +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aH +aO +aZ +aZ +bD +aH +aa +aa +aa +aa +aa +aa +aa +aa +aH +aO +aZ +aZ +bD +aH +aa +aa +aa +aa +"} +(39,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 +aa +aa +aa +aa +"} +(40,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 +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/admin_use/wizard.dmm b/maps/tether/submaps/admin_use/wizard.dmm new file mode 100644 index 00000000000..ca115c78616 --- /dev/null +++ b/maps/tether/submaps/admin_use/wizard.dmm @@ -0,0 +1,2116 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/wizard_station) +"ac" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"ad" = ( +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"ae" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/pwine{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"af" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"ag" = ( +/obj/machinery/computer/arcade/battle, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"ah" = ( +/obj/machinery/computer/arcade/orion_trail, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"ai" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"aj" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"ak" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/toy/figure/ninja, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"al" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/rd, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"am" = ( +/obj/structure/bed/chair/wood/wings, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 0; + pixel_y = 30 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"an" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"ao" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"ap" = ( +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"aq" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"ar" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"as" = ( +/obj/structure/table/woodentable, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/item/weapon/ore/slag{ + desc = "Well at least Arthur doesn't have to share now..."; + name = "pet rock" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"at" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 0; + pixel_y = 30 + }, +/obj/structure/bedsheetbin, +/obj/structure/table/woodentable, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"au" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"av" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/headset, +/obj/item/weapon/spacecash/c500, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aw" = ( +/obj/structure/bed/chair/wood/wings{ + icon_state = "wooden_chair_wings"; + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"ax" = ( +/obj/item/weapon/reagent_containers/food/snacks/spellburger{ + pixel_y = 8 + }, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"ay" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"az" = ( +/obj/structure/undies_wardrobe, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"aA" = ( +/obj/structure/bed/chair/wood/wings{ + icon_state = "wooden_chair_wings"; + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aB" = ( +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/manual/security_space_law, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aD" = ( +/obj/machinery/door/airlock/hatch, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aE" = ( +/obj/machinery/door/airlock/hatch, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"aF" = ( +/obj/item/weapon/antag_spawner/technomancer_apprentice, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"aG" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/shoes/boots/workboots, +/obj/item/clothing/under/technomancer, +/obj/item/clothing/head/technomancer, +/obj/item/weapon/storage/box/syndie_kit/chameleon, +/obj/item/weapon/storage/box/syndie_kit/chameleon, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"aH" = ( +/turf/template_noop, +/area/wizard_station) +"aI" = ( +/obj/structure/bed/chair/wood/wings{ + icon_state = "wooden_chair_wings"; + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aJ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/wizard_station) +"aK" = ( +/obj/machinery/vending/hydroseeds, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/wizard_station) +"aL" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/obj/item/clothing/suit/wizrobe/magusblue, +/obj/item/clothing/head/wizard/magus, +/obj/item/weapon/staff, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"aM" = ( +/obj/effect/landmark/late_antag/wizard, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"aN" = ( +/obj/item/weapon/reagent_containers/food/snacks/cheesewedge, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"aO" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/template_noop, +/area/wizard_station) +"aP" = ( +/obj/structure/table/woodentable, +/obj/machinery/librarycomp{ + pixel_y = 6 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aQ" = ( +/obj/machinery/media/jukebox, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aR" = ( +/obj/machinery/vending/hydronutrients, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/wizard_station) +"aS" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/obj/item/clothing/under/psysuit, +/obj/item/clothing/suit/wizrobe/psypurple, +/obj/item/clothing/head/wizard/amp, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"aT" = ( +/mob/living/simple_mob/animal/passive/mouse/gray{ + desc = "He looks kingly."; + name = "Arthur" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"aU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"aV" = ( +/obj/machinery/photocopier, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aW" = ( +/obj/structure/bookcase, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-08" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aY" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/obj/item/clothing/shoes/sandal/marisa{ + desc = "A set of fancy shoes that are as functional as they are comfortable."; + name = "Gentlemans Shoes" + }, +/obj/item/clothing/under/gentlesuit, +/obj/item/clothing/suit/wizrobe/gentlecoat, +/obj/item/clothing/head/wizard/cap, +/obj/item/weapon/staff/gentcane, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"aZ" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/obj/item/clothing/suit/wizrobe/magusred, +/obj/item/clothing/head/wizard/magus, +/obj/item/weapon/staff, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"ba" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/obj/item/clothing/suit/wizrobe/marisa, +/obj/item/clothing/shoes/sandal/marisa, +/obj/item/clothing/head/wizard/marisa, +/obj/item/weapon/staff/broom, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bb" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/obj/item/clothing/suit/wizrobe/red, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/head/wizard/red, +/obj/item/weapon/staff, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bc" = ( +/obj/machinery/the_singularitygen, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bd" = ( +/obj/machinery/crystal, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"be" = ( +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bf" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/arrow/quill, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bg" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/stock_parts/matter_bin/super, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bh" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"bi" = ( +/obj/machinery/computer/communications, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bj" = ( +/obj/structure/sign/double/map/left{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bk" = ( +/obj/structure/sign/double/map/right{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bl" = ( +/obj/machinery/computer/message_monitor, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bm" = ( +/obj/machinery/computer/security, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/telecrystal, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bo" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bp" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/head/philosopher_wig, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-04" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"br" = ( +/obj/structure/sign/electricshock, +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/wizard_station) +"bs" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"bt" = ( +/obj/machinery/computer/shuttle, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bu" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bv" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"bw" = ( +/obj/machinery/computer/crew, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bx" = ( +/obj/machinery/computer/power_monitor, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"by" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/machinery/computer/station_alert/all, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bz" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/mmi/radio_enabled, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bA" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/material/knife/ritual, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-03" + }, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bC" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"bD" = ( +/obj/machinery/power/port_gen/pacman, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"bE" = ( +/obj/structure/table/steel_reinforced, +/obj/item/xenos_claw, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bF" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/coin/diamond, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/broken_device, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bH" = ( +/obj/structure/table/steel_reinforced, +/obj/item/organ/internal/stack, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bI" = ( +/obj/machinery/floodlight, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"bJ" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bK" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bL" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/ripley_build_and_repair, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bM" = ( +/obj/item/device/suit_cooling_unit, +/obj/structure/table/steel_reinforced, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 0; + pixel_y = 30 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bN" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 0; + pixel_y = 30 + }, +/obj/item/target, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bO" = ( +/obj/item/target/syndicate, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bP" = ( +/obj/structure/table/steel_reinforced, +/obj/item/toy/sword, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bQ" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/gun/energy/laser/practice, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bR" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bS" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/engineering_hacking, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bT" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bU" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bV" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bW" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/item/target, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"bX" = ( +/obj/item/robot_parts/r_arm, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"bY" = ( +/obj/item/robot_parts/l_leg, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"bZ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/robotics_cyborgs, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"ca" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"cb" = ( +/obj/machinery/power/emitter{ + anchored = 1; + desc = "It is a heavy duty industrial laser used in a very non-industrial way."; + name = "teleport defender" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"cc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"cd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"ce" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cf" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cg" = ( +/obj/item/weapon/stool/padded, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"ch" = ( +/obj/item/robot_parts/r_leg, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"ci" = ( +/obj/item/robot_parts/chest, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cj" = ( +/obj/item/robot_parts/l_arm, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"ck" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"cl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"cm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cn" = ( +/obj/structure/target_stake, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"co" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cp" = ( +/obj/structure/AIcore, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-20" + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"cr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cs" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"ct" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cu" = ( +/obj/effect/decal/mecha_wreckage/phazon, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cv" = ( +/obj/item/robot_parts/head, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cw" = ( +/obj/item/weapon/firstaid_arm_assembly, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"cx" = ( +/obj/item/weapon/bucket_sensor, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"cy" = ( +/obj/item/weapon/farmbot_arm_assembly, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"cz" = ( +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/wizard_station) +"cA" = ( +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"cB" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"cC" = ( +/obj/machinery/teleport/station, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"cD" = ( +/obj/machinery/teleport/hub, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"cE" = ( +/obj/effect/landmark/late_antag/technomancer, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) + +(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 +"} +(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 +"} +(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 +"} +(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 +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ac +ac +ac +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aH +aO +ab +ay +bi +bt +bw +ay +ab +ac +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +aP +ab +ab +ay +ay +ay +ab +ab +bR +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ab +aA +ao +ao +aV +ab +bj +bu +be +ab +bJ +ay +bh +bh +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +au +aB +aI +ao +aW +ab +bk +ay +be +ab +bK +ay +bX +ch +cp +ab +ab +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +ab +am +av +aC +aI +ao +ao +aD +ay +ay +ay +aE +ay +ay +bh +ci +bh +cu +ab +aa +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +ab +ab +an +aw +aw +ao +ao +aX +ab +bl +ay +bx +ab +bL +ay +bY +cj +bh +cv +ab +ab +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +ac +ag +ao +ao +ao +ao +ao +aW +ab +bm +ay +by +ab +bM +ay +ay +ay +ay +ay +cx +ac +aa +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +ab +ab +ah +ao +ao +ao +ao +aQ +ab +ab +ab +aE +ab +ab +ab +bS +bZ +ay +cq +cw +cy +ab +ab +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +ab +ab +ab +ab +ab +aD +ab +ab +ab +bc +bn +be +bz +bE +ab +ab +ab +aE +ab +ab +ab +ab +ab +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +ab +ad +ai +ap +ax +ay +aJ +aJ +ab +bd +be +ay +be +bF +ab +bT +ca +ck +ca +ab +ay +cB +ab +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +ac +ae +aj +aj +aj +ay +ay +ay +aE +be +ay +ab +ay +be +aE +bU +cb +ay +ay +aE +ay +cC +ac +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +ab +af +aj +aj +aj +ay +aK +aR +ab +bf +bo +ay +be +bG +ab +bV +cc +cl +cc +ab +ay +cD +ab +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +ab +ab +ab +ab +ab +aE +ab +ab +ab +bg +bp +be +bA +bH +ab +ab +ab +aE +ab +ab +ab +ab +ab +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +ab +ab +ak +aq +ay +ay +aL +aS +ab +ab +ab +aE +ab +ab +ab +bW +bO +ay +be +be +cz +ab +ab +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +ac +al +ar +aM +ay +ay +ay +aY +ab +bq +ay +bB +ab +bN +ay +ay +ay +ay +ay +cA +ac +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +ab +ab +as +ay +ay +ay +ay +aZ +ab +be +ay +be +ab +bO +ay +cd +cm +cr +cg +ab +ab +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +ab +at +ay +aF +cE +aT +ay +aE +ay +ay +ay +aE +ay +ay +ce +cn +cs +cg +ab +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +az +ay +ay +ay +ba +ab +be +ay +be +ab +bP +ay +cf +co +ct +ab +ab +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ab +aG +aN +ay +bb +ab +br +bv +ab +ab +bQ +ay +cg +cg +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +aU +ab +ab +bs +bh +bC +ab +ab +ay +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ac +ab +bh +bh +bh +bD +bI +ab +ac +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ac +ac +ac +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,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 +"} +(29,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 +"} +(30,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 +"} diff --git a/maps/tether/submaps/om_ships/cruiser.dm b/maps/tether/submaps/om_ships/cruiser.dm new file mode 100644 index 00000000000..baea2ae18f0 --- /dev/null +++ b/maps/tether/submaps/om_ships/cruiser.dm @@ -0,0 +1,17 @@ +// Compile in the map for CI testing if we're testing compileability of all the maps +#if MAP_TEST +#include "cruiser.dmm" +#endif + +/datum/map_template/om_ships/cruiser + name = "OM Ship - NT Cruiser (New Z)" + desc = "A large NT cruiser." + mappath = 'cruiser.dmm' + +/obj/effect/overmap/visitable/ship/cruiser + name = "NT Cruiser" + desc = "A small cruiser pinging NT IFF." + color = "#00aaff" //Bluey + vessel_mass = 12000 + vessel_size = SHIP_SIZE_LARGE + initial_generic_waypoints = list("cruiser_fore", "cruiser_aft", "cruiser_port", "cruiser_starboard", "cruiser_port_dock", "cruiser_starboard_dock") diff --git a/maps/tether/submaps/om_ships/cruiser.dmm b/maps/tether/submaps/om_ships/cruiser.dmm new file mode 100644 index 00000000000..1c14af77856 --- /dev/null +++ b/maps/tether/submaps/om_ships/cruiser.dmm @@ -0,0 +1,29560 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/breakroom) +"ac" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 4; + icon_state = "pdoor0"; + id = "ship-lounge"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/mothership/breakroom) +"ad" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/breakroom) +"ae" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/breakroom) +"af" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + flags = 2; + landmark_tag = "cruiser_fore"; + name = "Vessel fore" + }, +/turf/space, +/area/space) +"ag" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 1; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/breakroom) +"ah" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"ai" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"aj" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"ak" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"al" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"am" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"an" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"ao" = ( +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"ap" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aq" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"ar" = ( +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"as" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"at" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"au" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-lounge"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/breakroom) +"av" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"ax" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"ay" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"az" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aA" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-lounge"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/breakroom) +"aD" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/codex, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aF" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aI" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aJ" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aL" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aM" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aN" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aO" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aP" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aQ" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aR" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + id = "ship-lounge"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aS" = ( +/obj/structure/cable/cyan{ + 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/carpet/blue, +/area/mothership/breakroom) +"aT" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aU" = ( +/obj/machinery/vending/food/arojoan{ + density = 0; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aW" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"aX" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aY" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"aZ" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"ba" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"bb" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"bc" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/mothership/bridge) +"bd" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/hydroponics) +"be" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/hydroponics) +"bf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bh" = ( +/obj/structure/sign/department/bar, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"bi" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"bj" = ( +/obj/machinery/door/window/northleft, +/obj/machinery/door/window/southleft, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"bk" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"bl" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bm" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bn" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bo" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bp" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bq" = ( +/obj/structure/sink/kitchen, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/hydroponics) +"br" = ( +/obj/structure/cable/cyan{ + 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 = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bv" = ( +/obj/structure/sink/kitchen, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"bw" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"bx" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/microwave, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"by" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"bz" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"bA" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"bB" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/reagentgrinder, +/obj/item/weapon/storage/box/beakers, +/obj/machinery/button/remote/blast_door{ + id = "ship-kitchen"; + name = "Blast Doors Controls"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"bC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-hydroponics"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/hydroponics) +"bD" = ( +/obj/machinery/seed_storage/xenobotany, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bF" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bG" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bH" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bI" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bJ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bK" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"bN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"bO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"bP" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"bQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-kitchen"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/kitchen) +"bR" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bU" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bW" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bX" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"bY" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"bZ" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"ca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cc" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cd" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"ce" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-hydroponics"; + name = "Blast Doors Controls"; + pixel_x = 20; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"cf" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"cg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"ch" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"ci" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"cj" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"ck" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cl" = ( +/obj/machinery/cooker/cereal, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cm" = ( +/obj/machinery/cooker/fryer, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cn" = ( +/obj/machinery/cooker/oven, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"co" = ( +/obj/machinery/cooker/grill, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cp" = ( +/obj/machinery/cooker/candy, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cq" = ( +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/mothership/bridge) +"cr" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/eva) +"cs" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/eva) +"ct" = ( +/obj/machinery/door/airlock/multi_tile/metal, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cu" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cv" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/eva) +"cw" = ( +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cx" = ( +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cy" = ( +/obj/item/clothing/suit/space/void/medical/alt, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cz" = ( +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cA" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/device/multitool, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cB" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cC" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cE" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cF" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cG" = ( +/obj/structure/table/steel_reinforced, +/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, +/obj/item/device/radio/off, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cH" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/eva) +"cI" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cJ" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cP" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cQ" = ( +/obj/structure/cable/cyan{ + 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 = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cT" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cU" = ( +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cV" = ( +/obj/item/clothing/suit/space/void/engineering/salvage, +/obj/item/clothing/head/helmet/space/void/engineering/salvage, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/light, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cW" = ( +/obj/item/clothing/suit/space/void/exploration, +/obj/item/clothing/head/helmet/space/void/exploration, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cX" = ( +/obj/structure/dispenser/oxygen{ + oxygentanks = 40 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"cZ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"da" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"db" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"dc" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"dd" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"de" = ( +/obj/structure/sign/department/eva, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/eva) +"df" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom1) +"dg" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"dh" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"di" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/white, +/area/mothership/bathroom1) +"dj" = ( +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/hallway) +"dk" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dl" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/techmaint, +/area/mothership/hallway) +"dm" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dn" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"do" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/white, +/area/mothership/bathroom2) +"dp" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"dq" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"dr" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom2) +"ds" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom1) +"dt" = ( +/obj/machinery/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 2; + pixel_y = 0 + }, +/obj/machinery/door/window/survival_pod, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom1) +"du" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"dv" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"dw" = ( +/obj/machinery/status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dx" = ( +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"dy" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dz" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dA" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dB" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dD" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dE" = ( +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dF" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom2) +"dG" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"dH" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"dI" = ( +/obj/machinery/door/window/survival_pod{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 8; + icon_state = "shower"; + pixel_x = 2; + pixel_y = 0 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom2) +"dJ" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"dK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 4; + icon_state = "pdoor0"; + id = "ship-med-surgery"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/mothership/surgery) +"dL" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm1) +"dM" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm1) +"dN" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dO" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/teleporter) +"dP" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/teleporter) +"dQ" = ( +/obj/machinery/door/airlock/multi_tile/metal, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"dR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"dS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"dU" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm2) +"dV" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/security) +"dW" = ( +/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/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"dX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"dY" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"dZ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"ea" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"eb" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"ec" = ( +/obj/machinery/button/remote/blast_door{ + id = "ship-vault"; + name = "Vault Blast Door Controls"; + pixel_y = 28; + req_one_access = list(108) + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ed" = ( +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ee" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ef" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eg" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eh" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ei" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"ej" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"ek" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"el" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"em" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"en" = ( +/obj/item/clothing/head/helmet/solgov, +/obj/item/clothing/head/helmet/solgov, +/obj/item/clothing/head/helmet/solgov, +/obj/item/clothing/head/helmet/solgov, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"eo" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/device/mmi/digital/posibrain, +/obj/item/device/mmi, +/obj/item/weapon/book/manual/robotics_cyborgs, +/obj/item/device/robotanalyzer, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"ep" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-med-surgery"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"eq" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"er" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm1-door"; + name = "Dorm 1 Lock"; + pixel_x = 6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"es" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"et" = ( +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"eu" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm1-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/white, +/area/mothership/dorm1) +"ev" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"ew" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ex" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ey" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ez" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eB" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"eC" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm2-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/white, +/area/mothership/dorm2) +"eD" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"eE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"eF" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm2-door"; + name = "Dorm 2 Lock"; + pixel_x = -6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"eG" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/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/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"eH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"eI" = ( +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"eJ" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"eK" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/chemistry) +"eL" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/chemistry) +"eM" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"eN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eP" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eQ" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Warship"; + tele_network = "centcom" + }, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"eT" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/security) +"eU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"eV" = ( +/obj/machinery/oxygen_pump/anesthetic, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"eW" = ( +/obj/structure/medical_stand, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"eX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"eY" = ( +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"eZ" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"fa" = ( +/obj/machinery/chemical_dispenser/ert, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"fb" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"fc" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"fd" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/vault) +"fe" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"ff" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"fg" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/lockbox, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fh" = ( +/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/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fi" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/bench/steel, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fm" = ( +/obj/item/device/holowarrant, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fn" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/eva) +"fo" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"fp" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"fq" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"fr" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/phoron, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"fs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"ft" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"fu" = ( +/obj/structure/sign/department/chem, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/chemistry) +"fv" = ( +/obj/structure/closet/crate/secure/gear{ + req_one_access = list(108) + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/device/survivalcapsule/military, +/obj/item/device/survivalcapsule/military, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fw" = ( +/obj/machinery/syndicate_beacon/virgo{ + charges = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fx" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fy" = ( +/obj/machinery/power/smes/buildable{ + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 1e+006; + output_level = 1e+006; + RCon = 0 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fz" = ( +/obj/structure/prop/blackbox, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fA" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/clothing/suit/space/void/merc/fire, +/obj/item/clothing/head/helmet/space/void/merc/fire, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/suit/space/void/merc/odst, +/obj/item/clothing/head/helmet/space/void/merc/odst, +/obj/item/clothing/suit/space/void/security/fluff/hos, +/obj/item/clothing/head/helmet/space/void/security/fluff/hos, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/weapon/tank/vox, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fB" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"fC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fH" = ( +/obj/item/device/holowarrant, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fI" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/surgery) +"fJ" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"fK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"fL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"fM" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"fN" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"fO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"fP" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/westleft, +/obj/machinery/door/window/eastright, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/chemistry) +"fQ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"fR" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "ship-vault-door"; + req_one_access = list(109) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + destroy_hits = 100; + id = "ship-vault"; + name = "Vault" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fS" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fT" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fU" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"fV" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/hallway) +"fW" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fX" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fY" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"fZ" = ( +/obj/structure/table/bench/steel, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"ga" = ( +/obj/item/device/holowarrant, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gb" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"gc" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/gloves, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"gd" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"ge" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"gf" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"gg" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"gh" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/obj/item/ammo_casing/microbattery/medical/corpse_mend, +/obj/item/ammo_casing/microbattery/medical/corpse_mend, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/weapon/deadringer, +/obj/item/weapon/deadringer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"gi" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/energy/modular/cannon, +/obj/item/weapon/gun/energy/modular/carbine, +/obj/item/weapon/gun/energy/modular/pistol, +/obj/item/weapon/gun/energy/medigun, +/obj/item/weapon/gun/energy/captain, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"gj" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"gk" = ( +/obj/machinery/power/fractal_reactor/fluff/converter, +/obj/structure/cable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"gl" = ( +/obj/structure/closet/crate/secure/gear{ + req_one_access = list(108) + }, +/obj/item/rig_module/chem_dispenser/injector/advanced, +/obj/item/rig_module/vision/multi, +/obj/item/weapon/rig/military/equipped, +/obj/item/weapon/rig/pmc/commander, +/obj/item/weapon/rig/pmc/medical, +/obj/item/weapon/rig/pmc/engineer, +/obj/item/weapon/rig/pmc/security, +/obj/item/weapon/rig/pmc/security, +/obj/item/weapon/rig/light/ninja, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"gm" = ( +/obj/structure/closet/crate/secure/gear{ + req_one_access = list(108) + }, +/obj/item/device/subspaceradio, +/obj/item/weapon/storage/firstaid/insiderepair, +/obj/item/weapon/storage/firstaid/combat, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/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_heavy{ + name = "Heavy 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/item/weapon/storage/box/emps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/material/knife/machete/deluxe{ + default_material = "durasteel" + }, +/obj/item/clothing/accessory/holster/machete, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"gn" = ( +/obj/structure/closet/secure_closet/explorer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"go" = ( +/obj/structure/closet/secure_closet/nanotrasen_commander, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hos, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-equip"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/security) +"gq" = ( +/obj/structure/sign/department/operational, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"gr" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"gs" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"gt" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/plating, +/area/mothership/chemistry) +"gu" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"gv" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/chemistry) +"gw" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"gx" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/vault) +"gy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"gz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gC" = ( +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gD" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gF" = ( +/obj/structure/closet/secure_closet/detective, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gG" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/treatment) +"gH" = ( +/obj/machinery/vending/blood, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-med-treatment"; + name = "Blast Doors Controls"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gJ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gL" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gM" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gO" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/treatment) +"gP" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"gQ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"gR" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"gS" = ( +/obj/structure/ladder, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"gT" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"gU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-med-treatment"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/treatment) +"gV" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"gZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ha" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2; + req_one_access = list(5) + }, +/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/techmaint, +/area/mothership/treatment) +"hb" = ( +/obj/machinery/status_display{ + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"hc" = ( +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"hd" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"he" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"hf" = ( +/obj/machinery/status_display{ + pixel_y = -29 + }, +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/hallway) +"hg" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2; + req_one_access = list(1) + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"hh" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"hi" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/closet/secure_closet/pathfinder, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"hj" = ( +/obj/structure/closet/bombcloset/double, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/recharger/wallcharger{ + pixel_x = 3; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"hk" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 3; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"hl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"hm" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/retail_scanner/security, +/obj/item/device/retail_scanner/security, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"hn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/machinery/button/remote/blast_door{ + id = "ship-sec-equip"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"ho" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Scan Records" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hp" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hr" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hs" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ht" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hu" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm3) +"hv" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm3) +"hw" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm4) +"hx" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm4) +"hy" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/sechallway) +"hz" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/sechallway) +"hA" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"hB" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/processing) +"hC" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/processing) +"hD" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"hE" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hF" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hG" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hH" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm3-door"; + name = "Dorm 3 Lock"; + pixel_x = 6; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"hI" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"hJ" = ( +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"hK" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm3-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/white, +/area/mothership/dorm3) +"hL" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"hM" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm4-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/white, +/area/mothership/dorm4) +"hN" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"hO" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"hP" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm4-door"; + name = "Dorm 4 Lock"; + pixel_x = -6; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"hQ" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"hR" = ( +/obj/structure/cable/cyan{ + 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/mothership/sechallway) +"hS" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"hT" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"hU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"hV" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/evidence, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"hW" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"hX" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/defib_kit/compact/combat/loaded, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"hZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ia" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ib" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ic" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"id" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ie" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"if" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = -29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"ig" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"ih" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"ii" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = -29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"ij" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"ik" = ( +/obj/structure/cable/cyan{ + 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{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"il" = ( +/obj/structure/sign/department/interrogation, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/processing) +"im" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/camera, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"in" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"io" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"ip" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"iq" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ir" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"is" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"it" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"iu" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"iv" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/morgue) +"iw" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"ix" = ( +/obj/machinery/door_timer/cell_1{ + id = "Cell M1"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"iy" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + 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 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"iz" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/techmaint, +/area/mothership/processing) +"iA" = ( +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/processing) +"iB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"iC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"iD" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"iE" = ( +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"iF" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/treatment) +"iG" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"iH" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"iI" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"iJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"iK" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"iL" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"iM" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"iN" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell M1" + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"iO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell1"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/mothership/sechallway) +"iP" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"iQ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/sechallway) +"iR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"iS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"iT" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"iU" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"iV" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/resleeving) +"iW" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"iX" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"iY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"iZ" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"ja" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jb" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jc" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jd" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"je" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/morgue) +"jf" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"jg" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"jh" = ( +/obj/machinery/camera/network/ert{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"ji" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + id = "Cell M1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell1"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/mothership/sechallway) +"jj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"jk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"jl" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"jm" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"jn" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"jo" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/security) +"jp" = ( +/obj/machinery/computer/transhuman/designer{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jr" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"js" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"ju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jv" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jw" = ( +/obj/structure/cable/cyan{ + 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/white, +/area/mothership/resleeving) +"jx" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"jy" = ( +/obj/structure/cable/cyan{ + 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 = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"jz" = ( +/obj/structure/closet/walllocker{ + name = "Janitor Locker"; + pixel_x = 32 + }, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/soap, +/obj/item/weapon/rig/ert/janitor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"jA" = ( +/obj/machinery/door_timer/cell_2{ + id = "Cell M2"; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"jB" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"jC" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/warden) +"jD" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/warden) +"jE" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"jF" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + flags = 2; + landmark_tag = "cruiser_port"; + name = "Vessel port" + }, +/turf/space, +/area/space) +"jG" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jJ" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jK" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jL" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"jN" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"jO" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"jP" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell M2" + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"jQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell2"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/mothership/sechallway) +"jR" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"jS" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"jT" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"jU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"jV" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"jW" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "ship-sec-cell1"; + name = "Cell 1 Blast Doors"; + pixel_x = 28; + pixel_y = 6; + req_one_access = list(2) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "ship-sec-cell2"; + name = "Cell 2 Blast Doors"; + pixel_x = 28; + pixel_y = -6; + req_one_access = list(2) + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-sec-warden"; + name = "Blast Doors Controls"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"jX" = ( +/obj/machinery/organ_printer/flesh, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jY" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/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/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/weapon/storage/box/body_record_disk, +/obj/item/weapon/storage/firstaid/insiderepair, +/obj/item/weapon/storage/firstaid/clotting, +/obj/item/weapon/storage/firstaid/bonemed, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"jZ" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"ka" = ( +/obj/machinery/clonepod/transhuman/full, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"kb" = ( +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"kc" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"kd" = ( +/obj/structure/sign/department/morgue, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/morgue) +"ke" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"kf" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"kg" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + id = "Cell M2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell2"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/mothership/sechallway) +"kh" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"ki" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"kj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"kk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-warden"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/warden) +"kl" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/medical) +"km" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kn" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"ko" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + 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/mothership/sechallway) +"kp" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/techmaint, +/area/mothership/warden) +"kq" = ( +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/warden) +"kr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"ks" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"kt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/stamp/ward, +/obj/item/weapon/stamp/denied{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"ku" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"kv" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kw" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"ky" = ( +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/adv, +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kz" = ( +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kA" = ( +/obj/item/weapon/storage/firstaid/combat{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/combat, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kB" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kC" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kD" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"kE" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"kF" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"kG" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm5) +"kH" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm6) +"kI" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"kJ" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"kK" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"kL" = ( +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + ammo_type = /obj/item/ammo_casing/a12g/beanbag; + desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; + name = "warden's shotgun" + }, +/obj/item/weapon/book/manual/security_space_law, +/obj/structure/closet/secure_closet/nanotrasen_warden, +/obj/machinery/power/apc{ + alarms_hidden = 1; + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"kM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"kN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/tool/wrench, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"kO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-med-equip"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/medical) +"kP" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kT" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"kU" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm5-door"; + name = "Dorm 5 Lock"; + pixel_x = 6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"kV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"kW" = ( +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"kX" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm5-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/white, +/area/mothership/dorm5) +"kY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"kZ" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm6-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/white, +/area/mothership/dorm6) +"la" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"lb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"lc" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm6-door"; + name = "Dorm 6 Lock"; + pixel_x = -6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"ld" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"le" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"lf" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"lg" = ( +/obj/machinery/computer/prisoner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"lh" = ( +/obj/structure/closet/secure_closet/CMO, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"li" = ( +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lj" = ( +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lk" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"ll" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lm" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm5) +"ln" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm6) +"lo" = ( +/obj/structure/sign/department/armory, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/armory) +"lp" = ( +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lq" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/armory) +"lr" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/armory) +"ls" = ( +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(103) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lt" = ( +/obj/structure/closet/secure_closet/sar, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lv" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lx" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + 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/white, +/area/mothership/medical) +"ly" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/techmaint, +/area/mothership/medical) +"lz" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"lA" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + 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 = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"lB" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + destroy_hits = 100; + id = "ship-armory"; + name = "Armory" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lC" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + 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/mothership/armory) +"lD" = ( +/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, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lE" = ( +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact/flash, +/obj/item/ammo_magazine/m9mm/compact/flash, +/obj/item/ammo_magazine/m9mm/compact/flash, +/obj/item/ammo_magazine/m9mm/compact/rubber, +/obj/item/ammo_magazine/m9mm/compact/rubber, +/obj/item/ammo_magazine/m9mm/compact/rubber, +/obj/item/ammo_magazine/m9mm/compact/practice, +/obj/item/ammo_magazine/m9mm/compact/practice, +/obj/item/ammo_magazine/m9mm/compact/practice, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/weapon/gun/projectile/pistol, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lF" = ( +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lG" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lH" = ( +/obj/machinery/vending/nifsoft_shop{ + categories = 111; + emagged = 1; + name = "Hacked NIFSoft Shop"; + prices = list() + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lI" = ( +/obj/structure/table/steel_reinforced, +/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/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lJ" = ( +/obj/machinery/disposal, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lK" = ( +/obj/machinery/button/remote/blast_door{ + id = "ship-med-equip"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lL" = ( +/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, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lM" = ( +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/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/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lN" = ( +/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/device/defib_kit/compact/combat/loaded, +/obj/item/device/defib_kit/compact/combat/loaded, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lO" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lP" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/medical) +"lQ" = ( +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"lR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"lS" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait{ + dir = 2; + req_one_access = list(103) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + destroy_hits = 100; + id = "ship-armory"; + name = "Armory" + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-armory"; + name = "Blast Doors Controls"; + pixel_x = 0; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lT" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lX" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"lY" = ( +/obj/machinery/door/airlock/research, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"lZ" = ( +/obj/machinery/door/airlock/research, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"ma" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/medical) +"mb" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/bridge) +"mc" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/bridge) +"md" = ( +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"me" = ( +/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/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/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/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/machete, +/obj/item/weapon/material/knife/machete, +/obj/item/weapon/material/knife/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mf" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/smokes, +/obj/item/weapon/storage/box/smokes, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/gun/launcher/grenade, +/obj/item/weapon/gun/launcher/grenade, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mg" = ( +/obj/item/rig_module/grenade_launcher/smoke, +/obj/item/rig_module/cleaner_launcher, +/obj/item/rig_module/grenade_launcher, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mh" = ( +/obj/item/rig_module/vision/multi, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mi" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/rnd) +"mj" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mk" = ( +/obj/machinery/computer/rdconsole/core, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"ml" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mm" = ( +/obj/machinery/pros_fabricator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mn" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Centcom Autolathe" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mo" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mp" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mq" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/obj/item/modular_computer/console/preset/mercenary, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mr" = ( +/obj/structure/prop/alien/computer{ + icon_state = "console-c"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"ms" = ( +/obj/item/modular_computer/telescreen/preset/generic{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mt" = ( +/obj/structure/sign/department/armory, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/armory) +"mu" = ( +/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/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/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, +/obj/item/ammo_magazine/m545, +/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/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mv" = ( +/obj/item/clothing/suit/armor/vest/ert/command, +/obj/item/clothing/head/helmet/ert/command, +/obj/item/weapon/storage/backpack/ert/commander, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mw" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/suit/armor/pcarrier/merc, +/obj/item/clothing/suit/armor/pcarrier/merc, +/obj/item/clothing/head/helmet/merc, +/obj/item/clothing/head/helmet/merc, +/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, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mx" = ( +/obj/item/rig_module/mounted, +/obj/item/rig_module/mounted, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"my" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/item/weapon/rig/ert, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mz" = ( +/obj/structure/reagent_dispensers/acid{ + density = 0; + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mD" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/westleft, +/obj/machinery/door/window/eastright, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mE" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mG" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mI" = ( +/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/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mJ" = ( +/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/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mK" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/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, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mL" = ( +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"mM" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/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/techmaint, +/area/mothership/armory) +"mN" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/resleeving) +"mO" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mP" = ( +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mQ" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mR" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mS" = ( +/obj/structure/closet{ + name = "materials" + }, +/obj/fiftyspawner/diamond, +/obj/fiftyspawner/gold, +/obj/fiftyspawner/phoron, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/osmium, +/obj/fiftyspawner/silver, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/uranium, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/durasteel, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"mT" = ( +/obj/structure/sign/department/rnd, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/rnd) +"mU" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"mV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mY" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"mZ" = ( +/obj/item/weapon/gun/energy/laser, +/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/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"na" = ( +/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/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nb" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/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/gun/energy/protector, +/obj/item/weapon/gun/energy/protector, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nc" = ( +/obj/item/rig_module/device/anomaly_scanner, +/obj/item/rig_module/device/anomaly_scanner, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/rcd, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nd" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"ne" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/warden) +"nf" = ( +/obj/machinery/vending/robotics, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"ng" = ( +/obj/machinery/vending/cart, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nh" = ( +/obj/structure/closet/secure_closet/RD, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"ni" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nj" = ( +/obj/structure/closet{ + name = "mechanical equipment" + }, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/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/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nk" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/rnd) +"nl" = ( +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/hallway) +"nm" = ( +/obj/machinery/door/airlock/command{ + req_one_access = list(101) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bridge) +"nn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"no" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"np" = ( +/obj/item/modular_computer/console/preset/ert{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"nq" = ( +/obj/item/modular_computer/console/preset/ert{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"nr" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"ns" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"nt" = ( +/obj/machinery/door/airlock/command{ + req_one_access = list(101) + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bridge) +"nu" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"nv" = ( +/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/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nw" = ( +/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/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nx" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/heavysniper, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/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/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"ny" = ( +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nz" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/structure/window/reinforced/survival_pod, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nD" = ( +/obj/machinery/door/airlock/research, +/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/techmaint, +/area/mothership/rnd) +"nE" = ( +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"nF" = ( +/obj/structure/sign/department/bridge, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/bridge) +"nG" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"nH" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"nI" = ( +/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/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nJ" = ( +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/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/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nK" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/netgun, +/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/gun/energy/sniperrifle, +/obj/item/weapon/gun/energy/sniperrifle, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nL" = ( +/obj/item/rig_module/rescue_pharm, +/obj/item/rig_module/rescue_pharm, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nM" = ( +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/plasmacutter, +/obj/item/rig_module/device/plasmacutter, +/obj/item/rig_module/device/orescanner, +/obj/item/rig_module/device/orescanner, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nN" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nO" = ( +/obj/item/device/defib_kit/jumper_kit, +/obj/structure/table/steel_reinforced, +/obj/item/device/robotanalyzer, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nR" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nS" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"nT" = ( +/obj/machinery/computer/supplycomp{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"nU" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"nV" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + 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 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"nW" = ( +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/techmaint, +/area/mothership/armory) +"nX" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/armory) +"nY" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"nZ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"oa" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"ob" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"oc" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"od" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"oe" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ship-mechbay"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"of" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ship-mechbay"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"og" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ship-mechbay"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/button/remote/blast_door{ + id = "ship-mechbay"; + name = "Mech Bay Controls"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"oh" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"oi" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"oj" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"ok" = ( +/obj/machinery/button/remote/airlock{ + id = "ship-vault-door"; + name = "Vault Lock"; + pixel_x = -6; + pixel_y = -26; + req_one_access = list(108); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"ol" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/holodeck) +"om" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/robotics) +"on" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oo" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"op" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oq" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"or" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"os" = ( +/obj/machinery/mech_recharger, +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"ot" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"ou" = ( +/obj/machinery/door/blast/regular{ + id = "ship-mechbay-inner"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/button/remote/blast_door{ + id = "ship-mechbay-inner"; + name = "Mech Bay Controls"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"ov" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"ow" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/holodeck) +"ox" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"oy" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/computer/HolodeckControl/holodorm/warship, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"oz" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/mothership/holodeck/holo) +"oA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-holodeck"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/holodeck) +"oB" = ( +/obj/structure/closet/excavation, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oE" = ( +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"oF" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oG" = ( +/obj/machinery/door/blast/regular{ + id = "ship-mechbay-inner"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oH" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"oI" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"oJ" = ( +/obj/machinery/button/remote/airlock{ + id = "ship-holodeck-door"; + name = "Holodeck Lock"; + pixel_x = -26; + pixel_y = -6; + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ship-holodeck"; + name = "Blast Door Controls"; + pixel_x = -28; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"oK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"oL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oM" = ( +/obj/machinery/cryopod/robot, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oN" = ( +/obj/machinery/computer/cryopod/robot{ + dir = 1; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oO" = ( +/obj/machinery/mech_recharger, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"oP" = ( +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"oQ" = ( +/obj/machinery/mech_recharger, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"oR" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oS" = ( +/obj/machinery/door/blast/regular{ + id = "ship-mechbay-inner"; + name = "Mech Bay" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"oT" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"oU" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/hallway) +"oV" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"oW" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"oX" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"oY" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"oZ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"pa" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + 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/mothership/hallway) +"pb" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft/vertical{ + id_tag = "ship-holodeck-door"; + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"pc" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"pd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/item/weapon/storage/box/survival/space, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"pe" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"pf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"pg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"ph" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"pi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"pj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"pk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/cryotube) +"pl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/cryotube) +"pm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"pn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"po" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"pp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"pq" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"pr" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/telecomms1) +"ps" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"pt" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"pu" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"pv" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"pw" = ( +/obj/machinery/ntnet_relay, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"px" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"py" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"pz" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"pA" = ( +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/telecomms1) +"pB" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(101) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"pC" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"pD" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/cryotube) +"pE" = ( +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"pF" = ( +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"pG" = ( +/obj/machinery/vending/loadout/overwear, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"pH" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"pI" = ( +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"pJ" = ( +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"pK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(101) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"pL" = ( +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/telecomms2) +"pM" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"pN" = ( +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"pO" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/sci_outpost, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"pP" = ( +/obj/machinery/account_database{ + name = "CentComm Accounts database" + }, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"pQ" = ( +/obj/machinery/telecomms/relay/preset/centcom/underdark, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"pR" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"pS" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"pT" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"pU" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/telecomms2) +"pV" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"pW" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"pX" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"pY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"pZ" = ( +/obj/machinery/telecomms/hub/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"qa" = ( +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 1; + name = "Master RnD Server Controller" + }, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"qb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/sign/department/telecoms, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"qc" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"qd" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"qe" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/cryotube) +"qf" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"qg" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"qh" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"qi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"qj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"qk" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/cryotube) +"ql" = ( +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/hallway) +"qm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/sign/department/telecoms, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"qn" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/station_low, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"qo" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/base_low, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"qp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"qq" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"qr" = ( +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"qs" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"qt" = ( +/obj/machinery/telecomms/bus/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"qu" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"qv" = ( +/obj/machinery/telecomms/processor/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"qw" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"qx" = ( +/obj/machinery/telecomms/relay/preset/centcom, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"qy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"qz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"qA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"qB" = ( +/obj/structure/sign/department/eng, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"qC" = ( +/obj/machinery/door/airlock/engineeringatmos, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"qD" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"qE" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"qF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"qG" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"qH" = ( +/obj/machinery/vending/loadout/gadget, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"qI" = ( +/obj/machinery/door/airlock/engineeringatmos, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"qJ" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"qK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"qL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"qM" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/station_mid, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"qN" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/station_high, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"qO" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/midpoint, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"qP" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/base_high, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"qQ" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/base_mid, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"qR" = ( +/obj/structure/particle_accelerator/end_cap{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"qS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"qT" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"qU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/power/thermoregulator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"qV" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"qW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"qX" = ( +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"qY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"qZ" = ( +/obj/machinery/cryopod, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"ra" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"rb" = ( +/obj/machinery/computer/cryopod{ + pixel_y = -32 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"rc" = ( +/obj/machinery/vending/loadout, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"rd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"re" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rf" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rg" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rh" = ( +/obj/structure/particle_accelerator/end_cap{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"ri" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + flags = 2; + landmark_tag = "cruiser_starboard"; + name = "Vessel starboard" + }, +/turf/space, +/area/space) +"rj" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"rk" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/structure/closet/emcloset/legacy, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/syndie_kit/space, +/obj/item/weapon/storage/box/syndie_kit/space, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rl" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 4; + icon_state = "on"; + unlocked = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"ro" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) +"rp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) +"rq" = ( +/obj/machinery/computer/station_alert/all{ + dir = 8; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rr" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"rs" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/rnd) +"rt" = ( +/obj/structure/particle_accelerator/power_box{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"ru" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rv" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"ry" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/pipedispenser/disposal/orderable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/pipedispenser/orderable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + icon_state = "map-supply"; + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rF" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/multi, +/obj/item/weapon/folder/yellow_ce, +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) +"rG" = ( +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) +"rH" = ( +/obj/item/modular_computer/console/preset/mercenary{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rI" = ( +/obj/structure/particle_accelerator/power_box{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"rJ" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/mothership/telecomms1) +"rK" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/nitrogen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + icon_state = "intact"; + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rN" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 1; + tag_south = 3; + tag_west = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rO" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored{ + dir = 8; + name = "Filter Bypass" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rP" = ( +/obj/machinery/atmospherics/trinary/atmos_filter{ + dir = 4; + filter_type = 0; + filtered_out = list("phoron") + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rQ" = ( +/obj/machinery/atmospherics/trinary/atmos_filter{ + dir = 4; + filter_type = 3; + filtered_out = list("carbon_dioxide") + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rR" = ( +/obj/machinery/atmospherics/trinary/atmos_filter{ + dir = 4; + filter_type = 4; + filtered_out = list("sleeping_agent") + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rU" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + icon_state = "map"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rX" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rY" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/weapon/rcd, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rig/ce/equipped, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"rZ" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/mothership/telecomms2) +"sa" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/mothership/telecomms1) +"sb" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sd" = ( +/obj/machinery/atmospherics/trinary/mixer{ + dir = 8; + node1_concentration = 0.21; + node2_concentration = 0.79 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"se" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sf" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sg" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sh" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"si" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/sleeping_agent, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + icon_state = "map"; + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sk" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + icon_state = "freezer"; + use_power = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sl" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1; + icon_state = "heater"; + use_power = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"so" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sp" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sq" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/mothership/telecomms2) +"sr" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"ss" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"st" = ( +/obj/structure/particle_accelerator/end_cap{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"su" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/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/structure/table/steel_reinforced, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/rods, +/obj/item/stack/rods, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sw" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sx" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sy" = ( +/obj/machinery/vending/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sz" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sA" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/ce, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sB" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 2; + target_pressure = 200 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sC" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sD" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sE" = ( +/obj/structure/particle_accelerator/power_box{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"sG" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sH" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sI" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/mothership/engineering) +"sJ" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/armory) +"sK" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"sL" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/engineering) +"sM" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/mothership/engineering) +"sN" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "cruiser_port_dock"; + name = "Vessel port dock" + }, +/turf/space, +/area/space) +"sO" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "cruiser_dock_starboard"; + name = "Vessel starboard dock" + }, +/turf/space, +/area/space) +"sP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/mothership/bridge) +"sQ" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + flags = 2; + landmark_tag = "cruiser_aft"; + name = "Vessel aft" + }, +/turf/space, +/area/space) +"sR" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/telecomms1) +"sS" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/telecomms2) + +(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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +sN +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +pe +pr +pe +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bc +cq +dJ +fI +dJ +cq +bc +cq +cq +cq +cq +cq +bc +cq +iV +mN +iV +cq +bc +cq +cq +cq +cq +cq +bc +cq +mi +rs +mi +cq +bc +nk +om +om +om +pe +ps +pe +bc +pe +sR +pe +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +gG +gU +gU +gU +gU +gG +gG +iV +iV +iV +iV +kl +kl +kO +kO +kO +kl +kl +mi +mi +mi +mi +mi +mi +mi +on +oB +oL +pf +pt +pV +pe +pe +pe +pe +pV +bc +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dJ +dW +eo +dJ +eV +fo +fJ +gb +gq +gH +gV +ho +hE +hX +iq +gG +iW +jp +jG +jX +kl +kv +kP +lh +lt +lJ +kl +mj +mz +mO +nf +mC +nN +mi +oo +oC +oM +pg +pu +pW +qt +qR +rj +rt +rJ +sa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dJ +dX +ep +dJ +eW +fp +fK +gc +gr +gI +gW +hp +hp +hY +ir +iF +iX +jq +jH +jY +kl +kw +kQ +kw +lu +lK +kl +mk +mA +mP +ng +nA +nO +mi +oo +oC +oM +pg +pv +pX +qu +qR +rj +rt +rJ +sa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,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 +aa +aa +aa +aa +aa +aa +aa +aa +cr +cH +cr +aa +aa +aa +dK +dY +eq +eJ +eX +fq +fL +gd +gs +gJ +gX +hq +hq +hZ +hq +iG +iY +jr +jI +iY +km +kx +kR +kx +lv +kx +lY +ml +mB +ml +ml +nB +nP +oe +op +oD +oN +pg +pw +pX +qv +qR +rj +rt +rJ +sa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,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 +aa +bc +cq +be +bC +bC +bd +cv +cr +cI +cr +bc +df +ds +dJ +dJ +dJ +eK +eK +eK +eK +eK +eL +gK +gY +hr +hp +ia +hp +iF +iZ +js +jJ +jZ +kl +ky +kw +li +lw +lL +kl +mm +mC +mQ +nh +nC +nQ +of +oq +oE +oO +pg +px +pX +qw +qR +rj +rt +rJ +sa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,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 +bc +ae +au +au +au +ae +bd +bk +bD +bR +bk +cr +cs +cJ +cs +cr +df +dt +dL +dZ +er +eK +eY +fr +fM +ge +eK +gL +gY +hs +hp +ib +hp +gG +ja +jt +jJ +ka +kl +kz +kw +lj +lw +lM +kl +mn +mC +mR +ni +nC +nQ +og +or +oE +oP +pg +py +pY +qx +qR +rj +rt +rJ +sa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,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 +ab +ab +ae +ao +ao +ao +aL +bd +bl +bE +bS +cd +cr +cw +cK +cU +cr +dg +du +dL +ea +es +eK +eZ +fs +fN +gf +gt +gM +gY +hp +hp +hp +is +iF +jb +ju +jJ +kb +kl +kA +kw +lk +lw +lN +kl +mo +mC +mC +mC +nC +nR +mi +os +oE +oQ +pg +pz +pZ +qy +qS +qS +qS +qS +qS +qS +qS +qK +qJ +qJ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,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 +ad +ai +an +ao +ao +ao +aM +bd +bm +bF +bT +ce +cr +cx +cL +cV +cr +dh +dv +dL +eb +et +eK +fa +ft +fO +gg +gu +gN +gZ +ht +hF +ic +it +iH +jc +jv +jK +jc +kn +kB +kS +ll +lx +lO +lZ +mp +mC +mS +nj +nC +nS +mi +ot +oF +oR +pg +pA +qa +qz +qT +qT +qT +rK +sb +sr +rX +sD +sH +sL +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,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 +ae +ab +ae +av +ao +ao +aN +bd +bn +bG +bT +bo +cr +cy +cM +cW +cr +di +ds +dM +dL +eu +eL +eK +fu +fP +eK +gv +gO +ha +gG +hG +id +iu +iF +jd +jw +jL +kc +kl +kC +kT +kl +ly +lP +ma +mi +mD +mT +nk +nD +nk +nk +ou +oG +oS +ph +pB +qb +qA +qU +rk +ru +rL +sc +ss +sy +iw +qJ +iw +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,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 +ag +ab +ao +ao +ao +ao +aO +bd +bo +bG +bT +bo +cr +cs +cN +cs +cr +dj +dw +dN +dz +dj +dz +fb +dz +dz +dz +gw +gP +hb +gG +gG +gG +gG +gG +je +jx +je +kd +iv +kl +kl +kl +dj +dz +gw +dz +dz +dz +fb +lR +dN +dz +ov +ov +oT +pi +dj +qc +qB +qV +rl +rv +rM +sd +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,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 +ae +ae +ap +ao +ao +ao +aP +bd +bp +bG +bT +bo +cr +cz +cO +cX +cr +dk +dx +dx +dx +ev +eM +fc +dx +fQ +dx +dS +gQ +hc +hu +hH +ie +iv +iI +jf +jy +jM +ke +iv +kD +kU +kG +lz +dx +dS +dx +dx +mU +nl +nE +dx +dx +dx +oH +oU +pj +pC +qd +qC +qW +rm +rw +rN +se +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,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 +bc +ac +ao +aw +ao +aG +aQ +bd +bo +bG +bT +bo +cr +cA +cO +cY +cr +dl +dy +dO +dP +dP +dP +fd +fd +fR +fd +gx +dz +dj +hu +hI +if +iv +iJ +jg +jg +jg +kf +iv +kE +kV +kG +dj +dz +mb +mc +mc +mb +nm +nF +mc +mc +mb +dl +dy +pk +pD +qe +pD +pD +pD +rx +rO +sf +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,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 +ab +ab +ae +aq +ax +ar +aH +aR +be +bq +bH +bU +be +cs +cB +cO +cZ +cr +dj +dz +dP +ec +ew +eN +fd +fv +fS +gh +fd +dz +dj +hu +hJ +ig +iv +iK +iK +iK +iK +iK +iv +kF +kW +kG +dj +dz +mc +mq +mE +mV +nn +mG +mE +oh +mc +dj +oV +pl +pE +qf +qD +qX +pD +ry +rP +sg +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,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 +ac +ah +aj +ar +ay +aD +aI +aS +bf +br +bI +bT +cf +cs +cC +cO +da +de +dj +dA +dP +ed +ex +eO +fd +fw +fS +gi +fd +gR +dj +hv +hK +hu +iv +iv +iv +iv +iv +iv +iv +kG +kX +lm +dj +dA +mc +mr +mF +mW +no +no +no +oi +mc +dj +oW +pl +pF +qg +qE +qY +pD +rz +rQ +sh +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ah +ak +ar +az +aE +az +aT +be +bs +bJ +bV +cg +ct +cD +cP +db +ct +dm +dB +dQ +ee +ey +eP +fd +fx +fS +gj +fd +gS +hd +dS +hL +dx +dx +dx +dx +fe +dx +dx +dx +dx +kY +dS +he +gS +mc +ms +mG +mF +np +nG +nT +np +mc +dj +oX +pl +pG +qh +qF +qZ +pD +rA +rR +si +su +sA +qJ +cq +bc +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +sQ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,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 +ac +ah +ak +ar +az +az +az +aU +be +bt +bK +bW +ch +cu +cE +cQ +dc +cu +dn +dC +dR +ef +ez +eQ +fd +fy +fT +gk +fd +gS +dj +dy +dj +gy +ff +dz +dz +jz +dz +dz +ff +gy +dj +dy +dj +gS +mc +ms +mG +mF +nq +nH +nU +nq +mc +dj +oY +pl +pH +qh +qF +ra +pD +rB +rS +sj +sv +sB +sF +sP +bc +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,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 +ac +ah +al +ar +aA +aF +aJ +aV +bg +bu +bL +bX +ci +cs +cF +cO +dd +cs +dj +dA +dP +eg +ex +eR +fd +fz +fS +gl +fd +gR +dj +hw +hM +hx +hy +hy +hy +hy +hy +hy +hy +kH +kZ +ln +dj +dA +mc +mr +mF +mX +nr +nr +nr +oj +mc +dj +oZ +pl +pI +qi +qG +rb +pD +rB +rT +sk +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,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 +ab +ab +ae +aq +ax +ar +aH +aW +bh +bv +bM +bY +cj +cs +cG +cO +cZ +cr +dj +dD +dP +eh +eA +eS +fd +fA +fU +gm +fd +dz +dj +hx +hN +ih +hy +iL +hQ +hy +jN +hQ +hy +kI +la +kH +dj +dz +mc +mq +mH +mY +ns +mG +mH +ok +mc +dj +oV +pl +pJ +qj +qH +rc +pD +rC +rU +sl +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,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 +bc +ac +ao +aB +ao +aK +aX +bi +bw +bN +bZ +ck +cr +cA +cO +cY +cr +dj +dz +dO +dP +dP +dP +fd +fd +fR +fd +gx +dy +dl +hx +hO +ii +hy +iM +jh +hy +jO +jh +hy +kJ +lb +kH +dl +dy +mb +mc +mc +mb +nt +nF +mc +mc +mb +dj +oW +pk +pD +qk +pD +pD +pD +rD +rV +sm +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,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 +ae +ae +as +ao +ao +ao +aY +bi +bx +bN +ca +cl +cr +cz +cO +cX +cr +dk +dx +dS +dx +eB +dx +fe +fB +fV +dx +dx +dx +he +hx +hP +ij +hy +iN +hQ +hy +jP +hQ +hy +kK +lc +kH +lA +lQ +dx +dx +dx +dx +nu +dx +nV +dx +dS +oI +pa +pm +nV +ql +qI +rd +rn +rE +rW +sn +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,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 +ag +ab +at +ao +ao +ao +ao +bj +by +bN +ca +cm +cr +cs +cN +cs +cr +dj +dE +dT +dz +dj +dz +ff +dz +dz +dz +gy +dz +hf +hy +hy +hy +iw +iO +ji +hy +jQ +kg +iw +hy +hy +hy +gP +lR +gy +dz +dz +dz +ff +gy +dj +dz +dy +dz +dj +pi +dj +qc +qJ +re +ro +rF +rX +so +st +sz +sE +sI +sM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,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 +ae +ab +ae +av +ao +ao +aZ +bi +bz +bN +ca +cn +cr +cy +cR +cW +cr +do +dF +dU +dU +eC +eT +dV +dV +dV +dV +dV +gT +hg +hz +hQ +hQ +ix +iP +hQ +jA +iP +hQ +hQ +hQ +hQ +lo +lB +lS +lq +mt +lr +lr +lr +lo +nW +ol +ow +ol +pb +pn +pK +qm +qK +rf +rp +rG +rX +rX +sw +sC +iw +qJ +iw +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,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 +ad +am +an +ao +ao +ao +ba +bi +bA +bN +ca +co +cr +cx +cL +cV +cr +dp +dG +dU +ei +eD +dV +fg +fC +fW +gn +gz +fY +hh +hA +hR +ik +iy +iQ +jj +jB +jR +hR +ko +ik +hR +lp +lC +lT +md +mu +mI +mZ +nv +nI +nX +lr +ox +oJ +pc +po +pL +qn +qz +rg +rq +rH +rY +sp +sx +rX +sG +sK +sL +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,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 +ab +ab +ae +ao +ao +ao +bb +bi +bB +bO +cb +cp +cr +cw +cS +cU +cr +dq +dH +dU +ej +eE +dV +fh +fD +fX +gn +gA +fY +hi +hB +hC +il +iz +hC +hC +jC +jD +jD +kp +jD +jD +lq +lD +lU +lG +lG +lG +lG +lG +lG +nY +lr +oy +oK +pd +po +pM +qo +qL +qS +qS +qS +qS +qS +qS +qS +qA +qJ +qJ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,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 +bc +ae +aC +aC +aC +ae +bi +bk +bP +cc +bk +cr +cs +cJ +cs +cr +dr +dI +dU +ek +eF +dV +fi +fD +fY +fY +gB +fY +hj +hC +hS +im +iA +iR +jk +jD +jS +kh +kq +kL +ld +lr +lE +lV +me +mv +mJ +na +nw +nJ +nZ +lr +oz +oz +oz +po +pN +qp +qM +rh +rr +rI +rZ +sq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,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 +aa +bc +cq +bk +bQ +bQ +bi +fn +cr +cT +cr +bc +dr +dF +dV +dV +dV +dV +fj +fE +fZ +fY +gC +fY +hk +hB +hT +in +iB +in +jl +jC +jT +ki +kr +ki +le +lq +lF +lV +mf +mw +mK +nb +nx +nK +oa +lr +oz +oz +oz +po +pO +qq +qN +rh +rr +rI +rZ +sq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,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 +aa +aa +aa +aa +aa +aa +aa +aa +cr +cH +cr +aa +aa +aa +dV +el +eG +dV +fk +fF +fZ +fY +gD +fY +hl +hD +hU +io +iC +iS +io +jE +jU +kj +ks +kM +ki +ls +lG +lW +mg +mx +mL +nc +ny +nL +ob +lr +oz +oz +oz +po +pP +qq +qO +rh +rr +rI +rZ +sq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +em +eH +eU +fl +fG +fl +fl +gE +fl +hm +hB +hV +in +iD +iT +jm +jC +jV +ki +kt +kN +lf +lq +lH +lG +lG +lG +lG +lG +lG +lG +oc +lr +oz +oz +oz +po +pQ +qq +qP +rh +rr +rI +rZ +sq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +en +eI +dV +fm +fH +ga +go +gF +fY +hn +hC +hW +ip +iE +iU +jn +jD +jW +ki +ku +ki +lg +lr +lI +lX +mh +my +mM +nd +nz +nM +od +lr +oz +oz +oz +po +pR +qr +qQ +rh +rr +rI +rZ +sq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dV +dV +dV +dV +dV +dV +eT +gp +gp +gp +dV +hC +hC +hC +hC +hC +hC +jD +jC +kk +kk +kk +jD +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +oz +oz +oz +pp +pS +qs +pq +pq +pq +pq +qs +bc +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bc +cq +dV +jo +dV +cq +bc +cq +cq +cq +cq +cq +bc +cq +hC +ne +jD +cq +bc +cq +cq +cq +cq +cq +bc +cq +lr +sJ +lr +cq +bc +lq +oA +oA +oA +pq +pT +pq +bc +pq +sS +pq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +pq +pU +pq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +sO +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(109,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(110,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(111,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(115,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(116,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(117,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ri +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(118,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(119,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(120,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(121,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(128,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(129,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(130,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(131,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(132,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(133,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(134,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(138,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(139,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/tether_misc.dmm b/maps/tether/submaps/tether_misc.dmm index 6cef54067d0..7e2bf1227b3 100644 --- a/maps/tether/submaps/tether_misc.dmm +++ b/maps/tether/submaps/tether_misc.dmm @@ -1,349 +1,93 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( +"aa" = ( /obj/machinery/vending/coffee, /turf/unsimulated/beach/sand, /area/beach) -"aab" = ( -/turf/unsimulated/wall, -/area/centcom/specops) -"aac" = ( -/obj/effect/floor_decal/industrial/danger/corner, -/turf/unsimulated/floor/steel, -/area/centcom/specops) -"aad" = ( -/obj/effect/floor_decal/industrial/danger, -/turf/unsimulated/floor/steel, -/area/centcom/specops) -"aae" = ( +"ab" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/shuttle/supply) +"ac" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/shuttle/supply) +"ad" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "supply_cc"; + name = "Centcom Supply Depot" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/shuttle/supply) +"ae" = ( /turf/unsimulated/mineral/virgo3b, /area/space) -"aaf" = ( +"af" = ( /obj/structure/sign/warning/docking_area, /turf/unsimulated/wall, /area/centcom/simulated/terminal) -"aag" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; +"ag" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ dir = 1 }, -/obj/structure/closet/crate/secure, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aah" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/closet/crate/secure, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aai" = ( +/area/shuttle/supply) +"ai" = ( /obj/machinery/door/blast/regular{ dir = 4 }, /turf/unsimulated/floor/techfloor_grid, /area/centcom/simulated/terminal) -"aaj" = ( +"aj" = ( /obj/structure/sign/warning{ name = "\improper STAND AWAY FROM TRACK EDGE" }, /turf/unsimulated/wall, /area/centcom/simulated/terminal) -"aak" = ( -/obj/machinery/fitness/heavy/lifter, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/antag/antag_base) -"aal" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/breakroom) -"aam" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "trade_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "trade_shuttle"; - pixel_x = -25; - pixel_y = 0; - req_one_access = list(101); - tag_door = "trade_shuttle_hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aan" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aao" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/structure/table/rack, -/obj/item/weapon/storage/box/frags, -/obj/item/weapon/storage/box/frags, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aap" = ( +"ap" = ( /turf/space, /area/space) -"aaq" = ( +"aq" = ( /obj/effect/step_trigger/teleporter/random, /turf/space, /area/space) -"aar" = ( +"ar" = ( /turf/unsimulated/wall, /area/space) -"aas" = ( +"as" = ( /obj/structure/window/reinforced, /turf/unsimulated/wall, /area/space) -"aat" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/item/weapon/storage/box/sniperammo, -/obj/item/weapon/gun/projectile/heavysniper, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aau" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aav" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aaw" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aax" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aay" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aaz" = ( -/obj/machinery/shower{ - pixel_y = 32 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4; - icon_state = "twindow" - }, -/obj/item/weapon/soap/syndie, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/antag/antag_base) -"aaA" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1331; - id_tag = "merc_base"; - pixel_x = -25; - pixel_y = -25 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aaB" = ( -/turf/simulated/mineral, -/area/space) -"aaC" = ( -/turf/simulated/shuttle/wall/dark, -/area/shuttle/mercenary) -"aaD" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/hos, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_w = 0; - pixel_x = 0; - pixel_y = 32 - }, -/obj/effect/landmark{ - name = "Syndicate-Spawn" - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"aaE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate"; - name = "Outer Airlock"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aaF" = ( -/obj/structure/table/glass, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"aaG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "syndieshutters_infirmary"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aaH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1331; - id_tag = "merc_shuttle_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 1331; - id_tag = "merc_shuttle_sensor"; - pixel_x = 8; - pixel_y = 25 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aaI" = ( +"aI" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/unsimulated/wall, /area/space) -"aaJ" = ( +"aJ" = ( /turf/simulated/floor/holofloor/desert, /area/holodeck/source_desert) -"aaK" = ( +"aK" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/holofloor/desert, /area/holodeck/source_desert) -"aaL" = ( +"aL" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -352,29 +96,29 @@ }, /turf/unsimulated/wall, /area/space) -"aaM" = ( +"aM" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"aaN" = ( +"aN" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"aaO" = ( +"aO" = ( /obj/structure/table/rack/holorack, /obj/item/clothing/under/dress/dress_saloon, /obj/item/clothing/head/pin/flower, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_theatre) -"aaP" = ( +"aP" = ( /obj/effect/landmark/costume, /obj/structure/table/rack/holorack, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_theatre) -"aaQ" = ( +"aQ" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_courtroom) -"aaR" = ( +"aR" = ( /obj/structure/window/reinforced/holowindow{ dir = 4 }, @@ -383,136 +127,136 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_courtroom) -"aaS" = ( +"aS" = ( /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"aaT" = ( +"aT" = ( /turf/simulated/floor/holofloor/reinforced, /area/holodeck/source_wildlife) -"aaU" = ( +"aU" = ( /turf/simulated/floor/holofloor/reinforced, /area/holodeck/source_plating) -"aaV" = ( +"aV" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_emptycourt) -"aaW" = ( +"aW" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"aaX" = ( +"aX" = ( /obj/structure/holostool, /obj/structure/window/reinforced/holowindow{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"aaY" = ( +"aY" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"aaZ" = ( +"aZ" = ( /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"aba" = ( +"ba" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"abb" = ( +"bb" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/unsimulated/wall, /area/space) -"abc" = ( +"bc" = ( /turf/simulated/shuttle/wall, /area/shuttle/supply) -"abd" = ( +"bd" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/holofloor/desert, /area/holodeck/source_desert) -"abe" = ( +"be" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abf" = ( +"bf" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abg" = ( +"bg" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_theatre) -"abh" = ( +"bh" = ( /obj/machinery/door/window/holowindoor, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_courtroom) -"abi" = ( +"bi" = ( /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abj" = ( +"bj" = ( /obj/effect/landmark{ name = "Holocarp Spawn" }, /turf/simulated/floor/holofloor/reinforced, /area/holodeck/source_wildlife) -"abk" = ( +"bk" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"abl" = ( +"bl" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"abm" = ( +"bm" = ( /obj/effect/floor_decal/corner/red{ dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"abn" = ( +"bn" = ( /turf/simulated/shuttle/floor, /area/shuttle/supply) -"abo" = ( +"bo" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood/corner, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abp" = ( +"bp" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abq" = ( +"bq" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abr" = ( +"br" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abs" = ( +"bs" = ( /obj/structure/window/reinforced/holowindow{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_courtroom) -"abt" = ( +"bt" = ( /obj/structure/bed/chair/holochair, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abu" = ( +"bu" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 }, @@ -522,14 +266,14 @@ /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abv" = ( +"bv" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 }, /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abw" = ( +"bw" = ( /obj/machinery/door/window/holowindoor{ dir = 1; name = "Jury Box" @@ -551,13 +295,13 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"abx" = ( +"bx" = ( /obj/machinery/door/window/holowindoor{ name = "Red Team" }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_emptycourt) -"aby" = ( +"by" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -565,13 +309,13 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/supply) -"abz" = ( +"bz" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/shuttle/floor, /area/shuttle/supply) -"abA" = ( +"bA" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood, /obj/effect/floor_decal/spline/fancy/wood{ @@ -579,39 +323,39 @@ }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abB" = ( +"bB" = ( /turf/simulated/floor/holofloor/desert, /area/holodeck/source_picnicarea) -"abC" = ( +"bC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/holostool, /turf/simulated/floor/holofloor/desert, /area/holodeck/source_picnicarea) -"abD" = ( +"bD" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/holofloor/desert, /area/holodeck/source_picnicarea) -"abE" = ( +"bE" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abF" = ( +"bF" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abG" = ( +"bG" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_theatre) -"abH" = ( +"bH" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, @@ -629,7 +373,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"abI" = ( +"bI" = ( /obj/structure/window/reinforced/holowindow, /obj/machinery/door/window/holowindoor{ dir = 1; @@ -638,7 +382,7 @@ /obj/structure/bed/chair/holochair, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abJ" = ( +"bJ" = ( /obj/structure/table/woodentable/holotable, /obj/structure/window/reinforced/holowindow, /obj/structure/window/reinforced/holowindow{ @@ -646,12 +390,12 @@ }, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abK" = ( +"bK" = ( /obj/structure/table/woodentable/holotable, /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abL" = ( +"bL" = ( /obj/structure/table/woodentable/holotable, /obj/structure/window/reinforced/holowindow, /obj/structure/window/reinforced/holowindow{ @@ -659,7 +403,7 @@ }, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abM" = ( +"bM" = ( /obj/structure/window/reinforced/holowindow, /obj/machinery/door/window/holowindoor{ base_state = "right"; @@ -670,14 +414,14 @@ /obj/structure/bed/chair/holochair, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abN" = ( +"bN" = ( /obj/structure/window/reinforced/holowindow{ dir = 8 }, /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"abO" = ( +"bO" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, @@ -692,7 +436,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"abP" = ( +"bP" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, @@ -704,7 +448,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"abQ" = ( +"bQ" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1380; icon_state = "door_locked"; @@ -718,35 +462,35 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/supply) -"abR" = ( +"bR" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad2" }, /turf/simulated/shuttle/floor, /area/shuttle/supply) -"abS" = ( +"bS" = ( /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/desert, /area/holodeck/source_picnicarea) -"abT" = ( +"bT" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abU" = ( +"bU" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"abV" = ( +"bV" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_theatre) -"abW" = ( +"bW" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, @@ -758,13 +502,13 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"abX" = ( +"bX" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"abY" = ( +"bY" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, @@ -776,7 +520,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"abZ" = ( +"bZ" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, @@ -785,7 +529,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"aca" = ( +"ca" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, @@ -797,13 +541,13 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acb" = ( +"cb" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acc" = ( +"cc" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, @@ -815,7 +559,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acd" = ( +"cd" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, @@ -824,7 +568,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"ace" = ( +"ce" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, @@ -833,140 +577,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acf" = ( -/obj/structure/bed/padded, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_w = 0; - pixel_x = 0; - pixel_y = 32 - }, -/obj/item/weapon/bedsheet/clown{ - desc = "A surprisingly soft linen bedsheet, except for the spots where it's crusty. Gross."; - name = "Dave's bedsheet" - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"acg" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"ach" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aci" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - docking_controller = "merc_base"; - landmark_tag = "merc_base"; - name = "The Hideaway" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"acj" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1331; - id_tag = "merc_shuttle_pump" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"ack" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"acl" = ( -/obj/structure/table/standard, -/obj/structure/closet/secure_closet/medical_wall{ - pixel_y = 32; - req_access = list(150) - }, -/obj/item/bodybag, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/weapon/reagent_containers/syringe, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"acm" = ( -/obj/machinery/sleep_console, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"acn" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"aco" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"acp" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1331; - id_tag = "merc_shuttle_pump" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"acq" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"acr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"acs" = ( +"cs" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1380; icon_state = "door_locked"; @@ -976,165 +587,58 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/supply) -"act" = ( +"ct" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 8 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"acu" = ( +"cu" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"acv" = ( +"cv" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"acw" = ( +"cw" = ( /obj/structure/table/woodentable/holotable, /obj/effect/floor_decal/carpet{ dir = 8 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acx" = ( +"cx" = ( /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acy" = ( +"cy" = ( /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acz" = ( +"cz" = ( /obj/structure/table/woodentable/holotable, /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acA" = ( +"cA" = ( /obj/effect/floor_decal/corner/green{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"acB" = ( +"cB" = ( /obj/effect/floor_decal/corner/green{ dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"acC" = ( -/obj/machinery/button/remote/blast_door{ - id = "syndieshutters_infirmary"; - name = "remote shutter control"; - pixel_x = -25 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"acD" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"acE" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_y = -32; - req_access = null - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"acF" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4; - start_pressure = 740.5 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"acG" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil/black, -/obj/item/weapon/storage/toolbox/syndicate, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"acH" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/hos, -/obj/effect/landmark{ - name = "Syndicate-Spawn" - }, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"acI" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1331; - id_tag = "merc_shuttle"; - pixel_x = 0; - pixel_y = 0; - req_access = list(150) - }, -/turf/simulated/shuttle/wall/dark, -/area/shuttle/mercenary) -"acJ" = ( -/turf/simulated/shuttle/wall/dark/hard_corner, -/area/shuttle/mercenary) -"acK" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1331; - id_tag = "merc_shuttle_inner"; - name = "Ship External Access"; - req_access = list(150) - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1331; - master_tag = "merc_shuttle"; - name = "interior access button"; - pixel_x = -25; - pixel_y = 0; - req_access = list(150) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"acL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"acM" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1331; - id_tag = "merc_shuttle_inner"; - name = "Ship External Access"; - req_access = list(150) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"acN" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"acO" = ( +"cO" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "supply_shuttle"; @@ -1145,21 +649,21 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/supply) -"acP" = ( +"cP" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"acQ" = ( +"cQ" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"acR" = ( +"cR" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -1169,7 +673,7 @@ }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"acS" = ( +"cS" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, @@ -1178,13 +682,13 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acT" = ( +"cT" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acU" = ( +"cU" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, @@ -1193,76 +697,40 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"acV" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"acW" = ( -/obj/structure/table/glass, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"acX" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/shuttle/wall/dark, -/area/shuttle/mercenary) -"acY" = ( -/obj/machinery/vending/food, -/turf/simulated/shuttle/wall/dark, -/area/shuttle/mercenary) -"acZ" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"ada" = ( +"da" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 1 }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"adb" = ( +"db" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 4 }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"adc" = ( +"dc" = ( /obj/machinery/door/window/holowindoor{ base_state = "right"; icon_state = "right" }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_courtroom) -"add" = ( +"dd" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"ade" = ( +"de" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adf" = ( +"df" = ( /obj/machinery/door/window/holowindoor{ base_state = "right"; icon_state = "right"; @@ -1270,10 +738,7 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_emptycourt) -"adg" = ( -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"adh" = ( +"dh" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1380; icon_state = "door_locked"; @@ -1287,14 +752,14 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/supply) -"adi" = ( +"di" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" }, /turf/simulated/shuttle/floor, /area/shuttle/supply) -"adj" = ( +"dj" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 8 @@ -1305,12 +770,12 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"adk" = ( +"dk" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"adl" = ( +"dl" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 4 @@ -1321,7 +786,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"adm" = ( +"dm" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, @@ -1337,7 +802,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"adn" = ( +"dn" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, @@ -1350,7 +815,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"ado" = ( +"do" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, @@ -1363,29 +828,13 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adp" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/hos, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_w = 0; - pixel_x = 32; - pixel_y = 0 - }, -/obj/effect/landmark{ - name = "Syndicate-Spawn" - }, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"adq" = ( +"dq" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-06" }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_theatre) -"adr" = ( +"dr" = ( /obj/effect/floor_decal/carpet{ dir = 5 }, @@ -1400,7 +849,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"ads" = ( +"ds" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, @@ -1413,14 +862,14 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adt" = ( +"dt" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adu" = ( +"du" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, @@ -1433,154 +882,115 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adv" = ( +"dv" = ( /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"adw" = ( +"dw" = ( /obj/effect/floor_decal/corner/green{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"adx" = ( +"dx" = ( /obj/effect/floor_decal/corner/green/full{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"ady" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 4; - icon_state = "pdoor0"; - id = "ship-lounge"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/mothership/breakroom) -"adz" = ( -/turf/unsimulated/wall{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "Sealed Door" - }, -/area/mothership/breakroom) -"adA" = ( +"dA" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 }, /turf/unsimulated/wall, /area/space) -"adB" = ( +"dB" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced, /turf/unsimulated/wall, /area/space) -"adC" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"adD" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/breakroom) -"adE" = ( +"dE" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/airless, /area/shuttle/supply) -"adF" = ( +"dF" = ( /turf/simulated/floor/holofloor/space, /area/holodeck/source_space) -"adG" = ( +"dG" = ( /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"adH" = ( +"dH" = ( /turf/simulated/floor/holofloor/wood, /area/holodeck/source_meetinghall) -"adI" = ( +"dI" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-06" }, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_meetinghall) -"adJ" = ( +"dJ" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_basketball) -"adK" = ( +"dK" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"adL" = ( +"dL" = ( /obj/structure/holostool, /obj/structure/window/reinforced/holowindow{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"adM" = ( +"dM" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"adN" = ( +"dN" = ( /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"adO" = ( +"dO" = ( /obj/structure/holohoop, /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"adP" = ( +"dP" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"adQ" = ( +"dQ" = ( /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/source_beach) -"adR" = ( +"dR" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_thunderdomecourt) -"adS" = ( +"dS" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"adT" = ( +"dT" = ( /obj/structure/holostool, /obj/structure/window/reinforced/holowindow{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"adU" = ( +"dU" = ( /obj/structure/table/holotable, /obj/machinery/readybutton{ pixel_y = 0 @@ -1590,7 +1000,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"adV" = ( +"dV" = ( /obj/structure/table/holotable, /obj/item/clothing/head/helmet/thunderdome, /obj/item/clothing/suit/armor/tdome/red, @@ -1601,44 +1011,35 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"adW" = ( +"dW" = ( /obj/structure/table/holotable, /obj/effect/floor_decal/corner/red/full{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"adX" = ( +"dX" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"adY" = ( +"dY" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"adZ" = ( +"dZ" = ( /turf/unsimulated/wall, /area/centcom/simulated/terminal) -"aea" = ( -/obj/machinery/porta_turret, -/turf/simulated/floor/reinforced/airless{ - name = "outer hull" - }, -/area/space) -"aeb" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/breakroom) -"aec" = ( +"ec" = ( /obj/effect/landmark{ name = "Holocarp Spawn Random" }, /turf/simulated/floor/holofloor/space, /area/holodeck/source_space) -"aed" = ( +"ed" = ( /obj/structure/flora/grass/both, /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"aee" = ( +"ee" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, @@ -1654,14 +1055,14 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"aef" = ( +"ef" = ( /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"aeg" = ( +"eg" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, @@ -1677,74 +1078,74 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"aeh" = ( +"eh" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"aei" = ( +"ei" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"aej" = ( +"ej" = ( /obj/effect/floor_decal/corner/red{ dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"aek" = ( +"ek" = ( /obj/effect/overlay/palmtree_r, /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/source_beach) -"ael" = ( +"el" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"aem" = ( +"em" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"aen" = ( +"en" = ( /obj/effect/floor_decal/corner/red{ dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"aeo" = ( +"eo" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"aep" = ( +"ep" = ( /obj/structure/flora/tree/pine, /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"aeq" = ( +"eq" = ( /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_meetinghall) -"aer" = ( +"er" = ( /obj/machinery/door/window/holowindoor{ name = "Red Team" }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_basketball) -"aes" = ( +"es" = ( /obj/item/clothing/glasses/sunglasses, /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/source_beach) -"aet" = ( +"et" = ( /obj/effect/overlay/palmtree_l, /obj/effect/overlay/coconut, /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/source_beach) -"aeu" = ( +"eu" = ( /obj/machinery/door/window/holowindoor{ name = "Red Team" }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_thunderdomecourt) -"aev" = ( +"ev" = ( /obj/machinery/door/window/holowindoor{ base_state = "right"; dir = 2; @@ -1753,180 +1154,56 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"aew" = ( +"ew" = ( /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"aex" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aey" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aez" = ( -/obj/structure/closet/secure_closet/medical_wall{ - pixel_x = 0; - 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/machinery/light{ - dir = 4 - }, -/obj/item/device/defib_kit/compact/combat/loaded, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aeA" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aeB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/nosmoking_1, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aeC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/weapon/surgical/surgicaldrill, -/obj/item/weapon/surgical/cautery, -/obj/item/weapon/surgical/retractor, -/obj/item/stack/nanopaste, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/mercenary) -"aeD" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aeE" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Surgery"; - req_access = list(150) - }, -/turf/simulated/shuttle/floor, -/area/shuttle/mercenary) -"aeF" = ( -/obj/structure/sign/department/operational, -/turf/simulated/shuttle/wall/dark, -/area/shuttle/mercenary) -"aeG" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/breakroom) -"aeH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/mercenary) -"aeI" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/closet/secure_closet/medical_wall{ - pixel_x = 32; - pixel_y = 0; - req_access = list(150) - }, -/obj/item/weapon/tank/anesthetic, -/obj/item/clothing/mask/breath/medical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/reagent_containers/glass/bottle/stoxin, -/obj/item/weapon/reagent_containers/glass/bottle/stoxin, -/turf/simulated/shuttle/floor, -/area/shuttle/mercenary) -"aeJ" = ( +"eJ" = ( /obj/structure/flora/tree/dead, /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"aeK" = ( +"eK" = ( /turf/simulated/floor/holofloor/lino, /area/holodeck/source_meetinghall) -"aeL" = ( +"eL" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_meetinghall) -"aeM" = ( +"eM" = ( /obj/item/weapon/beach_ball, /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/source_beach) -"aeN" = ( +"eN" = ( /obj/structure/window/reinforced/holowindow{ dir = 4 }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"aeO" = ( +"eO" = ( /obj/effect/floor_decal/corner/red/full{ dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"aeP" = ( +"eP" = ( /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"aeQ" = ( +"eQ" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"aeR" = ( +"eR" = ( /obj/structure/window/reinforced/holowindow{ dir = 8 }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"aeS" = ( -/turf/simulated/shuttle/floor, -/area/shuttle/mercenary) -"aeT" = ( +"eT" = ( /obj/structure/flora/grass/green, /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"aeU" = ( +"eU" = ( /obj/effect/floor_decal/carpet{ dir = 5 }, @@ -1941,7 +1218,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"aeV" = ( +"eV" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 8 @@ -1954,14 +1231,14 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"aeW" = ( +"eW" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"aeX" = ( +"eX" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 4 @@ -1974,143 +1251,113 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"aeY" = ( +"eY" = ( /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"aeZ" = ( +"eZ" = ( /obj/effect/floor_decal/corner/red{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afa" = ( +"fa" = ( /obj/item/weapon/beach_ball/holoball, /obj/effect/floor_decal/corner/red{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afb" = ( +"fb" = ( /obj/effect/floor_decal/corner/red/full{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afc" = ( +"fc" = ( /obj/item/weapon/inflatable_duck, /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/source_beach) -"afd" = ( +"fd" = ( /obj/structure/window/reinforced/holowindow/disappearing, /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afe" = ( +"fe" = ( /obj/structure/window/reinforced/holowindow/disappearing, /obj/effect/floor_decal/corner/red{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"aff" = ( +"ff" = ( /obj/structure/window/reinforced/holowindow/disappearing, /obj/effect/floor_decal/corner/red/full{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afg" = ( +"fg" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afh" = ( +"fh" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afi" = ( +"fi" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afj" = ( +"fj" = ( /obj/effect/floor_decal/corner/green{ dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afk" = ( -/obj/structure/shuttle/engine/heater{ - icon_state = "heater"; - dir = 4 - }, -/turf/simulated/shuttle/plating/airless, -/area/shuttle/mercenary) -"afl" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/breakroom) -"afm" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = -32; - pixel_y = 0; - subspace_transmission = 1; - syndie = 1 - }, -/obj/structure/closet, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"afn" = ( +"fn" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 8 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afo" = ( +"fo" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afp" = ( +"fp" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 4 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afq" = ( +"fq" = ( /obj/effect/floor_decal/corner/green/full{ dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afr" = ( +"fr" = ( /obj/effect/floor_decal/corner/green{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afs" = ( +"fs" = ( /obj/effect/floor_decal/corner/green/full{ dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"aft" = ( +"ft" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 }, @@ -2119,7 +1366,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afu" = ( +"fu" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 }, @@ -2128,7 +1375,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afv" = ( +"fv" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 }, @@ -2137,71 +1384,57 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afw" = ( +"fw" = ( /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afx" = ( +"fx" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afy" = ( -/obj/structure/closet, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"afz" = ( +"fz" = ( /obj/effect/floor_decal/corner/green{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afA" = ( +"fA" = ( /obj/effect/floor_decal/corner/green{ dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afB" = ( +"fB" = ( /obj/effect/floor_decal/corner/green{ dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afC" = ( +"fC" = ( /obj/effect/floor_decal/corner/green{ dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afD" = ( +"fD" = ( /obj/effect/floor_decal/corner/green{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afE" = ( +"fE" = ( /obj/effect/floor_decal/corner/green/full{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afF" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"afG" = ( +"fG" = ( /obj/structure/flora/grass/brown, /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"afH" = ( +"fH" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 4 @@ -2210,7 +1443,7 @@ dir = 8 }, /area/holodeck/source_meetinghall) -"afI" = ( +"fI" = ( /obj/machinery/door/window/holowindoor{ base_state = "right"; icon_state = "right"; @@ -2218,18 +1451,18 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_basketball) -"afJ" = ( +"fJ" = ( /obj/effect/floor_decal/corner/green{ dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afK" = ( +"fK" = ( /turf/unsimulated/beach/sand{ icon_state = "beach" }, /area/holodeck/source_beach) -"afL" = ( +"fL" = ( /obj/machinery/door/window/holowindoor{ base_state = "right"; icon_state = "right"; @@ -2237,20 +1470,20 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_thunderdomecourt) -"afM" = ( +"fM" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"afN" = ( +"fN" = ( /obj/machinery/door/window/holowindoor{ dir = 1; name = "Green Corner" }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"afO" = ( +"fO" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ dir = 8 @@ -2261,12 +1494,12 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afP" = ( +"fP" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afQ" = ( +"fQ" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ @@ -2277,14 +1510,14 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afR" = ( +"fR" = ( /turf/simulated/floor/holofloor/beach/water, /area/holodeck/source_beach) -"afS" = ( +"fS" = ( /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afT" = ( +"fT" = ( /obj/structure/holohoop{ dir = 1 }, @@ -2293,18 +1526,18 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afU" = ( +"fU" = ( /obj/effect/floor_decal/corner/green/full{ dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afV" = ( +"fV" = ( /obj/structure/table/holotable, /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afW" = ( +"fW" = ( /obj/structure/table/holotable, /obj/item/clothing/head/helmet/thunderdome, /obj/item/clothing/suit/armor/tdome/green, @@ -2315,7 +1548,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afX" = ( +"fX" = ( /obj/structure/table/holotable, /obj/machinery/readybutton{ pixel_y = 0 @@ -2325,7 +1558,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afY" = ( +"fY" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove{ icon_state = "boxinggreen"; @@ -2333,573 +1566,126 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"afZ" = ( +"fZ" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/unsimulated/wall, /area/space) -"aga" = ( +"ga" = ( /turf/simulated/floor/holofloor/wood, /area/holodeck/holodorm/source_basic) -"agb" = ( +"gb" = ( /obj/structure/bed/chair/holochair{ dir = 4 }, /turf/simulated/floor/holofloor/wood, /area/holodeck/holodorm/source_basic) -"agc" = ( +"gc" = ( /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/wood, /area/holodeck/holodorm/source_basic) -"agd" = ( +"gd" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, /turf/simulated/floor/holofloor/wood, /area/holodeck/holodorm/source_basic) -"age" = ( +"ge" = ( /obj/effect/overlay/palmtree_r, /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/holodorm/source_beach) -"agf" = ( +"gf" = ( /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/holodorm/source_beach) -"agg" = ( +"gg" = ( /obj/effect/overlay/coconut, /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/holodorm/source_beach) -"agh" = ( +"gh" = ( /obj/item/clothing/glasses/sunglasses, /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/holodorm/source_beach) -"agi" = ( +"gi" = ( /obj/effect/overlay/palmtree_l, /turf/simulated/floor/holofloor/beach/sand, /area/holodeck/holodorm/source_beach) -"agj" = ( +"gj" = ( /obj/structure/flora/grass/brown, /obj/structure/flora/tree/dead, /turf/simulated/floor/holofloor/snow, /area/holodeck/holodorm/source_snow) -"agk" = ( +"gk" = ( /turf/simulated/floor/holofloor/snow, /area/holodeck/holodorm/source_snow) -"agl" = ( +"gl" = ( /turf/unsimulated/beach/sand{ icon_state = "beach" }, /area/holodeck/holodorm/source_beach) -"agm" = ( +"gm" = ( /obj/effect/landmark{ name = "Wolfgirl Spawn" }, /turf/simulated/floor/holofloor/snow, /area/holodeck/holodorm/source_snow) -"agn" = ( +"gn" = ( /obj/structure/flora/grass/brown, /turf/simulated/floor/holofloor/snow, /area/holodeck/holodorm/source_snow) -"ago" = ( +"go" = ( /obj/structure/flora/grass/green, /obj/structure/flora/tree/pine, /turf/simulated/floor/holofloor/snow, /area/holodeck/holodorm/source_snow) -"agp" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/space, -/area/space) -"agq" = ( +"gq" = ( /obj/structure/bed/holobed, /turf/simulated/floor/holofloor/wood, /area/holodeck/holodorm/source_basic) -"agr" = ( +"gr" = ( /turf/simulated/floor/holofloor/beach/water, /area/holodeck/holodorm/source_beach) -"ags" = ( +"gs" = ( /obj/structure/flora/grass/green, /turf/simulated/floor/holofloor/snow, /area/holodeck/holodorm/source_snow) -"agt" = ( +"gt" = ( /obj/structure/flora/grass/both, /turf/simulated/floor/holofloor/snow, /area/holodeck/holodorm/source_snow) -"agu" = ( -/turf/unsimulated/wall, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agv" = ( -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agw" = ( -/obj/structure/closet/wardrobe/pink, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agx" = ( -/obj/structure/closet/wardrobe/white, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agy" = ( -/obj/structure/closet/wardrobe/green, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agz" = ( -/obj/structure/closet/wardrobe/grey, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agA" = ( -/obj/structure/closet/wardrobe/black, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agB" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agC" = ( -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agD" = ( -/obj/structure/closet/crate, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 1 - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agE" = ( -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agF" = ( -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 1 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 1 - }, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/regular, -/obj/structure/table/reinforced, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"agG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/department/medbay, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"agH" = ( -/obj/structure/medical_stand, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/mercenary) -"agI" = ( -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/structure/table/reinforced, -/obj/item/bodybag/cryobag, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"agJ" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/structure/table/standard, -/obj/item/weapon/surgical/scalpel, -/obj/item/weapon/surgical/bonesetter, -/obj/item/weapon/surgical/bonegel{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/stack/medical/advanced/bruise_pack, -/turf/simulated/shuttle/floor, -/area/shuttle/mercenary) -"agK" = ( -/obj/machinery/optable, -/turf/simulated/shuttle/floor, -/area/shuttle/mercenary) -"agL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "syndieshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"agM" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/m380, -/obj/item/ammo_magazine/m380, -/obj/item/ammo_magazine/m380, -/obj/item/ammo_magazine/m380, -/obj/item/ammo_magazine/m380, -/obj/item/weapon/gun/projectile/giskard, -/obj/item/clothing/accessory/holster, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"agN" = ( +"gN" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/holofloor/desert, /area/holodeck/holodorm/source_desert) -"agO" = ( +"gO" = ( /turf/simulated/floor/holofloor/desert, /area/holodeck/holodorm/source_desert) -"agP" = ( +"gP" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/holofloor/desert, /area/holodeck/holodorm/source_desert) -"agQ" = ( +"gQ" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/holofloor/grass, /area/holodeck/holodorm/source_garden) -"agR" = ( +"gR" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/holofloor/grass, /area/holodeck/holodorm/source_garden) -"agS" = ( +"gS" = ( /turf/simulated/floor/holofloor/reinforced, /area/holodeck/holodorm/source_off) -"agT" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agU" = ( -/obj/structure/closet/wardrobe/suit, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agV" = ( -/obj/item/weapon/stool/padded, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agW" = ( -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 1 - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"agX" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/breakroom) -"agY" = ( -/obj/machinery/recharger, -/obj/structure/table/steel_reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"agZ" = ( -/obj/machinery/vending/cigarette{ - name = "hacked 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/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aha" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "syndieshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"ahb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "syndieshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"ahc" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "syndieshutters"; - name = "remote shutter control"; - req_access = list(150) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"ahd" = ( -/obj/structure/sign/department/bridge, -/turf/simulated/shuttle/wall/dark/hard_corner, -/area/shuttle/mercenary) -"ahe" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"ahf" = ( -/obj/structure/bed/chair, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"ahg" = ( +"hg" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/landmark{ name = "Catgirl Spawn" }, /turf/simulated/floor/holofloor/grass, /area/holodeck/holodorm/source_garden) -"ahh" = ( -/obj/item/weapon/stool/padded, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahi" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahj" = ( -/obj/structure/closet/wardrobe/xenos, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahk" = ( -/obj/effect/landmark{ - name = "Trader" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahl" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/breakroom) -"ahm" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/breakroom) -"ahn" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/breakroom) -"aho" = ( -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"ahp" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"ahq" = ( -/obj/machinery/status_display{ - pixel_y = 29 - }, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"ahr" = ( -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "qm_warehouse"; - name = "Warehouse Shutters" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 1 - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahs" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/weapon/surgical/circular_saw, -/obj/item/weapon/surgical/FixOVein{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/weapon/surgical/hemostat, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/item/weapon/surgical/surgicaldrill, -/turf/simulated/shuttle/floor, -/area/shuttle/mercenary) -"aht" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/shuttle/floor/red, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahu" = ( -/obj/machinery/door/airlock/silver{ - name = "Toilet" - }, -/turf/simulated/shuttle/floor/white, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahv" = ( -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"ahw" = ( -/obj/effect/floor_decal/rust, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "mfloor5" - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"ahx" = ( +"hx" = ( /turf/simulated/floor/holofloor/wood, /area/holodeck/holodorm/source_seating) -"ahy" = ( +"hy" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, @@ -2911,14 +1697,14 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/holodorm/source_seating) -"ahz" = ( +"hz" = ( /obj/structure/bed/chair/holochair, /obj/effect/floor_decal/carpet{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/holodorm/source_seating) -"ahA" = ( +"hA" = ( /obj/effect/floor_decal/carpet{ dir = 1 }, @@ -2930,50 +1716,30 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/holodorm/source_seating) -"ahB" = ( +"hB" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/holodorm/source_boxing) -"ahC" = ( +"hC" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/holodorm/source_boxing) -"ahD" = ( +"hD" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/holodorm/source_boxing) -"ahE" = ( +"hE" = ( /obj/effect/floor_decal/corner/green{ dir = 6 }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/holodorm/source_boxing) -"ahF" = ( +"hF" = ( /turf/simulated/floor/holofloor/space, /area/holodeck/holodorm/source_space) -"ahG" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/white, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahH" = ( -/turf/simulated/shuttle/floor, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahI" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"ahJ" = ( +"hJ" = ( /obj/structure/bed/chair/holochair{ dir = 4 }, @@ -2982,11 +1748,11 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/holodorm/source_seating) -"ahK" = ( +"hK" = ( /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/carpet, /area/holodeck/holodorm/source_seating) -"ahL" = ( +"hL" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, @@ -2995,30 +1761,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/holodorm/source_seating) -"ahM" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/shuttle/floor/white, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahN" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/shuttle/floor, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahO" = ( +"hO" = ( /obj/effect/floor_decal/carpet{ dir = 8 }, @@ -3028,14 +1771,14 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/holodorm/source_seating) -"ahP" = ( +"hP" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/holodeck/holodorm/source_seating) -"ahQ" = ( +"hQ" = ( /obj/effect/floor_decal/carpet{ dir = 4 }, @@ -3045,7 +1788,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/holodorm/source_seating) -"ahR" = ( +"hR" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove{ icon_state = "boxinggreen"; @@ -3053,6547 +1796,38 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/holodorm/source_boxing) -"ahS" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/deluxe, -/turf/simulated/shuttle/floor, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahT" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/shuttle/floor, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ahU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/department/telecoms, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"ahV" = ( -/obj/structure/closet, -/turf/simulated/shuttle/floor{ - icon_state = "floor_yellow" - }, -/area/shuttle/mercenary) -"ahW" = ( -/obj/structure/closet, -/obj/item/weapon/reagent_containers/food/snacks/liquidfood, -/obj/item/weapon/reagent_containers/food/snacks/liquidfood, -/obj/item/weapon/reagent_containers/food/snacks/liquidfood, -/obj/item/weapon/reagent_containers/food/snacks/liquidfood, -/turf/simulated/shuttle/floor{ - icon_state = "floor_yellow" - }, -/area/shuttle/mercenary) -"ahX" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/structure/closet, -/turf/simulated/shuttle/floor{ - icon_state = "floor_yellow" - }, -/area/shuttle/mercenary) -"ahY" = ( -/obj/machinery/computer/shuttle_control/multi/mercenary{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"ahZ" = ( -/obj/machinery/media/jukebox, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"aia" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 1; - icon_state = "pdoor0"; - id = "ship-lounge"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/mothership/breakroom) -"aib" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"aic" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"aid" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"aie" = ( -/obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"aif" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"aig" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor_yellow" - }, -/area/shuttle/mercenary) -"aih" = ( -/obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"aii" = ( -/obj/machinery/computer/security/nuclear{ - dir = 4; - icon_state = "computer" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aij" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"aik" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "syndieshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"ail" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "smindicate"; - name = "ship lockdown control"; - pixel_x = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aim" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "trade_shuttle_bay"; - name = "shuttle bay controller"; - pixel_x = 25; - pixel_y = 0; - tag_door = "trade_shuttle_bay_door" - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"ain" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 1; - icon_state = "pdoor0"; - id = "ship-lounge"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/mothership/breakroom) -"aio" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"aip" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/codex, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"aiq" = ( -/obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"air" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"ais" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 0; - pixel_y = -32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"ait" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aiu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"aiv" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 0; - pixel_y = -32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aiw" = ( -/obj/machinery/teleport/station, -/turf/simulated/shuttle/floor{ - icon_state = "floor_yellow" - }, -/area/shuttle/mercenary) -"aix" = ( -/obj/structure/frame/computer, -/turf/simulated/shuttle/floor{ - icon_state = "floor_yellow" - }, -/area/shuttle/mercenary) -"aiy" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "trade_shuttle_bay_door"; - locked = 1 - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/syndicate_mothership{ - name = "\improper Trader Base" - }) -"aiz" = ( -/obj/machinery/teleport/hub, -/turf/simulated/shuttle/floor{ - icon_state = "floor_yellow" - }, -/area/shuttle/mercenary) -"aiA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"aiB" = ( -/obj/machinery/vending/snack{ - name = "hacked Getmore Chocolate Corp"; - prices = list() - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aiC" = ( -/turf/simulated/shuttle/wall/dark/hard_corner, -/area/shuttle/trade) -"aiD" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "trade_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aiE" = ( -/turf/simulated/shuttle/wall/dark, -/area/shuttle/trade) -"aiF" = ( -/obj/machinery/washing_machine, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aiG" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"aiH" = ( -/obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"aiI" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "tradestarshutters"; - 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/trade) -"aiJ" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "tradestarshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/trade) -"aiK" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "tradestarshutters"; - 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/trade) -"aiL" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 32 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"aiM" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aiN" = ( -/obj/structure/shuttle/engine/heater{ - icon_state = "heater"; - dir = 4 - }, -/turf/simulated/shuttle/plating/airless, -/area/shuttle/trade) -"aiO" = ( -/obj/fiftyspawner/rods, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aiP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/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, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"aiQ" = ( -/obj/machinery/door/airlock/silver{ - name = "Toilet" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"aiR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aiS" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aiT" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/rd, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aiU" = ( -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aiV" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aiW" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"aiX" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"aiY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"aiZ" = ( -/obj/machinery/sleep_console{ - dir = 8 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aja" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajb" = ( -/obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"ajc" = ( -/obj/structure/mirror{ - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"ajd" = ( -/obj/machinery/door/airlock/centcom{ - name = "Equipment Storage"; - req_one_access = list(150) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"aje" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "tradestarshutters"; - 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/trade) -"ajf" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajg" = ( -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajh" = ( -/obj/machinery/door/airlock/silver{ - name = "Sleeping" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aji" = ( -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"ajj" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"ajk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"ajl" = ( -/obj/machinery/atm{ - pixel_x = -32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajm" = ( -/obj/machinery/suit_cycler/syndicate, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajn" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajo" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajp" = ( -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/weapon/storage/firstaid/o2{ - layer = 2.8; - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/storage/box/masks{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/fire{ - layer = 2.9; - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -2 - }, -/obj/item/weapon/reagent_containers/blood/empty, -/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/structure/closet/medical_wall{ - pixel_y = 32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajq" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"ajs" = ( -/obj/item/weapon/tool/screwdriver, -/obj/effect/spawner/newbomb/timer/syndicate, -/obj/structure/table/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"ajt" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"aju" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "tradestarshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/trade) -"ajv" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajw" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/weapon/pen{ - pixel_y = 4 - }, -/obj/machinery/light, -/obj/structure/table/glass, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajx" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/hos, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajy" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"ajz" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/glasses/square, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"ajA" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/inflatable_duck, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajB" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/mhydrogen, -/obj/item/stack/material/diamond, -/obj/item/stack/material/sandstone, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajC" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/rig/internalaffairs, -/obj/item/clothing/head/helmet/space/void/wizard, -/obj/item/clothing/suit/space/void/wizard, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajD" = ( -/obj/structure/table/steel_reinforced, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajE" = ( -/obj/structure/table/steel_reinforced, -/obj/random/toolbox, -/obj/random/toolbox, -/obj/random/toolbox, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajF" = ( -/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/trade) -"ajG" = ( -/obj/vehicle/train/engine, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajH" = ( -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/trade) -"ajI" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; - req_access = list(160); - req_one_access = newlist() - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajJ" = ( -/obj/machinery/optable, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajK" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"ajL" = ( -/obj/machinery/vending/coffee{ - name = "hacked Hot Drinks machine"; - prices = list() - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"ajM" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_y = -32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajN" = ( -/obj/machinery/button/remote/blast_door{ - id = "tradestarshutters"; - name = "remote shutter control"; - pixel_x = 30; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajO" = ( -/obj/structure/table/steel_reinforced, -/obj/random/firstaid, -/obj/random/firstaid, -/obj/random/firstaid, -/obj/random/firstaid, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajQ" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajS" = ( -/obj/structure/table/steel_reinforced, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/weapon/weldpack, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/trade) -"ajU" = ( -/obj/vehicle/train/trolley, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajV" = ( -/obj/machinery/light, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajW" = ( -/obj/structure/closet/wardrobe/captain, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajX" = ( -/obj/machinery/door/airlock/silver{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"ajY" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ajZ" = ( -/obj/structure/table/steel_reinforced, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aka" = ( -/obj/machinery/door/window/southleft{ - name = "Cargo Hold"; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akb" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/coin/uranium, -/obj/item/weapon/coin/silver, -/obj/item/weapon/coin/platinum, -/obj/item/weapon/coin/phoron, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/diamond, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akc" = ( -/obj/machinery/door/window/southright{ - name = "Cargo Hold"; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akd" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/cell/high, -/obj/item/weapon/cell/high, -/obj/item/weapon/cell/hyper, -/obj/item/weapon/cell/potato, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ake" = ( -/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/trade) -"akf" = ( -/obj/structure/table/standard, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/clothing/mask/surgical, -/obj/item/weapon/surgical/retractor{ - pixel_x = 0; - pixel_y = 6 - }, -/obj/item/weapon/surgical/scalpel, -/obj/item/weapon/surgical/surgicaldrill, -/obj/item/weapon/surgical/circular_saw, -/obj/item/stack/nanopaste, -/obj/item/weapon/surgical/hemostat{ - pixel_y = 4 - }, -/obj/item/weapon/surgical/cautery{ - pixel_y = 4 - }, -/obj/item/weapon/surgical/FixOVein{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/item/weapon/surgical/bonesetter, -/obj/item/weapon/surgical/bonegel{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akg" = ( -/obj/structure/medical_stand, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akh" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "tradebridgeshutters"; - 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/trade) -"aki" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "tradebridgeshutters"; - 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/trade) -"akj" = ( -/obj/machinery/vending/coffee, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akk" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akl" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/trade) -"akm" = ( -/obj/structure/closet/crate/secure/weapon, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akn" = ( -/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/trade) -"ako" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/computer/arcade/battle{ - dir = 4 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akp" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade) -"akq" = ( -/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/trade) -"akr" = ( -/obj/structure/mirror{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade) -"aks" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade) -"akt" = ( -/obj/machinery/vending/snack{ - name = "hacked Getmore Chocolate Corp"; - prices = list() - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aku" = ( -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/trade) -"akv" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akw" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "tradebridgeshutters"; - 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/trade) -"akx" = ( -/obj/structure/frame/computer, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aky" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/kiddieplaque{ - desc = "A plaque commemorating the construction of the cargo ship Beruang."; - name = "Beruang"; - pixel_x = 32 - }, -/mob/living/simple_mob/animal/passive/dog/tamaskan/Spice, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/trade) -"akz" = ( -/obj/machinery/door/airlock/silver{ - name = "Toilet" - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade) -"akA" = ( -/obj/machinery/door/airlock/silver{ - name = "Restroom" - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade) -"akB" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akC" = ( -/obj/machinery/vending/cigarette{ - name = "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/shuttle/floor/black, -/area/shuttle/trade) -"akD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/largecrate/animal/cat, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akE" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/structure/largecrate/animal/cow, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akF" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akG" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/item/device/kit/paint/ripley/death, -/obj/item/device/kit/paint/ripley/flames_blue, -/obj/item/device/kit/paint/ripley/flames_red, -/obj/item/device/kit/paint/ripley, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akH" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"akI" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/structure/largecrate/hoverpod, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/mecha/working/ripley/mining, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akK" = ( -/obj/machinery/door/window/westright{ - name = "Storefront"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade"; - name = "Shop Shutters"; - opacity = 0 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/trade) -"akL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/trade) -"akM" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "tradebridgeshutters"; - 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/trade) -"akN" = ( -/obj/machinery/computer/shuttle_control/multi/trade{ - dir = 4 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/trade) -"akP" = ( -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access = list(160); - req_one_access = newlist() - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akQ" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/largecrate/animal/corgi, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akS" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/largecrate/animal/corgi, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akT" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/closet/crate/internals, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akU" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning, -/obj/item/device/kit/paint/gygax/darkgygax, -/obj/item/device/kit/paint/gygax/recitence, -/obj/item/device/kit/paint/durand, -/obj/item/device/kit/paint/durand/phazon, -/obj/item/device/kit/paint/durand/seraph, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akV" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"akW" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/largecrate/hoverpod, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/mecha/working/ripley/firefighter, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"akY" = ( -/obj/machinery/door/window/westleft{ - name = "Storefront"; - req_access = list(160) - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade"; - name = "Shop Shutters"; - opacity = 0 - }, -/obj/structure/table/marble, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/trade) -"akZ" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ala" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "tradebridgeshutters"; - name = "remote shutter control"; - pixel_x = 30; - req_access = list(150) - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-09"; - name = "Esteban"; - pixel_y = 8 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alb" = ( -/obj/machinery/vending/assist{ - contraband = null; - name = "Old Vending Machine"; - products = list(/obj/item/device/assembly/prox_sensor = 5, /obj/item/device/assembly/signaler = 4, /obj/item/device/assembly/infra = 4, /obj/item/device/assembly/prox_sensor = 4, /obj/item/weapon/handcuffs = 8, /obj/item/device/flash = 4, /obj/item/weapon/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alc" = ( -/obj/structure/closet{ - name = "custodial" - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ald" = ( -/obj/machinery/vending/sovietsoda, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ale" = ( -/obj/machinery/light, -/obj/structure/table/standard, -/obj/item/weapon/soap, -/obj/item/weapon/towel{ - color = "#0000FF" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alf" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alg" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alh" = ( -/obj/machinery/door/window/westleft{ - name = "Storefront"; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ali" = ( -/obj/machinery/button/remote/blast_door{ - id = "trade"; - name = "Shop Shutters"; - pixel_x = 0; - pixel_y = -26 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/trade) -"alj" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "tradebridgeshutters"; - 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/trade) -"alk" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "tradebridgeshutters"; - 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/trade) -"all" = ( -/obj/machinery/vending/boozeomat{ - req_access = null - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alm" = ( -/obj/structure/table/standard, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aln" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alo" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"alp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/contraband/poster, -/obj/item/weapon/contraband/poster, -/obj/item/weapon/contraband/poster, -/obj/item/weapon/contraband/poster, -/obj/item/weapon/contraband/poster, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alq" = ( -/obj/machinery/door/window/northleft{ - name = "Cargo Hold"; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alr" = ( -/obj/structure/table/steel_reinforced, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"als" = ( -/obj/machinery/door/window/northright{ - name = "Cargo Hold"; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alt" = ( -/obj/structure/table/steel_reinforced, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/blue, -/obj/item/clothing/gloves/brown, -/obj/item/clothing/gloves/captain, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/gloves/green, -/obj/item/clothing/gloves/grey, -/obj/item/clothing/gloves/light_brown, -/obj/item/clothing/gloves/purple, -/obj/item/clothing/gloves/rainbow, -/obj/item/clothing/gloves/swat, -/obj/item/clothing/gloves/white, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alu" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 2; - start_pressure = 740.5 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alv" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_y = 32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alw" = ( -/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/trade) -"alx" = ( -/obj/machinery/vending/sovietsoda, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"aly" = ( -/obj/machinery/button/remote/blast_door{ - id = "tradeportshutters"; - name = "remote shutter control"; - pixel_x = 30; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alz" = ( -/obj/structure/table/steel_reinforced, -/obj/random/contraband, -/obj/random/contraband, -/obj/random/contraband, -/obj/random/contraband, -/obj/random/contraband, -/obj/random/contraband, -/obj/item/weapon/bikehorn, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alB" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alD" = ( -/obj/structure/table/steel_reinforced, -/obj/item/clothing/head/bearpelt, -/obj/item/clothing/head/bowler, -/obj/item/clothing/head/caphat/cap, -/obj/item/clothing/head/beaverhat, -/obj/item/clothing/head/beret/centcom, -/obj/item/clothing/head/beret/sec, -/obj/item/clothing/head/collectable/kitty, -/obj/item/clothing/head/collectable/kitty, -/obj/item/clothing/head/collectable/kitty, -/obj/item/clothing/head/collectable/rabbitears, -/obj/item/clothing/head/collectable/rabbitears, -/obj/item/clothing/head/collectable/rabbitears, -/obj/item/clothing/head/collectable/petehat, -/obj/item/clothing/head/collectable/pirate, -/obj/item/clothing/head/collectable/wizard, -/obj/item/clothing/head/collectable/xenom, -/obj/item/clothing/head/cowboy_hat, -/obj/item/clothing/head/pin/flower/violet, -/obj/item/clothing/head/pin/flower/blue, -/obj/item/clothing/head/pin/flower/orange, -/obj/item/clothing/head/pin/flower/pink, -/obj/item/clothing/head/justice, -/obj/item/clothing/head/justice/blue, -/obj/item/clothing/head/justice/green, -/obj/item/clothing/head/justice/pink, -/obj/item/clothing/head/justice/yellow, -/obj/item/clothing/head/philosopher_wig, -/obj/item/clothing/head/plaguedoctorhat, -/obj/item/clothing/head/xenos, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alE" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter, -/obj/structure/largecrate/animal/cat, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alF" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access = list(160); - req_one_access = newlist() - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "tradeportshutters"; - 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/trade) -"alH" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_x = 32; - pixel_y = 0; - req_access = null - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"alI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bookcase, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alJ" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alK" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"alL" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"alM" = ( -/obj/structure/table/steel_reinforced, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/random/action_figure, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alN" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/lipstick/black, -/obj/item/weapon/lipstick/jade, -/obj/item/weapon/lipstick/purple, -/obj/item/weapon/lipstick, -/obj/item/weapon/lipstick/random, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alO" = ( -/obj/structure/table/steel_reinforced, -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/storage/white_vest, -/obj/item/clothing/accessory/storage/white_vest, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/scarf/white, -/obj/item/clothing/accessory/scarf/lightblue, -/obj/item/clothing/accessory/scarf/red, -/obj/item/clothing/accessory/scarf/purple, -/obj/item/clothing/accessory/armband/science, -/obj/item/clothing/accessory/armband/med, -/obj/item/clothing/accessory/armband/engine, -/obj/item/clothing/accessory/armband/cargo, -/obj/item/clothing/accessory/armband, -/obj/item/clothing/accessory/medal/nobel_science, -/obj/item/clothing/accessory/medal/silver, -/obj/item/clothing/accessory/medal/gold, -/obj/item/clothing/accessory/medal/bronze_heart, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alP" = ( -/obj/structure/table/steel_reinforced, -/obj/item/clothing/under/cheongsam, -/obj/item/clothing/under/hosformalmale, -/obj/item/clothing/under/hosformalfem, -/obj/item/clothing/under/harness, -/obj/item/clothing/under/gladiator, -/obj/item/clothing/under/ert, -/obj/item/clothing/under/schoolgirl, -/obj/item/clothing/under/redcoat, -/obj/item/clothing/under/sexymime, -/obj/item/clothing/under/sexyclown, -/obj/item/clothing/under/soviet, -/obj/item/clothing/under/space, -/obj/item/clothing/under/swimsuit/stripper/mankini, -/obj/item/clothing/under/suit_jacket/female, -/obj/item/clothing/under/rank/psych/turtleneck, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/syndicate/tacticool, -/obj/item/clothing/under/syndicate/tacticool, -/obj/item/clothing/under/dress/sailordress, -/obj/item/clothing/under/dress/redeveninggown, -/obj/item/clothing/under/dress/dress_saloon, -/obj/item/clothing/under/dress/blacktango, -/obj/item/clothing/under/dress/blacktango/alt, -/obj/item/clothing/under/dress/dress_orange, -/obj/item/clothing/under/dress/maid/janitor, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alQ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/clothing/suit/hgpirate, -/obj/item/clothing/suit/imperium_monk, -/obj/item/clothing/suit/leathercoat, -/obj/item/clothing/suit/justice, -/obj/item/clothing/suit/justice, -/obj/item/clothing/suit/justice, -/obj/item/clothing/suit/justice, -/obj/item/clothing/suit/justice, -/obj/item/clothing/suit/pirate, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alR" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/closet/crate/solar, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "tradeportshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/plating, -/area/shuttle/trade) -"alT" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = list(160); - req_one_access = newlist() - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"alU" = ( -/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/trade) -"alV" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"alW" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"alX" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "tradeportshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/plating, -/area/shuttle/trade) -"alY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "tradeportshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/plating, -/area/shuttle/trade) -"alZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "tradeportshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/plating, -/area/shuttle/trade) -"ama" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/machinery/atm{ - pixel_x = -32 - }, -/obj/machinery/meter, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amb" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1331; - master_tag = "trade2_control"; - pixel_x = -22; - pixel_y = -32; - req_one_access = list(150) - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amc" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amd" = ( -/obj/structure/table/standard, -/obj/item/clothing/suit/space/void/merc, -/obj/item/clothing/suit/space/void/merc, -/obj/item/clothing/suit/space/void/merc, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/head/helmet/space/void/merc, -/obj/item/clothing/head/helmet/space/void/merc, -/obj/item/clothing/head/helmet/space/void/merc, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ame" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amf" = ( -/obj/structure/table/standard, -/obj/item/stack/material/steel{ - amount = 2 - }, -/obj/item/stack/material/steel{ - amount = 2 - }, -/obj/item/stack/material/glass{ - amount = 15 - }, -/obj/item/stack/material/glass{ - amount = 15 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amg" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/captain, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amh" = ( -/obj/structure/table/glass, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -35 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ami" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amj" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"amk" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"aml" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-10" - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade) -"amm" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/door/airlock/glass_external{ - frequency = 1331; - icon_state = "door_locked"; - id_tag = "trade2_shuttle_inner"; - locked = 1; - name = "Ship Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amn" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1331; - icon_state = "door_locked"; - id_tag = "trade2_shuttle_inner"; - locked = 1; - name = "Ship Hatch" - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amo" = ( -/obj/machinery/vending/engivend, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amp" = ( -/obj/machinery/vending/tool, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amq" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1331; - id_tag = "trade2_vent" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1331; - id_tag = "trade2_control"; - pixel_x = -24; - req_access = list(150); - tag_airpump = "trade2_vent"; - tag_chamber_sensor = "trade2_sensor"; - tag_exterior_door = "trade2_shuttle_outer"; - tag_interior_door = "trade2_shuttle_inner" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amr" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/airlock_sensor{ - frequency = 1331; - id_tag = "trade2_sensor"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1331; - id_tag = "trade2_vent" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"ams" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1331; - icon_state = "door_locked"; - id_tag = "trade2_shuttle_outer"; - locked = 1; - name = "Ship Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amt" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1331; - master_tag = "trade2_control"; - pixel_x = 24; - req_one_access = list(150) - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1331; - icon_state = "door_locked"; - id_tag = "trade2_shuttle_outer"; - locked = 1; - name = "Ship Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"amu" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"amv" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - tiles = 0 - }, -/turf/space, -/area/space) -"amw" = ( -/turf/simulated/shuttle/wall/dark/hard_corner, -/area/wizard_station) -"amx" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"amy" = ( -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/structure/table/marble, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/wizard_station) -"amz" = ( -/obj/item/weapon/reagent_containers/food/drinks/bottle/pwine{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/structure/table/marble, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/wizard_station) -"amA" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/wizard_station) -"amB" = ( -/obj/machinery/computer/arcade/battle, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amC" = ( -/obj/machinery/computer/arcade/orion_trail, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amD" = ( -/obj/machinery/microwave{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/structure/table/marble, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/wizard_station) -"amE" = ( -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/wizard_station) -"amF" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - on = 0; - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/toy/figure/ninja, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/wizard_station) -"amG" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/rd, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/wizard_station) -"amH" = ( -/obj/structure/bed/chair/wood/wings, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = 30 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amI" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amJ" = ( -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amK" = ( -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/marble, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/wizard_station) -"amL" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/wizard_station) -"amM" = ( -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/wizard_station) -"amN" = ( -/obj/structure/table/woodentable, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/item/weapon/ore/slag{ - desc = "Well at least Arthur doesn't have to share now..."; - name = "pet rock" - }, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/wizard_station) -"amO" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = 30 - }, -/obj/structure/bedsheetbin, -/obj/structure/table/woodentable, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/wizard_station) -"amP" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Subversive Intercom"; - pixel_x = -32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amQ" = ( -/obj/structure/table/woodentable, -/obj/item/device/radio/headset, -/obj/item/weapon/spacecash/c500, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amR" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amS" = ( -/obj/item/weapon/reagent_containers/food/snacks/spellburger{ - pixel_y = 8 - }, -/obj/structure/table/marble, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/wizard_station) -"amT" = ( -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"amU" = ( -/obj/structure/undies_wardrobe, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Subversive Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"amV" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amW" = ( -/obj/structure/table/woodentable, -/obj/item/device/paicard, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amX" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/manual/security_space_law, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amY" = ( -/obj/machinery/door/airlock/hatch, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"amZ" = ( -/obj/machinery/door/airlock/hatch, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"ana" = ( -/obj/item/weapon/antag_spawner/technomancer_apprentice, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anb" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/shoes/boots/workboots, -/obj/item/clothing/under/technomancer, -/obj/item/clothing/head/technomancer, -/obj/item/weapon/storage/box/syndie_kit/chameleon, -/obj/item/weapon/storage/box/syndie_kit/chameleon, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anc" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"and" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/unsimulated/floor{ - icon_state = "grass0"; - name = "grass" - }, -/area/wizard_station) -"ane" = ( -/obj/machinery/vending/hydroseeds, -/turf/unsimulated/floor{ - icon_state = "grass0"; - name = "grass" - }, -/area/wizard_station) -"anf" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/obj/item/clothing/suit/wizrobe/magusblue, -/obj/item/clothing/head/wizard/magus, -/obj/item/weapon/staff, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"ang" = ( -/obj/effect/landmark/start{ - name = "wizard" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anh" = ( -/obj/item/weapon/reagent_containers/food/snacks/cheesewedge, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"ani" = ( -/obj/structure/table/woodentable, -/obj/machinery/librarycomp{ - pixel_y = 6 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"anj" = ( -/obj/machinery/media/jukebox, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"ank" = ( -/obj/machinery/vending/hydronutrients, -/turf/unsimulated/floor{ - icon_state = "grass0"; - name = "grass" - }, -/area/wizard_station) -"anl" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/obj/item/clothing/under/psysuit, -/obj/item/clothing/suit/wizrobe/psypurple, -/obj/item/clothing/head/wizard/amp, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anm" = ( -/mob/living/simple_mob/animal/passive/mouse/gray{ - desc = "He looks kingly."; - name = "Arthur" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"ann" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-24" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"ano" = ( -/obj/machinery/photocopier, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"anp" = ( -/obj/structure/bookcase, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"anq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-08" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/wizard_station) -"anr" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/obj/item/clothing/shoes/sandal/marisa{ - desc = "A set of fancy shoes that are as functional as they are comfortable."; - name = "Gentlemans Shoes" - }, -/obj/item/clothing/under/gentlesuit, -/obj/item/clothing/suit/wizrobe/gentlecoat, -/obj/item/clothing/head/wizard/cap, -/obj/item/weapon/staff/gentcane, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"ans" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/obj/item/clothing/suit/wizrobe/magusred, -/obj/item/clothing/head/wizard/magus, -/obj/item/weapon/staff, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"ant" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/obj/item/clothing/suit/wizrobe/marisa, -/obj/item/clothing/shoes/sandal/marisa, -/obj/item/clothing/head/wizard/marisa, -/obj/item/weapon/staff/broom, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anu" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/obj/item/clothing/suit/wizrobe/red, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/head/wizard/red, -/obj/item/weapon/staff, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anv" = ( -/obj/machinery/the_singularitygen, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anw" = ( -/obj/machinery/crystal, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anx" = ( -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"any" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/arrow/quill, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anz" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/stock_parts/matter_bin/super, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anA" = ( -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"anB" = ( -/obj/machinery/computer/communications, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anC" = ( -/obj/structure/sign/double/map/left{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anD" = ( -/obj/structure/sign/double/map/right{ - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anE" = ( -/obj/machinery/computer/message_monitor, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anF" = ( -/obj/machinery/computer/security, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anG" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/telecrystal, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anH" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anI" = ( -/obj/structure/table/steel_reinforced, -/obj/item/clothing/head/philosopher_wig, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-04" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anK" = ( -/obj/structure/sign/electricshock, -/turf/simulated/shuttle/wall/dark/hard_corner, -/area/wizard_station) -"anL" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"anM" = ( -/obj/machinery/computer/shuttle, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anN" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anO" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"anP" = ( -/obj/machinery/computer/crew, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anQ" = ( -/obj/machinery/computer/power_monitor, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anR" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Subversive Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/machinery/computer/station_alert/all, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anS" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/mmi/radio_enabled, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anT" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/material/knife/ritual, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-03" - }, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Subversive Intercom"; - pixel_x = -32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anV" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"anW" = ( -/obj/machinery/power/port_gen/pacman, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"anX" = ( -/obj/structure/table/steel_reinforced, -/obj/item/xenos_claw, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"anY" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/coin/diamond, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"anZ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/broken_device, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoa" = ( -/obj/structure/table/steel_reinforced, -/obj/item/organ/internal/stack, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aob" = ( -/obj/machinery/floodlight, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoc" = ( -/obj/machinery/mecha_part_fabricator, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aod" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aoe" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/book/manual/ripley_build_and_repair, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aof" = ( -/obj/item/device/suit_cooling_unit, -/obj/structure/table/steel_reinforced, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = 30 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aog" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = 30 - }, -/obj/item/target, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aoh" = ( -/obj/item/target/syndicate, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aoi" = ( -/obj/structure/table/steel_reinforced, -/obj/item/toy/sword, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aoj" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/gun/energy/laser/practice, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aok" = ( -/obj/machinery/recharge_station, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aol" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/book/manual/engineering_hacking, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Subversive Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aom" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aon" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoo" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aop" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Subversive Intercom"; - pixel_x = -32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/item/target, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aoq" = ( -/obj/item/robot_parts/r_arm, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aor" = ( -/obj/item/robot_parts/l_leg, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aos" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/book/manual/robotics_cyborgs, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aot" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aou" = ( -/obj/machinery/power/emitter{ - anchored = 1; - desc = "It is a heavy duty industrial laser used in a very non-industrial way."; - name = "teleport defender" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aov" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aow" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aox" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoy" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoz" = ( -/obj/item/weapon/stool/padded, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoA" = ( -/obj/item/robot_parts/r_leg, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoB" = ( -/obj/item/robot_parts/chest, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoC" = ( -/obj/item/robot_parts/l_arm, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoD" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoG" = ( -/obj/structure/target_stake, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoH" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoI" = ( -/obj/structure/AIcore, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-20" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aoK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoL" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoN" = ( -/obj/effect/decal/mecha_wreckage/phazon, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoO" = ( -/obj/item/robot_parts/head, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/wizard_station) -"aoP" = ( -/obj/item/weapon/firstaid_arm_assembly, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aoQ" = ( -/obj/item/weapon/bucket_sensor, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoR" = ( -/obj/item/weapon/farmbot_arm_assembly, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aoS" = ( -/obj/structure/table/steel_reinforced, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/wizard_station) -"aoT" = ( -/obj/structure/table/steel_reinforced, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoU" = ( -/obj/machinery/computer/teleporter, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoV" = ( -/obj/machinery/teleport/station, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoW" = ( -/obj/machinery/teleport/hub, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/wizard_station) -"aoX" = ( -/turf/unsimulated/wall, -/area/antag/antag_base) -"aoY" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b{ - tree_chance = 0 - }, -/area/antag/antag_base) -"aoZ" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/button/remote/blast_door{ - id = "ship-lounge"; - name = "Blast Doors Controls"; - pixel_y = -28 - }, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"apa" = ( -/obj/structure/table/glass, -/obj/item/weapon/handcuffs/fuzzy, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"apb" = ( -/obj/structure/flora/tree/sif, -/turf/simulated/floor/outdoors/grass/sif/virgo3b{ - tree_chance = 0 - }, -/area/antag/antag_base) -"apc" = ( -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"apd" = ( -/obj/machinery/door/airlock/centcom{ - name = "Private Room"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"ape" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apf" = ( -/obj/structure/cable/cyan{ - 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/carpet/blue, -/area/mothership/breakroom) -"apg" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/plasmastun, -/obj/item/weapon/gun/energy/plasmastun, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aph" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/darkmatter, -/obj/item/weapon/gun/energy/darkmatter, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"api" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"apj" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"apk" = ( -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apl" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 0; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apm" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/xray, -/obj/item/weapon/gun/energy/xray, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/effect/forcefield{ - desc = "You can't get in. Heh."; - layer = 1; - name = "Blocker" - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/antag/antag_base) -"apo" = ( -/obj/structure/window/reinforced{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/effect/forcefield{ - desc = "You can't get in. Heh."; - layer = 1; - name = "Blocker" - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/antag/antag_base) -"app" = ( -/obj/structure/window/reinforced{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/effect/forcefield{ - desc = "You can't get in. Heh."; - layer = 1; - name = "Blocker" - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/antag/antag_base) -"apq" = ( -/obj/machinery/vending/boozeomat{ - density = 0; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"apr" = ( -/obj/structure/closet/syndicate, -/obj/item/clothing/mask/gas/wwii, -/obj/item/clothing/head/helmet, -/obj/item/clothing/shoes/boots/jackboots, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/under/syndicate, -/obj/item/clothing/gloves/black, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aps" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4; - start_pressure = 740.5 - }, -/obj/machinery/door/window, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"apt" = ( -/obj/machinery/shower{ - dir = 8; - icon_state = "shower"; - pixel_x = -5; - pixel_y = 0 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"apu" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/sniperrifle, -/obj/item/weapon/gun/energy/sniperrifle, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apv" = ( -/obj/structure/closet/athletic_mixed, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/antag/antag_base) -"apw" = ( -/obj/machinery/vending/food/arojoan{ - density = 0; - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"apx" = ( -/obj/structure/table/woodentable, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/weapon/melee/telebaton, -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_w = 0; - pixel_x = 0; - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/antag/antag_base) -"apy" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/antag/antag_base) -"apz" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed"; - 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, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"apA" = ( -/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, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"apB" = ( -/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, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"apC" = ( -/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, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"apD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-10" - }, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"apE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"apF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"apG" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet/blue, -/area/mothership/breakroom) -"apH" = ( -/obj/machinery/vending/dinnerware, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"apI" = ( -/obj/machinery/door/airlock/vault{ - name = "War Armory"; - req_access = list(999); - req_one_access = list(999) - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apJ" = ( -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/antag/antag_base) -"apK" = ( -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"apL" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"apM" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/mercenary) -"apN" = ( -/obj/machinery/embedded_controller/radio/airlock/phoron{ - id_tag = "merc_south_airlock"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/shuttle/wall/dark, -/area/shuttle/mercenary) -"apO" = ( -/obj/machinery/access_button/airlock_exterior{ - command = "cycle_interior"; - master_tag = "merc_south_airlock"; - pixel_x = -25; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "merc_south_airlock_inner"; - locked = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"apP" = ( -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "merc_south_airlock_inner"; - locked = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"apQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "syndieshutters_workshop"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"apR" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"apS" = ( -/obj/structure/table/rack, -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apT" = ( -/obj/structure/table/rack, -/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/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apU" = ( -/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/item/weapon/gun/energy/sizegun, -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/obj/effect/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apV" = ( -/obj/structure/table/rack, -/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/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"apX" = ( -/obj/machinery/vending/fitness, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/antag/antag_base) -"apY" = ( -/obj/machinery/scale, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/antag/antag_base) -"apZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/antag/antag_base) -"aqa" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/antag/antag_base) -"aqb" = ( -/obj/machinery/door/airlock/centcom{ - name = "Gym"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/antag/antag_base) -"aqc" = ( -/obj/machinery/door/airlock/centcom{ - name = "Barracks"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"aqd" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/chemical_dispenser/bar_coffee/full, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"aqe" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/mothership/breakroom) -"aqf" = ( -/obj/machinery/suit_cycler/syndicate{ - locked = 0 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aqg" = ( -/obj/effect/floor_decal/corner/purple{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqh" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqi" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed"; - 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, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"aqj" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"aqk" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aql" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/ammo_magazine/m10mm, -/obj/item/weapon/gun/projectile/automatic/c20r, -/obj/item/weapon/gun/projectile/automatic/c20r, -/obj/item/weapon/gun/projectile/automatic/c20r, -/obj/item/weapon/gun/projectile/automatic/c20r, -/obj/item/weapon/gun/projectile/automatic/c20r, -/obj/item/weapon/gun/projectile/automatic/c20r, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqm" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/projectile/silenced, -/obj/item/weapon/gun/projectile/silenced, -/obj/item/weapon/gun/projectile/silenced, -/obj/item/weapon/gun/projectile/silenced, -/obj/item/weapon/gun/projectile/silenced, -/obj/item/weapon/gun/projectile/silenced, -/obj/item/weapon/gun/projectile/silenced, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqn" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqo" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/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/borderfloorblack{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqp" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/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/borderfloorblack{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqq" = ( -/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/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqr" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/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/borderfloorblack{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqs" = ( -/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, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"aqt" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/backpack/dufflebag/syndie, -/obj/item/weapon/storage/backpack/dufflebag/syndie, -/obj/item/weapon/storage/backpack/messenger/black, -/obj/item/weapon/storage/backpack/messenger/black, -/obj/item/weapon/storage/backpack/satchel/norm, -/obj/item/weapon/storage/backpack/satchel/norm, -/obj/item/weapon/storage/backpack/satchel/norm, -/obj/item/weapon/storage/backpack/satchel/norm, -/obj/item/weapon/storage/backpack/satchel/norm, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"aqu" = ( -/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/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"aqv" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder{ - pixel_y = 2 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"aqw" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "merc_south_airlock_pump" - }, -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aqx" = ( -/turf/simulated/floor/reinforced/airless{ - name = "outer hull" - }, -/area/space) -"aqy" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45/rubber, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/item/ammo_magazine/m45, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqz" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqA" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqB" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqC" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqD" = ( -/obj/structure/undies_wardrobe, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/antag/antag_base) -"aqE" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donut{ - desc = "There's a name, and a message written on the lid. It reads, \"DO NOT EAT. That means you, Dave!\""; - name = "Mike's donut box" - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"aqF" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/hydroponics) -"aqG" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/hydroponics) -"aqH" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/voidcraft, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"aqI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/voidcraft, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"aqJ" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/kitchen) -"aqK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aqL" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqM" = ( -/obj/structure/table/rack, -/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/gun/energy/gun, -/obj/item/weapon/gun/energy/gun, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqN" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/ionrifle/pistol, -/obj/item/weapon/gun/energy/ionrifle/pistol, -/obj/item/weapon/gun/energy/ionrifle, -/obj/item/weapon/gun/energy/ionrifle, -/obj/effect/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqO" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqP" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/borderfloorblack/corner2, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqQ" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqR" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqS" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqT" = ( -/obj/effect/landmark{ - name = "Syndicate-Uplink" - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqU" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/borderfloorblack/corner2, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqV" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/kitchen) -"aqW" = ( -/obj/machinery/door/window/northleft, -/obj/machinery/door/window/southleft, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/kitchen) -"aqX" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqY" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/netgun, -/obj/item/weapon/gun/energy/netgun, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aqZ" = ( -/obj/structure/table/rack, -/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/gun/energy/taser, -/obj/item/weapon/gun/energy/taser, -/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/stunrevolver, -/obj/effect/floor_decal/corner/blue{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/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/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"ara" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arb" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas/voice, -/obj/item/clothing/mask/gas/voice, -/obj/item/clothing/mask/gas/voice, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arc" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/structure/table/rack, -/obj/item/weapon/rig/merc/empty, -/obj/item/weapon/rig/merc/empty, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"ard" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"are" = ( -/obj/machinery/door/airlock/vault{ - name = "Armory"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arf" = ( -/obj/structure/table/rack, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/oxygen/red, -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arg" = ( -/obj/machinery/suit_cycler/syndicate{ - locked = 0 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arh" = ( -/obj/structure/table/marble, -/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 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"ari" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_coffee/full, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"arj" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - icon_state = "frame"; - pixel_w = 0; - pixel_x = 0; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"ark" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 32 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"arl" = ( -/obj/machinery/vending/sovietsoda, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"arm" = ( -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"arn" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/material/minihoe, -/obj/item/weapon/material/minihoe, -/obj/item/weapon/material/knife, -/obj/item/weapon/material/knife, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"aro" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"arp" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"arq" = ( -/obj/structure/table/rack, -/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/item/clothing/suit/storage/vest/heavy/merc, -/obj/item/clothing/suit/storage/vest/heavy/merc, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arr" = ( -/obj/structure/bed/chair/comfy/black, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"ars" = ( -/turf/unsimulated/floor/steel{ - icon = 'icons/turf/flooring/circuit.dmi'; - icon_state = "bcircuit" - }, -/area/antag/antag_base) -"art" = ( -/obj/machinery/mech_recharger, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aru" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arv" = ( -/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/borderfloorblack{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arw" = ( -/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/borderfloorblack{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arx" = ( -/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/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"ary" = ( -/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/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arz" = ( -/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/borderfloorblack{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arA" = ( -/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/borderfloorblack{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/antag/antag_base) -"arC" = ( -/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) - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"arD" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"arE" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arF" = ( -/obj/effect/floor_decal/rust, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arG" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"arH" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - frequency = 1379; - scrub_id = "merc_south_airlock_scrubber" - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"arI" = ( -/obj/structure/table/rack, -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arJ" = ( -/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/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arK" = ( -/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{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"arM" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"arN" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/simulated/mineral, -/area/space) -"arO" = ( -/obj/machinery/access_button/airlock_exterior{ - master_tag = "merc_south_airlock"; - pixel_x = -25; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "merc_south_airlock_outer"; - locked = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate"; - name = "Outer Airlock"; - opacity = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"arP" = ( -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arQ" = ( -/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/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/item/weapon/card/emag, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arR" = ( -/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 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arS" = ( -/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 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arT" = ( -/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, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arU" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/item/clothing/mask/gas/wwii, -/obj/item/clothing/mask/gas/wwii, -/obj/item/clothing/mask/gas/wwii, -/obj/item/clothing/mask/gas/wwii, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arV" = ( -/obj/machinery/door/airlock/centcom{ - name = "Equipment Storage"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-20" - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/antag/antag_base) -"arX" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1331; - id_tag = "merc_base_hatch"; - req_access = list(150) - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arY" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1331; - id_tag = "merc_base_hatch"; - req_access = list(150) - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"arZ" = ( -/obj/machinery/door/airlock/glass_external{ - density = 1; - frequency = 1331; - id_tag = "merc_shuttle_outer"; - name = "Ship External Access"; - req_access = list(150) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate"; - name = "Outer Airlock"; - opacity = 0 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1331; - master_tag = "merc_shuttle"; - name = "exterior access button"; - pixel_x = -25; - pixel_y = 0; - req_access = list(150) - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"asa" = ( -/obj/machinery/door/airlock/glass_external{ - density = 1; - frequency = 1331; - id_tag = "merc_shuttle_outer"; - name = "Ship External Access"; - req_access = list(150) - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate"; - name = "Outer Airlock"; - opacity = 0 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"asb" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/item/clothing/mask/gas/voice, -/obj/item/clothing/mask/gas/voice, -/obj/item/clothing/mask/gas/voice, -/obj/item/clothing/mask/gas/voice, -/obj/item/clothing/mask/gas/voice, -/obj/item/clothing/mask/gas/voice, -/obj/item/clothing/mask/gas/voice, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asc" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/obj/item/weapon/storage/backpack/dufflebag/syndie/med, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/obj/item/weapon/storage/backpack/dufflebag/syndie/med, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/obj/item/weapon/storage/backpack/dufflebag/syndie/med, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asd" = ( -/obj/structure/closet/secure_closet/medical_wall{ - pixel_x = -32; - pixel_y = 0; - 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/weapon/storage/belt/medical/emt, -/obj/item/weapon/storage/belt/medical/emt, -/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/borderfloorblack{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"ase" = ( -/obj/structure/symbol/da, -/turf/simulated/shuttle/wall/dark, -/area/shuttle/mercenary) -"asf" = ( -/obj/structure/symbol/lo, -/turf/simulated/shuttle/wall/dark, -/area/shuttle/mercenary) -"asg" = ( -/obj/structure/closet{ - name = "custodial" - }, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"ash" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"asi" = ( -/obj/machinery/door/window{ - dir = 4; - name = "Cell"; - req_access = list(150) - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asj" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"ask" = ( -/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/borderfloorblack{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asl" = ( -/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/borderfloorblack{ - dir = 10 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asm" = ( -/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/effect/floor_decal/borderfloorblack, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asn" = ( -/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/borderfloorblack, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"aso" = ( -/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/effect/floor_decal/borderfloorblack, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asp" = ( -/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/effect/floor_decal/borderfloorblack, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asq" = ( -/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/effect/floor_decal/borderfloorblack, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asr" = ( -/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/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"ass" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/vending/nifsoft_shop{ - categories = 111; - emagged = 1; - name = "Hacked NIFSoft Shop"; - prices = list() - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"ast" = ( -/obj/machinery/telecomms/allinone{ - intercept = 1 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asu" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"asv" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/effect/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"asw" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asx" = ( -/obj/structure/bed, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asy" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced/full, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/antag/antag_base) -"asz" = ( -/obj/item/weapon/handcuffs, -/obj/item/weapon/handcuffs, -/obj/item/weapon/handcuffs, -/obj/item/weapon/handcuffs/fuzzy, -/obj/item/weapon/handcuffs/fuzzy, -/obj/item/weapon/handcuffs, -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced/full, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/antag/antag_base) -"asB" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asC" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"asD" = ( -/obj/structure/sink/kitchen, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/hydroponics) -"asE" = ( -/obj/item/weapon/reagent_containers/hypospray, -/obj/structure/table/steel, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asF" = ( -/obj/machinery/door/airlock/centcom{ - name = "Prison Wing"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asG" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_one_access = list(150) - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"asH" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/device/multitool, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"asI" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asJ" = ( -/obj/structure/cable/cyan{ - 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 = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"asK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"asL" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asM" = ( -/mob/living/simple_mob/animal/passive/fox/syndicate{ - name = "Rick" - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asN" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/antag/antag_base) -"asP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asQ" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asR" = ( -/obj/effect/floor_decal/borderfloorblack, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asS" = ( -/obj/machinery/airlock_sensor/phoron{ - id_tag = "civ_airlock_sensor"; - pixel_x = 8; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "merc_south_airlock_pump" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"asT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"asU" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asV" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"asW" = ( -/obj/machinery/door/airlock/centcom{ - name = "Bathroom"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/antag/antag_base) -"asX" = ( -/obj/machinery/door/airlock/centcom{ - name = "Kitchen"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"asY" = ( -/obj/machinery/door/airlock/centcom{ - name = "MedBay"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/antag/antag_base) -"asZ" = ( -/obj/item/weapon/material/knife/plastic{ - pixel_x = -6 - }, -/obj/item/weapon/reagent_containers/syringe/drugs{ - pixel_x = 3; - pixel_y = -1 - }, -/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/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/table/steel, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"ata" = ( -/obj/machinery/button/remote/blast_door{ - id = "syndieshutters_workshop"; - name = "remote shutter control"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"atb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"atc" = ( -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/antag/antag_base) -"atd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate"; - name = "Outer Airlock"; - opacity = 0 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate"; - name = "Outer Airlock"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"ate" = ( -/obj/structure/toilet, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/antag/antag_base) -"atf" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atg" = ( -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"ath" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"ati" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atj" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atk" = ( -/obj/machinery/atmospherics/unary/freezer, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atm" = ( -/obj/machinery/chemical_dispenser/full, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atn" = ( -/obj/machinery/chem_master, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"ato" = ( -/obj/item/device/defib_kit, -/obj/item/device/defib_kit, -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/item/weapon/tool/screwdriver, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atp" = ( -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/APlus, -/obj/item/weapon/reagent_containers/blood/BMinus, -/obj/item/weapon/reagent_containers/blood/BPlus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/structure/closet/crate/freezer, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atq" = ( -/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, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atr" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"ats" = ( -/obj/structure/table/standard, -/obj/item/weapon/surgical/circular_saw, -/obj/item/weapon/surgical/surgicaldrill, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"att" = ( -/obj/structure/table/standard, -/obj/item/weapon/surgical/retractor, -/obj/item/weapon/surgical/bonesetter, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atu" = ( -/obj/item/weapon/gun/energy/sizegun, -/obj/item/weapon/gun/energy/sizegun, -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atv" = ( -/obj/machinery/door/airlock/centcom{ - name = "Toilet"; - req_one_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/antag/antag_base) -"atw" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/tray{ - pixel_y = 5 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atx" = ( -/obj/structure/reagent_dispensers/beerkeg/fakenuke, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"aty" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atz" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atB" = ( -/obj/structure/table/standard, -/obj/item/weapon/surgical/cautery, -/obj/item/weapon/surgical/FixOVein, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atC" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = -32 - }, -/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/structure/table/steel, -/obj/effect/floor_decal/borderfloorblack, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atD" = ( -/obj/item/clothing/gloves/knuckledusters, -/obj/item/clothing/gloves/knuckledusters, -/obj/item/clothing/gloves/knuckledusters, -/obj/item/clothing/gloves/knuckledusters, -/obj/item/clothing/gloves/knuckledusters, -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/baton/loaded, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atE" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"atF" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4; - icon_state = "twindow" - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/antag/antag_base) -"atG" = ( -/obj/machinery/washing_machine, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/antag/antag_base) -"atH" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = 28; - pixel_y = 0 - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/antag/antag_base) -"atI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "syndieshutters_workshop"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"atJ" = ( -/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 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atK" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atL" = ( -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atM" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/glasses/square{ - pixel_x = 1; - pixel_y = 4 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atN" = ( -/obj/machinery/vending/food, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atP" = ( -/obj/structure/table/standard, -/obj/item/weapon/surgical/scalpel, -/obj/item/device/healthanalyzer, -/obj/item/weapon/surgical/hemostat, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atQ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atR" = ( -/obj/structure/bed/roller, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "dark" - }, -/area/antag/antag_base) -"atS" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - name = "Grenade Crate"; - opened = 1 - }, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atT" = ( -/obj/item/weapon/tool/screwdriver, -/obj/item/weapon/storage/box/beakers, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atU" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atV" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atW" = ( -/obj/machinery/body_scanconsole, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atX" = ( -/obj/structure/medical_stand, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atY" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"atZ" = ( -/obj/machinery/optable, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"aua" = ( -/obj/structure/table/standard, -/obj/item/stack/medical/advanced/bruise_pack{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/medical/advanced/bruise_pack{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/surgical/bonegel, -/obj/item/weapon/surgical/bonegel, -/obj/item/stack/nanopaste, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/antag/antag_base) -"aub" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"auc" = ( +"kr" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"pb" = ( +/obj/machinery/telecomms/processor/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"rE" = ( +/obj/machinery/telecomms/bus/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"uc" = ( /turf/unsimulated/wall, /area/centcom/suppy) -"aud" = ( +"ud" = ( /obj/machinery/status_display/supply_display, /turf/unsimulated/wall, /area/centcom/suppy) -"aue" = ( +"ue" = ( /obj/structure/closet/crate, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/suppy) -"auf" = ( +"uf" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/suppy) -"aug" = ( +"ug" = ( /obj/item/weapon/paper{ info = "You're not supposed to be here."; name = "unnerving letter" @@ -9602,6006 +1836,79 @@ icon_state = "dark" }, /area/centcom/suppy) -"auh" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aui" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/combat, -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"auj" = ( -/obj/structure/closet, -/obj/item/weapon/reagent_containers/food/snacks/tastybread, -/obj/item/weapon/reagent_containers/food/snacks/tastybread, -/obj/item/weapon/reagent_containers/food/snacks/tastybread, -/obj/item/weapon/reagent_containers/food/snacks/tastybread, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_yellow" - }, -/area/shuttle/mercenary) -"auk" = ( -/obj/structure/mopbucket, -/turf/simulated/floor/plating, -/area/shuttle/mercenary) -"aul" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"aum" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"aun" = ( -/obj/structure/closet/syndicate, -/obj/item/clothing/mask/gas/wwii, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/item/clothing/head/helmet, -/obj/item/clothing/shoes/boots/jackboots, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/under/syndicate, -/obj/item/clothing/gloves/black, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/clothing/glasses/goggles, -/obj/item/clothing/head/helmet/merc{ - armor = list("melee" = 70, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); - desc = "A pilot's flight helmet. It's not very well armored, but it's very well padded, making it resistant to melee attacks."; - name = "pilot helmet" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aup" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 1; - req_one_access = list(150) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"auq" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"aur" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/machinery/vending/cola{ - name = "hacked Robust Softdrinks"; - prices = list() - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aus" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/hos, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"aut" = ( -/obj/structure/sign/department/armory, -/turf/simulated/shuttle/wall/dark, -/area/shuttle/mercenary) -"auu" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"auv" = ( -/obj/structure/table/rack, -/obj/item/weapon/paper{ - info = "Remember to stock the armory before leaving.\[br]-Mike"; - name = "reminder" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"auw" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"aux" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auy" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auz" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"auA" = ( -/obj/item/device/aicard, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/structure/table/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"auB" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/door/airlock/glass_external/public{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "merc_south_airlock_outer"; - locked = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "smindicate"; - name = "Outer Airlock"; - opacity = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"auC" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/table/rack, -/turf/simulated/shuttle/floor{ - icon_state = "floor_yellow" - }, -/area/shuttle/mercenary) -"auD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auF" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 0; - pixel_y = -32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/structure/closet/syndicate, -/obj/item/clothing/mask/gas/wwii, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/item/clothing/head/helmet, -/obj/item/clothing/shoes/boots/jackboots, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/under/syndicate, -/obj/item/clothing/gloves/black, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"auH" = ( -/obj/machinery/washing_machine, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auI" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/hos, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auJ" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/hos, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auK" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"auL" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = -32; - pixel_y = 0; - subspace_transmission = 1; - syndie = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 6 - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_white" - }, -/area/shuttle/mercenary) -"auM" = ( -/obj/structure/closet/secure_closet/medical_wall{ - pixel_x = 0; - 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/machinery/light{ - dir = 4 - }, -/obj/item/device/defib_kit/compact/combat/loaded, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auN" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 0; - pixel_y = -32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auO" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"auP" = ( -/obj/item/weapon/storage/box/frags, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_black" - }, -/area/shuttle/mercenary) -"auQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "merc_south_airlock_pump" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_red" - }, -/area/shuttle/mercenary) -"auR" = ( -/obj/structure/sink/kitchen, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/kitchen) -"auS" = ( -/obj/machinery/chem_master/condimaster, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"auT" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/microwave, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"auU" = ( -/obj/item/weapon/tray{ - pixel_y = 5 - }, -/obj/structure/table/standard, -/obj/item/weapon/material/knife/butch, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"auV" = ( -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"auW" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"auX" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/brown, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/skipjack_station) -"auY" = ( -/obj/structure/table/standard, -/obj/random/projectile, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"auZ" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/Dooruranium.dmi' - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/ninja_dojo/dojo) -"ava" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/book/manual/chef_recipes, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/weapon/material/knife/butch, -/obj/item/weapon/material/kitchen/rollingpin, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avb" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/reagentgrinder, -/obj/item/weapon/storage/box/beakers, -/obj/machinery/button/remote/blast_door{ - id = "ship-kitchen"; - name = "Blast Doors Controls"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 1; - icon_state = "pdoor0"; - id = "ship-hydroponics"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/mothership/hydroponics) -"avd" = ( -/obj/machinery/seed_storage/xenobotany, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"ave" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avf" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avg" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avh" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avi" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avj" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avk" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/kitchen) -"avn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avp" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avq" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"avr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 1; - icon_state = "pdoor0"; - id = "ship-kitchen"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/mothership/kitchen) -"avs" = ( -/obj/effect/floor_decal/asteroid, -/turf/unsimulated/floor{ - dir = 2; - icon = 'icons/turf/snow_new.dmi'; - icon_state = "snow"; - name = "snow" - }, -/area/ninja_dojo/dojo) -"avt" = ( -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead spider" - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"avu" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/skipjack) -"avv" = ( -/obj/machinery/vending/hydronutrients, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avy" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avz" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avA" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avB" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avC" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"avD" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/kitchen) -"avE" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"avH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avI" = ( -/obj/effect/landmark{ - name = "voxstart" - }, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/skipjack_station) -"avJ" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avK" = ( -/obj/structure/table/rack, -/obj/item/weapon/grenade/empgrenade, -/obj/item/weapon/grenade/flashbang, -/obj/item/weapon/grenade/spawnergrenade/manhacks, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"avL" = ( -/obj/machinery/seed_extractor, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avM" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/button/remote/blast_door{ - id = "ship-hydroponics"; - name = "Blast Doors Controls"; - pixel_x = 20; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avN" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/structure/closet/crate/bin, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avP" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avQ" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hydroponics) -"avR" = ( -/obj/machinery/smartfridge, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/kitchen) -"avS" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avT" = ( -/obj/machinery/cooker/cereal, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avU" = ( -/obj/machinery/cooker/fryer, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avV" = ( -/obj/machinery/cooker/oven, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avW" = ( -/obj/machinery/cooker/grill, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"avX" = ( -/obj/item/weapon/bedsheet/clown, -/obj/structure/bed/padded, -/turf/simulated/shuttle/floor/red, -/area/shuttle/skipjack) -"avY" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1331; - master_tag = "ninja_shuttle"; - name = "interior access button"; - pixel_x = -25; - pixel_y = 25; - req_access = list(150) - }, -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"avZ" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150) - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"awa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"awb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ninjawindow"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/turf/simulated/shuttle/plating, -/area/shuttle/ninja) -"awc" = ( -/obj/machinery/cooker/candy, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/kitchen) -"awd" = ( +"wd" = ( /obj/structure/sign/warning/nosmoking_2, /turf/unsimulated/wall, /area/centcom/simulated/terminal) -"awe" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/skipjack) -"awf" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/eva) -"awg" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/eva) -"awh" = ( -/obj/machinery/door/airlock/multi_tile/metal, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awi" = ( -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"awj" = ( -/obj/structure/toilet, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/skipjack_station) -"awk" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awl" = ( +"wl" = ( /turf/unsimulated/wall, /area/centcom/simulated/evac) -"awm" = ( -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awn" = ( -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/item/weapon/tank/oxygen/red, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awo" = ( -/obj/item/clothing/suit/space/void/medical/alt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awp" = ( -/obj/machinery/suit_cycler, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awq" = ( -/obj/structure/undies_wardrobe, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/ninja_dojo/dojo) -"awr" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/toolbox/syndicate/powertools, -/obj/item/device/multitool, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"aws" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awt" = ( -/obj/machinery/status_display{ - pixel_y = 29 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awv" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/toolbox/syndicate{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/machinery/button/remote/blast_door{ - id = "ninjawindow"; - name = "remote shutter control"; - pixel_x = 0; - pixel_y = -25; - req_access = list(150) - }, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"aww" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awx" = ( -/obj/machinery/status_display{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awy" = ( -/obj/structure/table/steel_reinforced, -/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, -/obj/item/device/radio/off, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awz" = ( -/turf/unsimulated/wall{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "Sealed Door" - }, -/area/mothership/eva) -"awA" = ( -/obj/structure/table/bench/wooden, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"awB" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awC" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awE" = ( -/obj/item/weapon/bedsheet/green, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/bed/padded, -/turf/simulated/shuttle/floor/red, -/area/shuttle/skipjack) -"awF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awH" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/voidcraft/vertical, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awK" = ( -/obj/structure/cable/cyan{ - 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 = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awN" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awO" = ( -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awP" = ( -/obj/item/clothing/suit/space/void/engineering/salvage, -/obj/item/clothing/head/helmet/space/void/engineering/salvage, -/obj/item/weapon/tank/oxygen/red, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/machinery/light, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awQ" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion"; - dir = 1 - }, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/ninja) -"awR" = ( -/obj/item/clothing/suit/space/void/exploration, -/obj/item/clothing/head/helmet/space/void/exploration, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awS" = ( -/obj/item/robot_parts/l_leg, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"awT" = ( -/obj/structure/dispenser/oxygen{ - oxygentanks = 40 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awU" = ( -/obj/machinery/suit_cycler/syndicate{ - locked = 0 - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"awV" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awW" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/storage/briefcase/inflatable, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"awZ" = ( +"wy" = ( +/turf/unsimulated/wall, +/area/centcom/control) +"wZ" = ( /turf/unsimulated/floor{ icon_state = "sandwater" }, /area/beach) -"axa" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"axb" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/eva) -"axc" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/bathroom1) -"axd" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bathroom1) -"axe" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bathroom1) -"axf" = ( -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"axg" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - glass = 0; - opacity = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/white, -/area/mothership/bathroom1) -"axh" = ( -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/hallway) -"axi" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axj" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/techmaint, -/area/mothership/hallway) -"axk" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axl" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axm" = ( -/obj/item/clothing/glasses/night/vox, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"axn" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - glass = 0; - opacity = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/white, -/area/mothership/bathroom2) -"axo" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bathroom2) -"axp" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bathroom2) -"axq" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/bathroom2) -"axr" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/bathroom1) -"axs" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 2; - pixel_y = 0 - }, -/obj/machinery/door/window/survival_pod, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/white, -/area/mothership/bathroom1) -"axt" = ( -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"axu" = ( -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bathroom1) -"axv" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bathroom1) -"axw" = ( -/obj/machinery/status_display{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axx" = ( -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"axy" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axz" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axA" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axB" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axD" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"axE" = ( -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axF" = ( -/obj/machinery/status_display{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"axH" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/bathroom2) -"axI" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bathroom2) -"axJ" = ( -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bathroom2) -"axK" = ( -/obj/machinery/door/window/survival_pod{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 8; - icon_state = "shower"; - pixel_x = 2; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/white, -/area/mothership/bathroom2) -"axL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"axM" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/surgery) -"axN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 4; - icon_state = "pdoor0"; - id = "ship-med-surgery"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/mothership/surgery) -"axO" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm1) -"axP" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm1) -"axQ" = ( -/obj/machinery/computer/shuttle_control/multi/ninja{ - dir = 1 - }, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"axR" = ( -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "spiderling"; - name = "dead spider" - }, -/turf/unsimulated/floor{ - icon_state = "steel_dirty" - }, -/area/skipjack_station) -"axS" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"axT" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/teleporter) -"axU" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/teleporter) -"axV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"axW" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/unsimulated/floor{ - dir = 2; - icon = 'icons/turf/snow_new.dmi'; - icon_state = "snow"; - name = "snow" - }, -/area/ninja_dojo/dojo) -"axX" = ( -/obj/effect/landmark{ - name = "ninjastart" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"axY" = ( -/obj/machinery/door/airlock/multi_tile/metal, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"axZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"aya" = ( -/obj/structure/table/glass, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"ayb" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"ayc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"ayd" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm2) -"aye" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/security) -"ayf" = ( -/obj/structure/table/bench/wooden, -/obj/effect/landmark{ - name = "ninjastart" - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"ayg" = ( -/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/weapon/storage/mre/menu13, -/obj/item/weapon/storage/mre/menu13, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"ayh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"ayi" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"ayj" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/mothership/dorm1) -"ayk" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/obj/machinery/status_display{ - pixel_y = 29 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm1) -"ayl" = ( -/obj/machinery/teleport/station, -/turf/simulated/shuttle/plating, -/area/shuttle/ninja) -"aym" = ( -/obj/structure/closet/wardrobe/ert, -/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/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/wood, -/area/mothership/dorm1) -"ayn" = ( -/obj/machinery/button/remote/blast_door{ - id = "ship-vault"; - name = "Vault Blast Door Controls"; - pixel_y = 28; - req_one_access = list(108) - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayo" = ( -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayr" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ays" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayt" = ( -/obj/structure/closet/wardrobe/ert, -/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/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/wood, -/area/mothership/dorm2) -"ayu" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/obj/machinery/status_display{ - pixel_y = 29 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm2) -"ayv" = ( -/obj/item/broken_device, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"ayw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"ayx" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/mothership/dorm2) -"ayy" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"ayz" = ( -/obj/machinery/vending/security, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"ayA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"ayB" = ( -/obj/item/clothing/head/helmet/solgov, -/obj/item/clothing/head/helmet/solgov, -/obj/item/clothing/head/helmet/solgov, -/obj/item/clothing/head/helmet/solgov, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"ayC" = ( -/obj/structure/closet/crate/medical, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/device/mmi/digital/posibrain, -/obj/item/device/mmi, -/obj/item/weapon/book/manual/robotics_cyborgs, -/obj/item/device/robotanalyzer, -/obj/item/weapon/storage/toolbox/syndicate/powertools, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"ayD" = ( -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/wood.dmi'; - icon_state = "wood_broken3" - }, -/area/skipjack_station) -"ayE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "ship-med-surgery"; - name = "Blast Doors Controls"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"ayF" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"ayG" = ( -/obj/item/weapon/bedsheet/captaindouble, -/obj/structure/bed/double/padded, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/button/remote/airlock{ - id = "ship-dorm1-door"; - name = "Dorm 1 Lock"; - pixel_x = 6; - pixel_y = -26; - specialfunctions = 4 - }, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, -/area/mothership/dorm1) -"ayH" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/mothership/dorm1) -"ayI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"ayJ" = ( -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm1) -"ayK" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - glass = 0; - id_tag = "ship-dorm1-door"; - opacity = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/white, -/area/mothership/dorm1) -"ayL" = ( -/obj/item/weapon/storage/box, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"ayM" = ( -/turf/unsimulated/floor{ - dir = 2; - icon = 'icons/turf/snow_new.dmi'; - icon_state = "snow"; - name = "snow" - }, -/area/ninja_dojo/dojo) -"ayN" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"ayO" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayP" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayQ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayR" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayS" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"ayT" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"ayU" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - glass = 0; - id_tag = "ship-dorm2-door"; - opacity = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/white, -/area/mothership/dorm2) -"ayV" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm2) -"ayW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm2) -"ayX" = ( -/obj/item/weapon/bedsheet/captaindouble, -/obj/structure/bed/double/padded, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/button/remote/airlock{ - id = "ship-dorm2-door"; - name = "Dorm 2 Lock"; - pixel_x = -6; - pixel_y = -26; - specialfunctions = 4 - }, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, -/area/mothership/dorm2) -"ayY" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/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/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/clothing/accessory/storage/pouches/large/blue, -/obj/item/clothing/accessory/storage/pouches/large/blue, -/obj/item/clothing/accessory/storage/pouches/large/blue, -/obj/item/clothing/accessory/storage/pouches/large/blue, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"ayZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aza" = ( -/obj/item/clothing/suit/armor/pcarrier/blue/sol, -/obj/item/clothing/suit/armor/pcarrier/blue/sol, -/obj/item/clothing/suit/armor/pcarrier/blue/sol, -/obj/item/clothing/suit/armor/pcarrier/blue/sol, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"azb" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"azc" = ( -/obj/machinery/door/airlock/medical, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"azd" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/chemistry) -"aze" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/chemistry) -"azf" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - frequency = 1439; - pixel_x = 22; - pixel_y = 0; - report_danger_level = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"azg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"azh" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/teleport/hub, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"azi" = ( -/obj/machinery/teleport/station, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"azj" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"azk" = ( -/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) -"azl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"azm" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/security) -"azn" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/launcher/crossbow, -/obj/item/stack/rods{ - amount = 10 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/weapon/beartrap, -/obj/item/weapon/beartrap, -/obj/item/weapon/beartrap, -/obj/item/weapon/beartrap, -/obj/item/weapon/beartrap, -/obj/item/weapon/beartrap, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"azo" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/security, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"azp" = ( -/obj/machinery/oxygen_pump/anesthetic, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/surgery) -"azq" = ( -/obj/structure/medical_stand, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"azr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"azs" = ( -/obj/item/weapon/bedsheet/rd, -/obj/structure/bed/padded, -/turf/simulated/shuttle/floor/red, -/area/shuttle/skipjack) -"azt" = ( -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"azu" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"azv" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"azw" = ( -/obj/machinery/chemical_dispenser/ert, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"azx" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/mask/gas, -/obj/item/device/flashlight, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/extinguisher, -/obj/item/weapon/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"azy" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"azz" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/wall, -/area/beach) -"azA" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/vault) -"azB" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"azC" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/mask/gas, -/obj/item/device/flashlight, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/extinguisher, -/obj/item/weapon/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"azD" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/storage/lockbox, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/glasses/hud/security, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"azE" = ( -/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/weapon/storage/backpack/dufflebag/syndie/ammo, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"azF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"azG" = ( -/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) -"azH" = ( -/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) -"azI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"azJ" = ( -/obj/item/device/holowarrant, -/obj/structure/closet/secure_closet/nanotrasen_security, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"azK" = ( +"xe" = ( +/obj/machinery/account_database{ + name = "CentComm Accounts database" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"yA" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"zK" = ( /obj/machinery/door/blast/regular{ dir = 4 }, /turf/simulated/floor/maglev, /area/centcom/simulated/terminal) -"azL" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"azM" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"azN" = ( -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"azO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"azP" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/phoron, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"azQ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"azR" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"azS" = ( -/obj/structure/closet/crate/secure/gear{ - req_one_access = list(108) - }, -/obj/item/stack/telecrystal{ - amount = 240 - }, -/obj/item/stack/telecrystal{ - amount = 240 - }, -/obj/item/stack/telecrystal{ - amount = 240 - }, -/obj/item/stack/telecrystal{ - amount = 240 - }, -/obj/item/stack/telecrystal{ - amount = 240 - }, -/obj/item/stack/telecrystal{ - amount = 240 - }, -/obj/item/stack/telecrystal{ - amount = 240 - }, -/obj/item/stack/telecrystal{ - amount = 240 - }, -/obj/item/weapon/card/mining_point_card{ - mine_points = 50000 - }, -/obj/item/weapon/card/mining_point_card{ - mine_points = 50000 - }, -/obj/item/weapon/card/mining_point_card{ - mine_points = 50000 - }, -/obj/item/weapon/card/mining_point_card{ - mine_points = 50000 - }, -/obj/item/weapon/card/mining_point_card{ - mine_points = 50000 - }, -/obj/item/weapon/card/mining_point_card{ - mine_points = 50000 - }, -/obj/item/weapon/card/mining_point_card/survey{ - name = "survey point card"; - survey_points = 5000 - }, -/obj/item/weapon/card/mining_point_card/survey{ - name = "survey point card"; - survey_points = 5000 - }, -/obj/item/weapon/card/mining_point_card/survey{ - name = "survey point card"; - survey_points = 5000 - }, -/obj/item/weapon/card/mining_point_card/survey{ - name = "survey point card"; - survey_points = 5000 - }, -/obj/item/weapon/card/mining_point_card/survey{ - name = "survey point card"; - survey_points = 5000 - }, -/obj/item/weapon/card/mining_point_card/survey{ - name = "survey point card"; - survey_points = 5000 - }, -/obj/item/device/survivalcapsule/military, -/obj/item/device/survivalcapsule/military, -/obj/item/weapon/storage/secure/briefcase/money{ - desc = "An sleek tidy briefcase."; - name = "secure briefcase" - }, -/obj/item/weapon/storage/secure/briefcase/money{ - desc = "An sleek tidy briefcase."; - name = "secure briefcase" - }, -/obj/item/weapon/storage/secure/briefcase/money{ - desc = "An sleek tidy briefcase."; - name = "secure briefcase" - }, -/obj/item/weapon/storage/secure/briefcase/money{ - desc = "An sleek tidy briefcase."; - name = "secure briefcase" - }, -/obj/item/weapon/storage/secure/briefcase/money{ - desc = "An sleek tidy briefcase."; - name = "secure briefcase" - }, -/obj/item/weapon/storage/secure/briefcase/money{ - desc = "An sleek tidy briefcase."; - name = "secure briefcase" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"azT" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/Dooruranium.dmi' - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/ninja_dojo/dojo) -"azU" = ( -/obj/machinery/syndicate_beacon/virgo{ - charges = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"azV" = ( -/obj/machinery/mineral/equipment_vendor, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"azW" = ( -/obj/machinery/power/smes/buildable{ - charge = 2e+007; - cur_coils = 4; - input_attempt = 1; - input_level = 1e+006; - output_level = 1e+006; - RCon = 0 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"azX" = ( -/obj/structure/prop/blackbox, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"azY" = ( -/obj/structure/closet/crate/secure/weapon{ - req_one_access = list(108) - }, -/obj/item/clothing/suit/space/void/merc/fire, -/obj/item/clothing/head/helmet/space/void/merc/fire, -/obj/item/clothing/suit/space/void/merc, -/obj/item/clothing/head/helmet/space/void/merc, -/obj/item/clothing/suit/space/void/merc, -/obj/item/clothing/head/helmet/space/void/merc, -/obj/item/clothing/suit/space/void/merc/odst, -/obj/item/clothing/head/helmet/space/void/merc/odst, -/obj/item/clothing/suit/space/void/security/fluff/hos, -/obj/item/clothing/head/helmet/space/void/security/fluff/hos, -/obj/item/weapon/tank/oxygen/yellow, -/obj/item/weapon/tank/vox, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"azZ" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aAa" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aAb" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/storage/firstaid/clotting, -/obj/item/stack/medical/splint, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aAc" = ( -/obj/structure/closet/crate, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aAd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aAe" = ( -/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) -"aAf" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - tiles = 0 - }, -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/space, -/area/space) -"aAg" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"aAh" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aAi" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aAj" = ( -/obj/item/device/holowarrant, -/obj/structure/closet/secure_closet/nanotrasen_security, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aAk" = ( -/turf/simulated/shuttle/floor/black, -/area/shuttle/skipjack) -"aAl" = ( +"Al" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 }, /turf/simulated/floor/tiled/techfloor/grid, /area/centcom/simulated/terminal) -"aAm" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"aAn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"aAo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 12; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"aAp" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"aAq" = ( -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"aAr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"aAs" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/westleft, -/obj/machinery/door/window/eastright, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/chemistry) -"aAt" = ( -/obj/machinery/sleep_console, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/ninja_dojo/dojo) -"aAu" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"aAv" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aAw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aAx" = ( +"Ax" = ( /turf/unsimulated/beach/coastline{ density = 1; opacity = 1 }, /area/beach) -"aAy" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/vault/bolted{ - id_tag = "ship-vault-door"; - req_one_access = list(109) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - destroy_hits = 100; - id = "ship-vault"; - name = "Vault" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aAz" = ( +"Az" = ( /turf/unsimulated/beach/coastline, /area/beach) -"aAA" = ( -/obj/item/clothing/mask/gas/swat/vox, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aAB" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/vox/stealth, -/obj/item/clothing/suit/space/vox/stealth, -/obj/item/clothing/head/helmet/space/vox/stealth, -/obj/item/clothing/head/helmet/space/vox/stealth, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aAC" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aAD" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aAE" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aAF" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/ninja_dojo/dojo) -"aAG" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/hallway) -"aAH" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/storage/box/evidence, -/obj/item/weapon/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aAI" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aAJ" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aAK" = ( -/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) -"aAL" = ( -/obj/item/device/holowarrant, -/obj/structure/closet/secure_closet/nanotrasen_security, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aAM" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"aAN" = ( -/obj/item/weapon/gun/launcher/pneumatic, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aAO" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/box/gloves, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"aAP" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/Dooruranium.dmi' - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aAQ" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"aAR" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/box/pillbottles, -/obj/item/weapon/storage/box/pillbottles, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/tool/screwdriver, -/obj/item/weapon/storage/box/pillbottles, -/obj/item/weapon/storage/box/pillbottles, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"aAS" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"aAT" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"aAU" = ( -/obj/structure/closet/crate/secure/weapon{ - req_one_access = list(108) - }, -/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, -/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, -/obj/item/ammo_casing/microbattery/medical/corpse_mend, -/obj/item/ammo_casing/microbattery/medical/corpse_mend, -/obj/item/slime_extract/pink, -/obj/item/slime_extract/pink, -/obj/item/slime_extract/pink, -/obj/item/slime_extract/pink, -/obj/item/slime_extract/pink, -/obj/item/slime_extract/pink, -/obj/item/weapon/cell/slime{ - description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; - icon = 'icons/obj/power.dmi'; - icon_state = "icell"; - maxcharge = 20000; - name = "slime core cell" - }, -/obj/item/weapon/cell/slime{ - description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; - icon = 'icons/obj/power.dmi'; - icon_state = "icell"; - maxcharge = 20000; - name = "slime core cell" - }, -/obj/item/weapon/cell/slime{ - description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; - icon = 'icons/obj/power.dmi'; - icon_state = "icell"; - maxcharge = 20000; - name = "slime core cell" - }, -/obj/item/weapon/cell/slime{ - description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; - icon = 'icons/obj/power.dmi'; - icon_state = "icell"; - maxcharge = 20000; - name = "slime core cell" - }, -/obj/item/slime_extract/pink, -/obj/item/slime_extract/pink, -/obj/item/weapon/deadringer, -/obj/item/weapon/deadringer, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aAV" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/skipjack_station) -"aAW" = ( -/obj/structure/closet/crate/secure/weapon{ - req_one_access = list(108) - }, -/obj/item/weapon/gun/energy/modular/cannon, -/obj/item/weapon/gun/energy/modular/carbine, -/obj/item/weapon/gun/energy/modular/pistol, -/obj/item/weapon/gun/energy/medigun, -/obj/item/weapon/gun/energy/captain, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aAX" = ( -/obj/machinery/mineral/equipment_vendor/survey, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aAY" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/orange, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/skipjack_station) -"aAZ" = ( -/obj/structure/table/rack, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/tank/oxygen, -/obj/random/multiple/voidsuit, -/obj/random/multiple/voidsuit, -/obj/random/energy, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aBa" = ( -/obj/machinery/power/fractal_reactor/fluff/converter, -/obj/structure/cable, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aBb" = ( -/obj/structure/closet/crate/secure/gear{ - req_one_access = list(108) - }, -/obj/item/rig_module/chem_dispenser/injector/advanced, -/obj/item/rig_module/vision/multi, -/obj/item/weapon/rig/military/equipped, -/obj/item/weapon/rig/pmc/commander, -/obj/item/weapon/rig/pmc/medical, -/obj/item/weapon/rig/pmc/engineer, -/obj/item/weapon/rig/pmc/security, -/obj/item/weapon/rig/pmc/security, -/obj/item/weapon/rig/light/ninja, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aBc" = ( -/obj/structure/closet/crate/secure/gear{ - req_one_access = list(108) - }, -/obj/item/device/subspaceradio, -/obj/item/weapon/storage/firstaid/insiderepair, -/obj/item/weapon/storage/firstaid/combat, -/obj/item/weapon/storage/toolbox/syndicate/powertools, -/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_heavy{ - name = "Heavy 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/item/weapon/storage/box/emps{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/cell/device/weapon/recharge/alien, -/obj/item/weapon/cell/device/weapon/recharge/alien, -/obj/item/weapon/cell/device/weapon/recharge/alien, -/obj/item/weapon/cell/device/weapon/recharge/alien, -/obj/item/weapon/cell/device/weapon/recharge/alien, -/obj/item/weapon/cell/device/weapon/recharge/alien, -/obj/item/weapon/material/knife/machete/deluxe{ - default_material = "durasteel" - }, -/obj/item/clothing/accessory/holster/machete, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/vault) -"aBd" = ( -/turf/unsimulated/floor{ - icon_state = "steel_dirty" - }, -/area/skipjack_station) -"aBe" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/orange, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/wood.dmi'; - icon_state = "wood_broken1" - }, -/area/skipjack_station) -"aBf" = ( -/obj/structure/closet/secure_closet/explorer, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aBg" = ( -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aBh" = ( -/obj/machinery/door/morgue, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aBi" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aBj" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1331; - icon_state = "door_closed"; - id_tag = "vox_northeast_lock"; - locked = 0; - req_access = list(150) - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aBk" = ( -/obj/item/weapon/gun/energy/plasmastun, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aBl" = ( -/obj/structure/closet/secure_closet/nanotrasen_commander, -/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hos, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aBm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 1; - icon_state = "pdoor0"; - id = "ship-sec-equip"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/mothership/security) -"aBn" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/surgery) -"aBo" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aBp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/surgery) -"aBq" = ( -/obj/machinery/smartfridge, -/turf/simulated/floor/plating, -/area/mothership/chemistry) -"aBr" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/chemistry) -"aBs" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aBt" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/vault) -"aBu" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aBv" = ( -/obj/machinery/teleport/station, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"aBw" = ( +"Bw" = ( /turf/unsimulated/beach/water, /area/beach) -"aBx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aBy" = ( -/obj/machinery/recharger, -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aBz" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aBA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aBB" = ( -/obj/structure/closet/secure_closet/detective, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aBC" = ( -/obj/machinery/teleport/station, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/ninja_dojo/dojo) -"aBD" = ( +"BD" = ( /obj/effect/overlay/palmtree_r, /turf/unsimulated/beach/sand, /area/beach) -"aBE" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/device/radio/uplink, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aBF" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/treatment) -"aBG" = ( -/obj/machinery/vending/blood, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBH" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1331; - id_tag = "skipjack_shuttle"; - pixel_x = -24; - req_access = list(150); - tag_airpump = "vox_east_vent"; - tag_chamber_sensor = "vox_east_sensor"; - tag_exterior_door = "vox_northeast_lock"; - tag_interior_door = "vox_southeast_lock" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1331; - id_tag = "vox_east_vent" - }, -/obj/machinery/light/small, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aBI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "ship-med-treatment"; - name = "Blast Doors Controls"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBJ" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBK" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBL" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBM" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBN" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aBO" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBP" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/treatment) -"aBQ" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aBR" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"aBS" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aBT" = ( -/obj/structure/ladder, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aBU" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aBV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 1; - icon_state = "pdoor0"; - id = "ship-med-treatment"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/mothership/treatment) -"aBW" = ( -/obj/structure/closet/crate/freezer, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBY" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aBZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCa" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCb" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2; - req_one_access = list(5) - }, -/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/techmaint, -/area/mothership/treatment) -"aCc" = ( -/obj/machinery/status_display{ - pixel_y = -29 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aCd" = ( -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"aCe" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aCf" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aCg" = ( -/obj/machinery/airlock_sensor{ - frequency = 1331; - id_tag = "vox_west_sensor"; - pixel_x = 25 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aCh" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/ninja_dojo/dojo) -"aCi" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"aCj" = ( -/obj/structure/table/glass, -/obj/item/clothing/mask/balaclava, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aCk" = ( -/obj/machinery/status_display{ - pixel_y = -29 - }, -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/hallway) -"aCl" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/weapon/towel{ - color = "#FF6666"; - name = "light red towel" - }, -/obj/item/weapon/towel{ - color = "#FF6666"; - name = "light red towel" - }, -/obj/random/soap, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/ninja_dojo/dojo) -"aCm" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2; - req_one_access = list(1) - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aCn" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aCo" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/closet/secure_closet/pathfinder, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aCp" = ( -/obj/structure/closet/bombcloset/double, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/recharger/wallcharger{ - pixel_x = 3; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aCq" = ( -/obj/structure/closet/wardrobe/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 3; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aCr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aCs" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/retail_scanner/security, -/obj/item/device/retail_scanner/security, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aCt" = ( -/obj/structure/table/steel_reinforced, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo, -/obj/item/clothing/accessory/badge/holo, -/obj/machinery/button/remote/blast_door{ - id = "ship-sec-equip"; - name = "Blast Doors Controls"; - pixel_y = -28 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"aCu" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"aCv" = ( -/obj/structure/filingcabinet/chestdrawer{ - name = "Scan Records" - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCw" = ( -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCy" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCz" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCA" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCB" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm3) -"aCC" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm3) -"aCD" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm4) -"aCE" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aCF" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm4) -"aCG" = ( -/obj/structure/flora/tree/pine, -/turf/unsimulated/floor{ - dir = 2; - icon = 'icons/turf/snow_new.dmi'; - icon_state = "snow"; - name = "snow" - }, -/area/ninja_dojo/dojo) -"aCH" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/sechallway) -"aCI" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/sechallway) -"aCJ" = ( -/obj/machinery/door/airlock/security, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aCK" = ( -/obj/structure/bed/chair, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"aCL" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/processing) -"aCM" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/processing) -"aCN" = ( -/obj/machinery/door/airlock/security, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aCO" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/item/weapon/tool/screwdriver, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCP" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCQ" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aCR" = ( -/obj/item/weapon/bedsheet/captaindouble, -/obj/structure/bed/double/padded, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/button/remote/airlock{ - id = "ship-dorm3-door"; - name = "Dorm 3 Lock"; - pixel_x = 6; - pixel_y = 26; - specialfunctions = 4 - }, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, -/area/mothership/dorm3) -"aCS" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm3) -"aCT" = ( -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm3) -"aCU" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - glass = 0; - id_tag = "ship-dorm3-door"; - opacity = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/white, -/area/mothership/dorm3) -"aCV" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aCW" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - glass = 0; - id_tag = "ship-dorm4-door"; - opacity = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/white, -/area/mothership/dorm4) -"aCX" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm4) -"aCY" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm4) -"aCZ" = ( -/obj/item/weapon/bedsheet/captaindouble, -/obj/structure/bed/double/padded, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/button/remote/airlock{ - id = "ship-dorm4-door"; - name = "Dorm 4 Lock"; - pixel_x = -6; - pixel_y = 26; - specialfunctions = 4 - }, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, -/area/mothership/dorm4) -"aDa" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor_dred" - }, -/area/shuttle/mercenary) -"aDb" = ( -/obj/machinery/airlock_sensor{ - frequency = 1331; - id_tag = "ninja_shuttle_sensor"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/effect/shuttle_landmark{ - base_area = /area/ninja_dojo/dojo; - base_turf = /turf/unsimulated/floor; - landmark_tag = "ninja_base"; - name = "The Dojo" - }, -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"aDc" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aDd" = ( -/obj/effect/floor_decal/carpet, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/ninja_dojo/dojo) -"aDe" = ( -/obj/structure/cable/cyan{ - 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/mothership/sechallway) -"aDf" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDg" = ( -/obj/machinery/shower{ - dir = 8; - icon_state = "shower"; - pixel_x = -5; - pixel_y = -1 - }, -/obj/structure/curtain/open/shower/medical, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/ninja_dojo/dojo) -"aDh" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/folder/red{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/weapon/folder/red, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDj" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/box/evidence, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDk" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/hop, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/skipjack_station) -"aDl" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDm" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/defib_kit/compact/combat/loaded, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDp" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDq" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDr" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDs" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDt" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/mothership/dorm3) -"aDu" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/obj/machinery/status_display{ - pixel_y = -29 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm3) -"aDv" = ( -/obj/structure/closet/wardrobe/ert, -/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/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/wood, -/area/mothership/dorm3) -"aDw" = ( +"Cw" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Dw" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/snacks/chips, /turf/unsimulated/beach/sand, /area/beach) -"aDx" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aDy" = ( -/obj/structure/closet/wardrobe/ert, -/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/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/wood, -/area/mothership/dorm4) -"aDz" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/obj/machinery/status_display{ - pixel_y = -29 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm4) -"aDA" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/mothership/dorm4) -"aDB" = ( -/obj/structure/cable/cyan{ - 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{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aDC" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rig_module/chem_dispenser/ninja, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aDD" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/camera, -/obj/item/device/retail_scanner/security, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDE" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDF" = ( -/obj/item/device/suit_cooling_unit, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aDG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDH" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDI" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDJ" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDK" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/vox/carapace, -/obj/item/clothing/suit/space/vox/carapace, -/obj/item/clothing/head/helmet/space/vox/carapace, -/obj/item/clothing/head/helmet/space/vox/carapace, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aDL" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDM" = ( -/obj/structure/kitchenspike, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aDN" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDO" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 12; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aDP" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/morgue) -"aDQ" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"aDR" = ( -/obj/machinery/door_timer/cell_1{ - id = "Cell M1"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aDS" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - 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 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aDT" = ( -/obj/machinery/door/airlock/security, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/techmaint, -/area/mothership/processing) -"aDU" = ( -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/processing) -"aDV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDX" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDY" = ( -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - frequency = 1439; - pixel_x = 22; - pixel_y = 0; - report_danger_level = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aDZ" = ( -/obj/machinery/gibber, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aEa" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/treatment) -"aEb" = ( -/obj/machinery/door/airlock/medical, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aEc" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/skipjack) -"aEd" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/white, -/area/mothership/treatment) -"aEe" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aEf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aEg" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aEh" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aEi" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aEj" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell M1" - }, -/obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aEk" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "ship-sec-cell1"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/mothership/sechallway) -"aEl" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aEm" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/sechallway) -"aEn" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aEo" = ( -/obj/structure/closet/crate, -/obj/item/clothing/gloves/vox, -/obj/item/clothing/gloves/vox, -/obj/item/clothing/gloves/vox, -/obj/item/clothing/gloves/vox, -/obj/item/clothing/gloves/vox, -/obj/item/clothing/gloves/vox, -/obj/item/clothing/shoes/magboots/vox, -/obj/item/clothing/shoes/magboots/vox, -/obj/item/clothing/shoes/magboots/vox, -/obj/item/clothing/shoes/magboots/vox, -/obj/item/clothing/shoes/magboots/vox, -/obj/item/clothing/shoes/magboots/vox, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aEp" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/gas/swat/vox, -/obj/item/clothing/mask/gas/swat/vox, -/obj/item/clothing/mask/gas/swat/vox, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aEq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aEr" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aEs" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/body_scanconsole, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aEt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aEu" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/resleeving) -"aEv" = ( -/obj/structure/table/rack, -/obj/item/clothing/glasses/thermal/plain/monocle, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aEw" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/ninja_dojo/dojo) -"aEx" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEy" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEA" = ( -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/ninja_dojo/dojo) -"aEB" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEC" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aED" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEE" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEF" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150) - }, -/turf/simulated/shuttle/floor/red, -/area/shuttle/skipjack) -"aEG" = ( -/obj/machinery/vending/medical, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEH" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/blue, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/skipjack_station) -"aEI" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/morgue) -"aEJ" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aEK" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aEL" = ( -/obj/machinery/camera/network/ert{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aEM" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 4; - id = "Cell M1"; - name = "Cell 1"; - req_access = list(2) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "ship-sec-cell1"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/mothership/sechallway) -"aEN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aEO" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - frequency = 1439; - pixel_x = 22; - pixel_y = 0; - report_danger_level = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aEP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aEQ" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aER" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aES" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/processing) -"aET" = ( +"ET" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/centcom/simulated/terminal) -"aEU" = ( -/obj/item/weapon/ore, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aEV" = ( -/obj/machinery/computer/transhuman/designer{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEX" = ( -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"aEY" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aEZ" = ( -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aFa" = ( +"Fa" = ( /obj/structure/table/standard, /turf/unsimulated/beach/sand, /area/beach) -"aFb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFe" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; - icon_state = "map" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFf" = ( -/obj/structure/cable/cyan{ - 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/white, -/area/mothership/resleeving) -"aFg" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/medical, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aFh" = ( -/obj/structure/cable/cyan{ - 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 = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aFi" = ( -/obj/structure/closet/walllocker{ - name = "Janitor Locker"; - pixel_x = 32 - }, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/soap/nanotrasen, -/obj/item/weapon/soap/deluxe, -/obj/item/weapon/soap, -/obj/item/weapon/rig/ert/janitor, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aFj" = ( -/obj/machinery/door_timer/cell_2{ - id = "Cell M2"; - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aFk" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aFl" = ( -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aFm" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/warden) -"aFn" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/warden) -"aFo" = ( -/obj/machinery/door/airlock/security, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aFp" = ( +"Fp" = ( /turf/simulated/floor/maglev, /area/centcom/simulated/terminal) -"aFq" = ( -/obj/machinery/vending/loadout/uniform, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFs" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/ninja_dojo/dojo) -"aFt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFu" = ( -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFv" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFw" = ( -/obj/item/weapon/rig/light/stealth, -/obj/structure/table/rack, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aFx" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aFz" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aFA" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aFB" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell M2" - }, -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aFC" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "ship-sec-cell2"; - name = "Security Blast Doors"; - opacity = 0 - }, -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/mothership/sechallway) -"aFD" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/sechallway) -"aFE" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aFF" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/ninja_dojo/dojo) -"aFG" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aFH" = ( +"FH" = ( /obj/structure/bed/chair, /obj/effect/landmark{ name = "endgame_exit" @@ -15612,1361 +1919,21 @@ }, /turf/unsimulated/beach/sand, /area/beach) -"aFI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aFJ" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aFK" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "ship-sec-cell1"; - name = "Cell 1 Blast Doors"; - pixel_x = 28; - pixel_y = 6; - req_one_access = list(2) - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "ship-sec-cell2"; - name = "Cell 2 Blast Doors"; - pixel_x = 28; - pixel_y = -6; - req_one_access = list(2) - }, -/obj/machinery/button/remote/blast_door{ - id = "ship-sec-warden"; - name = "Blast Doors Controls"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aFL" = ( -/obj/machinery/organ_printer/flesh, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFM" = ( -/obj/item/target, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aFN" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/material/sword/katana, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aFO" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aFP" = ( -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/weapon/storage/firstaid/o2{ - layer = 2.8; - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/storage/box/masks{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/fire{ - layer = 2.9; - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -2 - }, -/obj/item/weapon/reagent_containers/blood/empty, -/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/structure/closet/medical_wall{ - pixel_y = -32 - }, -/obj/item/weapon/storage/box/body_record_disk, -/obj/item/weapon/storage/firstaid/insiderepair, -/obj/item/weapon/storage/firstaid/clotting, -/obj/item/weapon/storage/firstaid/bonemed, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -2 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFQ" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aFR" = ( -/obj/machinery/transhuman/synthprinter, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFS" = ( -/obj/machinery/clonepod/transhuman/full, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFT" = ( -/obj/machinery/transhuman/resleever, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFU" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/white, -/area/mothership/resleeving) -"aFV" = ( -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/ninja_dojo/dojo) -"aFW" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aFX" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/storage/firstaid/adv, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/ninja_dojo/dojo) -"aFY" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/morgue) -"aFZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/window/brigdoor/southleft{ - dir = 4; - id = "Cell M2"; - name = "Cell 2"; - req_access = list(2) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "ship-sec-cell2"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/mothership/sechallway) -"aGa" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGb" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 1; - icon_state = "pdoor0"; - id = "ship-sec-warden"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/mothership/warden) -"aGe" = ( -/obj/machinery/computer/shuttle_control/multi/skipjack, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aGf" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/medical) -"aGg" = ( -/obj/machinery/door/airlock/medical, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGh" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ninjawindow"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/ninja) -"aGj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - 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/mothership/sechallway) -"aGk" = ( -/obj/structure/table/steel, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aGl" = ( -/obj/machinery/door/airlock/security, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/techmaint, -/area/mothership/warden) -"aGm" = ( -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/warden) -"aGn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGp" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/stamp/ward, -/obj/item/weapon/stamp/denied{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGq" = ( +"Ga" = ( +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Gq" = ( /turf/unsimulated/wall, /area/beach) -"aGr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGs" = ( -/obj/machinery/vending/medical, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGt" = ( -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGv" = ( -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/adv, -/obj/structure/table/steel_reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGw" = ( +"Gw" = ( /obj/effect/overlay/palmtree_l, /turf/unsimulated/beach/sand, /area/beach) -"aGx" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/space, -/area/space) -"aGy" = ( -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGz" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless, -/area/shuttle/skipjack) -"aGA" = ( -/obj/item/weapon/storage/firstaid/combat{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/combat, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGB" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGC" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGD" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/mothership/dorm5) -"aGE" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/obj/machinery/status_display{ - pixel_y = 29 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm5) -"aGF" = ( -/obj/structure/closet/wardrobe/ert, -/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/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/wood, -/area/mothership/dorm5) -"aGG" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm5) -"aGH" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm6) -"aGI" = ( -/obj/structure/closet/wardrobe/ert, -/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/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/wood, -/area/mothership/dorm6) -"aGJ" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/obj/machinery/status_display{ - pixel_y = 29 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm6) -"aGK" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/mothership/dorm6) -"aGL" = ( -/obj/item/weapon/gun/projectile/shotgun/pump/combat{ - ammo_type = /obj/item/ammo_casing/a12g/beanbag; - desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; - name = "warden's shotgun" - }, -/obj/item/weapon/book/manual/security_space_law, -/obj/structure/closet/secure_closet/nanotrasen_warden, -/obj/machinery/power/apc{ - alarms_hidden = 1; - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGN" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/red, -/obj/item/weapon/pen, -/obj/item/device/radio{ - pixel_x = -4 - }, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/tool/wrench, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aGO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 1; - icon_state = "pdoor0"; - id = "ship-med-equip"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/mothership/medical) -"aGP" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGS" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGT" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aGU" = ( -/obj/item/weapon/bedsheet/captaindouble, -/obj/structure/bed/double/padded, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/button/remote/airlock{ - id = "ship-dorm5-door"; - name = "Dorm 5 Lock"; - pixel_x = 6; - pixel_y = -26; - specialfunctions = 4 - }, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, -/area/mothership/dorm5) -"aGV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/mothership/dorm5) -"aGW" = ( -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm5) -"aGX" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - glass = 0; - id_tag = "ship-dorm5-door"; - opacity = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/white, -/area/mothership/dorm5) -"aGY" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aGZ" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - glass = 0; - id_tag = "ship-dorm6-door"; - opacity = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/white, -/area/mothership/dorm6) -"aHa" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/mothership/dorm6) -"aHb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/mothership/dorm6) -"aHc" = ( -/obj/item/weapon/bedsheet/captaindouble, -/obj/structure/bed/double/padded, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/button/remote/airlock{ - id = "ship-dorm6-door"; - name = "Dorm 6 Lock"; - pixel_x = -6; - pixel_y = -26; - specialfunctions = 4 - }, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, -/area/mothership/dorm6) -"aHd" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/retail_scanner/security, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aHe" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/ninja_dojo/dojo) -"aHf" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/ninja_dojo/dojo) -"aHg" = ( -/obj/structure/table/rack, -/obj/random/rigsuit, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aHh" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aHi" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aHj" = ( -/obj/machinery/computer/prisoner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/warden) -"aHk" = ( -/obj/structure/closet/secure_closet/CMO, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHl" = ( -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/fire, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHm" = ( -/obj/item/weapon/ore, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aHn" = ( -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHo" = ( -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/regular, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHp" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHq" = ( -/obj/machinery/space_heater, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aHr" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm5) -"aHs" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/dorm6) -"aHt" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/armory) -"aHu" = ( -/obj/machinery/door/airlock/highsecurity{ - req_one_access = list(103) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aHv" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/armory) -"aHw" = ( -/obj/machinery/door/airlock/highsecurity{ - req_one_access = list(103) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aHx" = ( -/obj/structure/closet/secure_closet/sar, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHz" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHB" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - 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/white, -/area/mothership/medical) -"aHC" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/techmaint, -/area/mothership/medical) -"aHD" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/obj/random/powercell, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aHE" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aHF" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - 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 = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aHG" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - destroy_hits = 100; - id = "ship-armory"; - name = "Armory" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aHH" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - 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/mothership/armory) -"aHI" = ( -/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, -/obj/item/weapon/gun/projectile/p92x, -/obj/item/weapon/gun/projectile/p92x, -/obj/item/weapon/gun/projectile/p92x, -/obj/structure/closet/secure_closet/guncabinet{ - req_one_access = list(103) - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aHJ" = ( -/obj/structure/table/standard, -/obj/item/weapon/surgical/bonesetter, -/obj/item/weapon/surgical/bonegel, -/obj/item/weapon/surgical/FixOVein, -/obj/item/stack/nanopaste, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aHK" = ( -/obj/item/ammo_magazine/m9mm/compact, -/obj/item/ammo_magazine/m9mm/compact, -/obj/item/ammo_magazine/m9mm/compact, -/obj/item/ammo_magazine/m9mm/compact, -/obj/item/ammo_magazine/m9mm/compact, -/obj/item/ammo_magazine/m9mm/compact, -/obj/item/ammo_magazine/m9mm/compact/flash, -/obj/item/ammo_magazine/m9mm/compact/flash, -/obj/item/ammo_magazine/m9mm/compact/flash, -/obj/item/ammo_magazine/m9mm/compact/rubber, -/obj/item/ammo_magazine/m9mm/compact/rubber, -/obj/item/ammo_magazine/m9mm/compact/rubber, -/obj/item/ammo_magazine/m9mm/compact/practice, -/obj/item/ammo_magazine/m9mm/compact/practice, -/obj/item/ammo_magazine/m9mm/compact/practice, -/obj/item/weapon/gun/projectile/pistol, -/obj/item/weapon/gun/projectile/pistol, -/obj/item/weapon/gun/projectile/pistol, -/obj/structure/closet/secure_closet/guncabinet{ - req_one_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aHL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "ninjawindow"; - name = "Blast Shutters"; - opacity = 0 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/ninja) -"aHM" = ( -/obj/item/weapon/gun/energy/frontier/locked/carbine, -/obj/item/weapon/gun/energy/frontier/locked/carbine, -/obj/item/weapon/gun/energy/frontier/locked/carbine, -/obj/item/weapon/gun/energy/frontier/locked/carbine, -/obj/item/weapon/gun/energy/frontier/locked/holdout, -/obj/item/weapon/gun/energy/frontier/locked/holdout, -/obj/item/weapon/gun/energy/frontier/locked/holdout, -/obj/item/weapon/gun/energy/frontier/locked/holdout, -/obj/structure/closet/secure_closet/guncabinet{ - req_one_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aHN" = ( -/obj/structure/table/rack, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aHO" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aHP" = ( -/obj/machinery/vending/nifsoft_shop{ - categories = 111; - emagged = 1; - name = "Hacked NIFSoft Shop"; - prices = list() - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aHQ" = ( -/obj/structure/table/steel_reinforced, -/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/cell/hyper, -/obj/item/weapon/cell/hyper, -/obj/item/weapon/cell/hyper, -/obj/item/weapon/cell/hyper, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aHR" = ( -/obj/machinery/disposal, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHS" = ( -/obj/item/robot_parts/head, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aHT" = ( -/obj/machinery/button/remote/blast_door{ - id = "ship-med-equip"; - name = "Blast Doors Controls"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHU" = ( -/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, -/obj/item/weapon/storage/backpack/dufflebag/syndie/med, -/obj/item/weapon/storage/backpack/dufflebag/syndie/med, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHV" = ( -/obj/item/device/healthanalyzer/advanced, -/obj/item/device/healthanalyzer/advanced, -/obj/item/device/healthanalyzer/advanced, -/obj/item/device/healthanalyzer/advanced, -/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/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHW" = ( -/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/device/defib_kit/compact/combat/loaded, -/obj/item/device/defib_kit/compact/combat/loaded, -/obj/structure/table/rack/shelf/steel, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHX" = ( -/obj/machinery/recharger{ - pixel_y = 0 - }, -/obj/structure/table/steel_reinforced, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aHY" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aHZ" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 2 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/medical) -"aIa" = ( -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"aIb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aIc" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2; - req_one_access = list(103) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - destroy_hits = 100; - id = "ship-armory"; - name = "Armory" - }, -/obj/machinery/button/remote/blast_door{ - id = "ship-armory"; - name = "Blast Doors Controls"; - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aId" = ( -/turf/simulated/mineral, -/area/skipjack_station) -"aIe" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIg" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"aIh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIj" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/screwdriver, -/obj/item/weapon/tool/wrench, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIk" = ( +"HQ" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Ik" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/drinks/cans/cola, /obj/item/weapon/reagent_containers/food/drinks/cans/cola, @@ -16976,589 +1943,11 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/cola, /turf/unsimulated/beach/sand, /area/beach) -"aIl" = ( -/obj/item/weapon/ore, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "asteroid_dug" - }, -/area/skipjack_station) -"aIm" = ( -/obj/machinery/door/airlock/research, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aIn" = ( -/obj/machinery/door/airlock/research, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/white, -/area/mothership/medical) -"aIo" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/bridge) -"aIp" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/bridge) -"aIq" = ( -/obj/item/weapon/storage/box/flashshells, -/obj/item/weapon/storage/box/flashshells, -/obj/item/weapon/storage/box/stunshells, -/obj/item/weapon/storage/box/stunshells, -/obj/item/weapon/storage/box/beanbags, -/obj/item/weapon/storage/box/beanbags, -/obj/item/weapon/storage/box/empshells/large, -/obj/item/weapon/storage/box/empshells/large, -/obj/item/weapon/storage/box/shotgunammo/large, -/obj/item/weapon/storage/box/shotgunammo/large, -/obj/item/weapon/storage/box/shotgunammo/large, -/obj/item/weapon/storage/box/shotgunammo/large, -/obj/item/weapon/storage/box/shotgunshells/large, -/obj/item/weapon/storage/box/shotgunshells/large, -/obj/item/weapon/storage/box/shotgunshells/large, -/obj/item/weapon/storage/box/shotgunshells/large, -/obj/item/weapon/gun/projectile/shotgun/pump/combat, -/obj/item/weapon/gun/projectile/shotgun/pump/combat, -/obj/structure/closet/secure_closet/guncabinet{ - req_one_access = list(103) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 2; - start_pressure = 740.5 - }, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"aIs" = ( -/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/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/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/material/knife/tacknife/survival, -/obj/item/weapon/material/knife/tacknife/survival, -/obj/item/weapon/material/knife/tacknife/survival, -/obj/item/weapon/material/knife/tacknife/survival, -/obj/item/weapon/material/knife/tacknife/survival, -/obj/item/weapon/material/knife/machete, -/obj/item/weapon/material/knife/machete, -/obj/item/weapon/material/knife/machete, -/obj/item/clothing/accessory/holster/machete, -/obj/item/clothing/accessory/holster/machete, -/obj/item/clothing/accessory/holster/machete, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIt" = ( -/obj/structure/closet/crate/secure/weapon{ - req_one_access = list(108) - }, -/obj/item/weapon/storage/box/frags, -/obj/item/weapon/storage/box/frags, -/obj/item/weapon/storage/box/teargas, -/obj/item/weapon/storage/box/teargas, -/obj/item/weapon/storage/box/empslite, -/obj/item/weapon/storage/box/empslite, -/obj/item/weapon/storage/box/smokes, -/obj/item/weapon/storage/box/smokes, -/obj/item/weapon/storage/box/flashbangs, -/obj/item/weapon/storage/box/flashbangs, -/obj/item/weapon/gun/launcher/grenade, -/obj/item/weapon/gun/launcher/grenade, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIu" = ( -/obj/item/rig_module/grenade_launcher/smoke, -/obj/item/rig_module/cleaner_launcher, -/obj/item/rig_module/grenade_launcher, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIv" = ( -/obj/item/rig_module/vision/multi, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIw" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/rnd) -"aIx" = ( -/obj/item/weapon/bedsheet/hos, -/obj/structure/bed/padded, -/turf/simulated/shuttle/floor/red, -/area/shuttle/skipjack) -"aIy" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/vox/vox_casual, -/obj/item/clothing/under/vox/vox_casual, -/obj/item/clothing/under/vox/vox_casual, -/obj/item/clothing/under/vox/vox_robes, -/obj/item/clothing/under/vox/vox_robes, -/obj/item/clothing/under/vox/vox_robes, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aIz" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aIA" = ( -/obj/machinery/space_heater, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/wood.dmi'; - icon_state = "wood_broken3" - }, -/area/ninja_dojo/dojo) -"aIB" = ( -/obj/machinery/computer/rdconsole/core, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aIC" = ( -/obj/structure/table/standard, -/obj/item/device/paicard, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"aID" = ( -/obj/item/pizzabox/meat, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aIE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aIF" = ( -/obj/machinery/pros_fabricator, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aIG" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"aIH" = ( -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Centcom Autolathe" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aII" = ( -/obj/machinery/mecha_part_fabricator, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aIJ" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aIK" = ( -/obj/machinery/status_display{ - pixel_y = 29 - }, -/obj/item/modular_computer/console/preset/mercenary, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aIL" = ( -/obj/item/target/syndicate, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aIM" = ( -/obj/machinery/door/airlock/external{ - req_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"aIN" = ( -/obj/structure/prop/alien/computer{ - icon_state = "console-c"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aIO" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - docking_controller = "trade_shuttle_bay"; - landmark_tag = "trade_dock"; - name = "Trader Station" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/trade) -"aIP" = ( -/obj/structure/table/glass, -/obj/item/clothing/mask/balaclava/tactical{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/clothing/mask/balaclava, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aIQ" = ( -/obj/item/modular_computer/telescreen/preset/generic{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aIR" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aIS" = ( -/obj/machinery/airlock_sensor{ - frequency = 1331; - id_tag = "vox_east_sensor"; - pixel_x = -25 - }, -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - docking_controller = null; - landmark_tag = "skipjack_base"; - name = "The Hideaway" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aIT" = ( -/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/ammo_magazine/m545/ap, -/obj/item/ammo_magazine/m545/ap, -/obj/item/ammo_magazine/m545/ap, -/obj/item/ammo_magazine/m545/ap, -/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, -/obj/item/ammo_magazine/m545, -/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/structure/closet/secure_closet/guncabinet{ - req_one_access = list(103) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIU" = ( -/obj/item/clothing/suit/armor/vest/ert/command, -/obj/item/clothing/head/helmet/ert/command, -/obj/item/weapon/storage/backpack/ert/commander, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIV" = ( -/obj/structure/closet/crate/secure/weapon{ - req_one_access = list(108) - }, -/obj/item/weapon/rig/ert/assetprotection, -/obj/item/weapon/rig/ert/assetprotection, -/obj/item/clothing/glasses/thermal, -/obj/item/clothing/glasses/thermal, -/obj/item/clothing/suit/armor/pcarrier/merc, -/obj/item/clothing/suit/armor/pcarrier/merc, -/obj/item/clothing/head/helmet/merc, -/obj/item/clothing/head/helmet/merc, -/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, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIW" = ( -/obj/structure/table/standard, -/obj/item/weapon/handcuffs/legcuffs, -/turf/simulated/shuttle/floor/black, -/area/shuttle/skipjack) -"aIX" = ( -/obj/item/rig_module/mounted, -/obj/item/rig_module/mounted, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIY" = ( -/obj/structure/table/rack/steel, -/obj/machinery/door/window/survival_pod{ - dir = 8; - req_one_access = list(103) - }, -/obj/structure/window/reinforced/survival_pod{ - dir = 1 - }, -/obj/item/weapon/rig/ert, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aIZ" = ( -/obj/structure/reagent_dispensers/acid{ - density = 0; - pixel_x = -30; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJc" = ( -/turf/simulated/shuttle/wall/voidcraft/green, -/area/shuttle/ninja) -"aJd" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJe" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"aJf" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/westleft, -/obj/machinery/door/window/eastright, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJg" = ( -/obj/item/weapon/bedsheet/rainbow, -/obj/structure/bed/padded, -/turf/simulated/shuttle/floor/red, -/area/shuttle/skipjack) -"aJh" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aJi" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rig_module/fabricator/energy_net, -/obj/item/rig_module/vision/multi, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aJj" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aJk" = ( -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/ninja_dojo/dojo) -"aJl" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aJm" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aJn" = ( -/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/ammo_magazine/m9mmp90, -/obj/item/ammo_magazine/m9mmp90, -/obj/item/weapon/gun/projectile/automatic/p90, -/obj/item/weapon/gun/projectile/automatic/p90, -/obj/item/ammo_magazine/m9mmt/flash, -/obj/item/ammo_magazine/m9mmt/flash, -/obj/item/ammo_magazine/m9mmt/flash, -/obj/item/ammo_magazine/m9mmt/flash, -/obj/item/ammo_magazine/m9mmt/rubber, -/obj/item/ammo_magazine/m9mmt/rubber, -/obj/item/ammo_magazine/m9mmt/rubber, -/obj/item/ammo_magazine/m9mmt/rubber, -/obj/structure/closet/secure_closet/guncabinet{ - req_one_access = list(103) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aJo" = ( -/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/weapon/storage/backpack/ert/security, -/obj/item/weapon/storage/backpack/ert/security, -/obj/item/weapon/storage/backpack/ert/security, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aJp" = ( -/obj/structure/mirror/raider{ - pixel_x = -32 - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/skipjack_station) -"aJq" = ( -/obj/structure/ore_box, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aJr" = ( -/obj/structure/closet/crate/secure/weapon{ - req_one_access = list(108) - }, -/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, -/obj/item/ammo_magazine/m545saw/ap, -/obj/item/ammo_magazine/m545saw/ap, -/obj/item/ammo_magazine/m545saw/ap, -/obj/item/ammo_magazine/m545saw/ap, -/obj/item/ammo_magazine/m545saw/ap, -/obj/item/ammo_magazine/m545saw/ap, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aJs" = ( -/obj/item/rig_module/mounted/egun, -/obj/item/rig_module/mounted/egun, -/obj/item/rig_module/mounted/egun, -/obj/item/rig_module/mounted/egun, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aJt" = ( -/obj/item/clothing/mask/gas/swat{ - desc = "A close-fitting mask clearly not made for a human face."; - name = "\improper alien mask" - }, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aJu" = ( -/obj/machinery/microwave{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aJv" = ( -/obj/structure/table/wooden_reinforced, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aJw" = ( -/obj/structure/table/rack/steel, -/obj/machinery/door/window/survival_pod{ - dir = 8; - req_one_access = list(103) - }, -/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/techmaint, -/area/mothership/armory) -"aJx" = ( +"Iq" = ( +/obj/machinery/telecomms/hub/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Jx" = ( /obj/effect/floor_decal/corner_steel_grid/diagonal, /obj/effect/floor_decal/corner_steel_grid/diagonal{ dir = 4 @@ -17568,210 +1957,7 @@ }, /turf/simulated/floor/tiled, /area/centcom/simulated/terminal) -"aJy" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJz" = ( -/obj/structure/table/standard, -/obj/item/weapon/surgical/cautery, -/obj/item/weapon/surgical/retractor, -/obj/item/weapon/reagent_containers/glass/bottle/stoxin, -/obj/item/weapon/reagent_containers/glass/bottle/stoxin, -/obj/item/weapon/reagent_containers/syringe, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aJA" = ( -/obj/machinery/r_n_d/protolathe, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJB" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJC" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJD" = ( -/obj/structure/closet{ - name = "materials" - }, -/obj/fiftyspawner/diamond, -/obj/fiftyspawner/gold, -/obj/fiftyspawner/phoron, -/obj/fiftyspawner/plasteel, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/osmium, -/obj/fiftyspawner/silver, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/uranium, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/durasteel, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJE" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aJF" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aJG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aJH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aJI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aJJ" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aJK" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1331; - master_tag = "vox_east_control"; - pixel_x = 22; - req_access = list(150) - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aJL" = ( -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aJM" = ( -/obj/item/weapon/gun/energy/laser, -/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/structure/closet/secure_closet/guncabinet{ - req_one_access = list(103) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aJN" = ( -/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/weapon/storage/backpack/ert/engineer, -/obj/item/weapon/storage/backpack/ert/engineer, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aJO" = ( -/obj/structure/closet/crate/secure/weapon{ - req_one_access = list(108) - }, -/obj/item/weapon/gun/energy/pulse_rifle, -/obj/item/weapon/gun/energy/pulse_rifle, -/obj/item/weapon/gun/energy/pulse_rifle, -/obj/item/weapon/gun/energy/pulse_rifle, -/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/gun/energy/protector, -/obj/item/weapon/gun/energy/protector, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aJP" = ( -/obj/item/rig_module/device/anomaly_scanner, -/obj/item/rig_module/device/anomaly_scanner, -/obj/item/rig_module/device/rcd, -/obj/item/rig_module/device/rcd, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aJQ" = ( -/obj/structure/table/rack/steel, -/obj/machinery/door/window/survival_pod{ - dir = 8; - req_one_access = list(103) - }, -/obj/item/weapon/rig/ert/engineer, -/obj/item/weapon/rig/ert/engineer, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aJR" = ( +"JR" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -17786,1790 +1972,33 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aJS" = ( -/obj/machinery/vending/robotics, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJT" = ( -/obj/machinery/vending/cart, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJU" = ( -/obj/structure/closet/secure_closet/RD, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJV" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aJW" = ( +"JW" = ( /turf/unsimulated/beach/water{ density = 1; opacity = 1 }, /area/beach) -"aJX" = ( -/turf/simulated/wall/skipjack, -/area/shuttle/skipjack) -"aJY" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1331; - master_tag = "vox_west_control"; - pixel_x = -22; - req_one_access = list(150) - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aJZ" = ( -/obj/structure/closet{ - name = "mechanical equipment" - }, -/obj/item/weapon/storage/toolbox/syndicate/powertools, -/obj/item/weapon/storage/toolbox/syndicate/powertools, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/item/weapon/storage/belt/utility, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/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/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/weapon/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKa" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/rnd) -"aKb" = ( -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/hallway) -"aKc" = ( -/obj/machinery/door/airlock/command{ - req_one_access = list(101) - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bridge) -"aKd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKe" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKf" = ( -/obj/item/modular_computer/console/preset/ert{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKg" = ( -/obj/item/modular_computer/console/preset/ert{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKh" = ( -/obj/item/weapon/bedsheet/orange, -/obj/structure/bed/padded, -/turf/simulated/shuttle/floor/red, -/area/shuttle/skipjack) -"aKi" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKk" = ( -/obj/machinery/door/airlock/command{ - req_one_access = list(101) - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/bridge) -"aKl" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aKm" = ( -/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/structure/closet/secure_closet/guncabinet{ - req_one_access = list(103) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKn" = ( -/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/weapon/storage/backpack/ert/medical, -/obj/item/weapon/storage/backpack/ert/medical, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKo" = ( -/obj/structure/closet/crate/secure/weapon{ - req_one_access = list(108) - }, -/obj/item/weapon/gun/projectile/automatic/z8, -/obj/item/weapon/gun/projectile/automatic/z8, -/obj/item/weapon/gun/projectile/heavysniper, -/obj/item/weapon/storage/box/sniperammo, -/obj/item/weapon/storage/box/sniperammo, -/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/ammo_magazine/m762/ap, -/obj/item/ammo_magazine/m762/ap, -/obj/item/weapon/storage/box/sniperammo, -/obj/item/weapon/storage/box/sniperammo, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKp" = ( -/obj/item/rig_module/device/healthscanner, -/obj/item/rig_module/device/healthscanner, -/obj/item/rig_module/sprinter, -/obj/item/rig_module/sprinter, -/obj/item/rig_module/sprinter, -/obj/item/rig_module/sprinter, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKq" = ( -/obj/structure/table/rack/steel, -/obj/machinery/door/window/survival_pod{ - dir = 8; - req_one_access = list(103) - }, -/obj/structure/window/reinforced/survival_pod, -/obj/item/weapon/rig/ert/medical, -/obj/item/weapon/rig/ert/medical, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKu" = ( -/obj/machinery/door/airlock/research, -/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/techmaint, -/area/mothership/rnd) -"aKv" = ( -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"aKw" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKx" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKy" = ( -/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/structure/closet/secure_closet/guncabinet{ - req_one_access = list(103) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKz" = ( -/obj/item/clothing/glasses/graviton, -/obj/item/clothing/glasses/graviton, -/obj/item/clothing/glasses/graviton, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/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/mask/gas/explorer, -/obj/item/clothing/mask/gas/explorer, -/obj/item/clothing/mask/gas/explorer, -/obj/item/clothing/mask/gas/explorer, -/obj/item/clothing/mask/gas/explorer, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKA" = ( -/obj/structure/closet/crate/secure/weapon{ - req_one_access = list(108) - }, -/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, -/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, -/obj/item/weapon/gun/energy/ionrifle/pistol, -/obj/item/weapon/gun/energy/ionrifle/pistol, -/obj/item/weapon/gun/energy/ionrifle, -/obj/item/weapon/gun/energy/ionrifle, -/obj/item/weapon/gun/energy/netgun, -/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/gun/energy/sniperrifle, -/obj/item/weapon/gun/energy/sniperrifle, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKB" = ( -/obj/item/rig_module/rescue_pharm, -/obj/item/rig_module/rescue_pharm, -/obj/item/rig_module/chem_dispenser/injector, -/obj/item/rig_module/chem_dispenser/injector, -/obj/item/rig_module/chem_dispenser/combat, -/obj/item/rig_module/chem_dispenser/combat, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKC" = ( -/obj/item/rig_module/device/drill, -/obj/item/rig_module/device/drill, -/obj/item/rig_module/device/plasmacutter, -/obj/item/rig_module/device/plasmacutter, -/obj/item/rig_module/device/orescanner, -/obj/item/rig_module/device/orescanner, -/obj/structure/table/rack/shelf/steel, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKD" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKE" = ( -/obj/item/device/defib_kit/jumper_kit, -/obj/structure/table/steel_reinforced, -/obj/item/device/robotanalyzer, -/obj/machinery/light, -/obj/machinery/alarm{ +"ME" = ( +/obj/machinery/computer/rdservercontrol{ + name = "Master R&D Server Controller"; + icon_state = "computer"; dir = 1; - pixel_y = -22 + badmin = 1 }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKF" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKG" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKH" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"aKI" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKJ" = ( -/obj/structure/closet/wardrobe/robotics_black, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aKK" = ( -/obj/machinery/computer/supplycomp{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKL" = ( -/obj/structure/table/rack, -/obj/item/weapon/melee/energy/sword/pirate, -/obj/item/clothing/suit/space/pirate, -/obj/item/clothing/suit/space/pirate, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/pinpointer/shuttle/heist, -/obj/item/weapon/pinpointer/shuttle/heist, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aKM" = ( -/obj/machinery/computer/robotics{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aKN" = ( -/obj/machinery/computer/teleporter, -/turf/simulated/shuttle/plating, -/area/shuttle/ninja) -"aKO" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - 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 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aKP" = ( -/obj/machinery/door/airlock/highsecurity{ - req_one_access = list(103) - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/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/techmaint, -/area/mothership/armory) -"aKQ" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/armory) -"aKR" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKS" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKT" = ( -/obj/machinery/washing_machine, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aKU" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKV" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKW" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 0; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKX" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/ninja_dojo/dojo) -"aKY" = ( -/obj/machinery/vending/security, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/armory) -"aKZ" = ( -/obj/machinery/vending/hydroseeds, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aLa" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ship-mechbay"; - name = "Mech Bay" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aLb" = ( -/obj/structure/table/steel, -/obj/item/device/radio/uplink, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"aLc" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ship-mechbay"; - name = "Mech Bay" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aLd" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "ship-mechbay"; - name = "Mech Bay" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/button/remote/blast_door{ - id = "ship-mechbay"; - name = "Mech Bay Controls"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/rnd) -"aLe" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aLf" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aLg" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aLh" = ( -/obj/machinery/button/remote/airlock{ - id = "ship-vault-door"; - name = "Vault Lock"; - pixel_x = -6; - pixel_y = -26; - req_one_access = list(108); - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/mothership/bridge) -"aLi" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1331; - id_tag = "vox_east_vent" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aLj" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/holodeck) -"aLk" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/robotics) -"aLl" = ( -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLm" = ( -/obj/machinery/floodlight, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aLn" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLo" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLp" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/mothership/robotics) -"aLq" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/mothership/robotics) -"aLr" = ( -/obj/machinery/mech_recharger, -/obj/structure/ghost_pod/manual/lost_drone/dogborg, -/turf/simulated/floor/bluegrid, -/area/mothership/robotics) -"aLs" = ( -/obj/structure/ghost_pod/manual/lost_drone/dogborg, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLt" = ( -/obj/machinery/door/blast/regular{ - id = "ship-mechbay-inner"; - name = "Mech Bay" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/button/remote/blast_door{ - id = "ship-mechbay-inner"; - name = "Mech Bay Controls"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLu" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aLv" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/holodeck) -"aLw" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/holodeck) -"aLx" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/computer/HolodeckControl/holodorm/warship, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/holodeck) -"aLy" = ( -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/ninja_dojo/dojo) -"aLz" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/item/weapon/tank/nitrogen, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aLA" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/mothership/holodeck/holo) -"aLB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - destroy_hits = 1000; - dir = 1; - icon_state = "pdoor0"; - id = "ship-holodeck"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/mothership/holodeck) -"aLC" = ( -/obj/structure/closet/excavation, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLD" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLF" = ( -/turf/simulated/floor/bluegrid, -/area/mothership/robotics) -"aLG" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLH" = ( -/obj/machinery/shower{ - dir = 1 - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/skipjack_station) -"aLI" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/vox/pressure, -/obj/item/clothing/suit/space/vox/pressure, -/obj/item/clothing/head/helmet/space/vox/pressure, -/obj/item/clothing/head/helmet/space/vox/pressure, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aLJ" = ( -/obj/item/seeds/potatoseed, -/obj/item/seeds/potatoseed, -/obj/item/seeds/ambrosiavulgarisseed, -/obj/item/weapon/material/minihoe, -/obj/item/weapon/beartrap, -/obj/structure/table/steel, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aLK" = ( -/obj/machinery/door/blast/regular{ - id = "ship-mechbay-inner"; - name = "Mech Bay" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLL" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aLM" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"aLN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aLO" = ( -/obj/machinery/button/remote/airlock{ - id = "ship-holodeck-door"; - name = "Holodeck Lock"; - pixel_x = -26; - pixel_y = -6; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "ship-holodeck"; - name = "Blast Door Controls"; - pixel_x = -28; - pixel_y = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/holodeck) -"aLP" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/holodeck) -"aLQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"aLR" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLS" = ( -/obj/machinery/cryopod/robot, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLT" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1331; - icon_state = "door_closed"; - id_tag = "vox_southeast_lock"; - locked = 0; - req_access = list(150) - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aLU" = ( -/obj/machinery/computer/cryopod/robot{ - dir = 1; - pixel_y = -28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aLV" = ( -/obj/machinery/mech_recharger, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/bluegrid, -/area/mothership/robotics) -"aLW" = ( -/obj/machinery/light, -/turf/simulated/floor/bluegrid, -/area/mothership/robotics) -"aLX" = ( -/obj/machinery/mech_recharger, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/bluegrid, -/area/mothership/robotics) -"aLY" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/obj/effect/floor_decal/carpet{ - dir = 5 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/skipjack_station) -"aLZ" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aMa" = ( -/obj/machinery/door/blast/regular{ - id = "ship-mechbay-inner"; - name = "Mech Bay" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/robotics) -"aMb" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMc" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/hallway) -"aMd" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMe" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMf" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMg" = ( -/turf/unsimulated/wall{ - desc = "That looks like it doesn't open easily."; - icon = 'icons/obj/doors/rapid_pdoor.dmi'; - icon_state = "pdoor1"; - name = "Shuttle Bay Blast Door" - }, -/area/skipjack_station) -"aMh" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - 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/mothership/hallway) -"aMk" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/voidcraft/vertical{ - id_tag = "ship-holodeck-door"; - opacity = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/holodeck) -"aMl" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/shuttle/ninja) -"aMm" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/holodeck) -"aMn" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/item/weapon/storage/box/survival/space, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/holodeck) -"aMo" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms1) -"aMp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms1) -"aMq" = ( -/obj/structure/table/standard, -/obj/item/weapon/deck/cards, -/turf/simulated/shuttle/floor/black, -/area/shuttle/skipjack) -"aMr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms1) -"aMs" = ( -/obj/item/xenos_claw, -/obj/item/organ/internal/brain/vox, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aMt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms1) -"aMu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMv" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/cryotube) -"aMx" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -28; - pixel_y = 0 - }, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/skipjack_station) -"aMy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/cryotube) -"aMz" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms2) -"aMB" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/paicard, -/obj/item/device/pda/syndicate, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"aMC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms2) -"aMD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms2) -"aME" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms2) -"aMF" = ( -/turf/unsimulated/wall{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "Sealed Door" - }, -/area/mothership/telecomms1) -"aMG" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aMH" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aMI" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aMJ" = ( -/obj/machinery/telecomms/receiver/preset_cent, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aMK" = ( -/obj/machinery/ntnet_relay, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aML" = ( -/obj/machinery/telecomms/broadcaster/preset_cent, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aMM" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aMN" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aMO" = ( -/obj/effect/decal/cleanable/blood, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/skipjack_station) -"aMP" = ( -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/telecomms1) -"aMQ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aMR" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - req_one_access = list(101) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aMS" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aMT" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/cryotube) -"aMU" = ( -/obj/machinery/vending/loadout/accessory, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aMV" = ( -/obj/machinery/vending/loadout/clothing, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aMW" = ( -/obj/machinery/vending/loadout/overwear, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aMX" = ( -/obj/machinery/vending/loadout/uniform, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aMY" = ( -/obj/machinery/vending/loadout/costume, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aMZ" = ( -/obj/machinery/vending/loadout/loadout_misc, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aNa" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/highsecurity{ - req_one_access = list(101) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aNb" = ( -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/telecomms2) -"aNc" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aNd" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aNe" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/sci_outpost, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aNf" = ( -/obj/machinery/account_database{ - name = "CentComm Accounts database" - }, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aNg" = ( -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/wood.dmi'; - icon_state = "wood_broken1" - }, -/area/ninja_dojo/dojo) -"aNh" = ( -/obj/machinery/telecomms/relay/preset/centcom/underdark, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aNi" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aNj" = ( +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Nj" = ( /obj/item/clothing/head/collectable/paper, /turf/unsimulated/beach/sand, /area/beach) -"aNk" = ( -/obj/structure/table/standard, -/obj/effect/decal/cleanable/cobweb2, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/skipjack_station) -"aNl" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aNm" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aNn" = ( -/turf/unsimulated/wall{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "Sealed Door" - }, -/area/mothership/telecomms2) -"aNo" = ( +"No" = ( /obj/item/weapon/beach_ball, /turf/unsimulated/beach/sand, /area/beach) -"aNp" = ( -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aNq" = ( +"Nq" = ( /turf/simulated/floor/tiled, /area/centcom/simulated/terminal) -"aNr" = ( +"Nr" = ( /obj/machinery/cryopod/robot/door/gateway, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -19577,686 +2006,30 @@ }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aNs" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1331; - id_tag = "ninja_shuttle_outer"; - name = "Ship External Hatch"; - req_access = list(150) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "blastninja"; - name = "Outer Airlock"; - opacity = 0 - }, -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"aNt" = ( +"Nt" = ( /turf/unsimulated/beach/sand{ density = 1; opacity = 1 }, /area/beach) -"aNu" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms1) -"aNv" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aNw" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aNx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aNy" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aNz" = ( -/turf/unsimulated/wall, -/area/ninja_dojo/dojo) -"aNA" = ( -/obj/machinery/telecomms/hub/preset_cent, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aNB" = ( -/obj/machinery/computer/rdservercontrol{ - badmin = 1; - dir = 1; - name = "Master RnD Server Controller" - }, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aNC" = ( -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/specops) -"aND" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150) - }, -/turf/unsimulated/floor{ - icon_state = "steel_dirty" - }, -/area/skipjack_station) -"aNE" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aNF" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/hallway) -"aNG" = ( -/obj/machinery/door/airlock/voidcraft/vertical, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/cryotube) -"aNH" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aNI" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aNJ" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aNK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aNL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aNM" = ( -/obj/machinery/door/airlock/voidcraft/vertical, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/mothership/cryotube) -"aNN" = ( -/obj/structure/cable/cyan{ - 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/techmaint, -/area/mothership/hallway) -"aNO" = ( -/obj/structure/sign/department/bar, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/kitchen) -"aNP" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_low, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aNQ" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_low, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aNR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aNS" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aNT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aNU" = ( -/obj/machinery/alarm{ - alarm_id = "anomaly_testing"; - breach_detection = 0; - dir = 8; - frequency = 1439; - pixel_x = 22; - pixel_y = 0; - report_danger_level = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aNV" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms2) -"aNW" = ( -/obj/machinery/telecomms/bus/preset_cent, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aNX" = ( -/obj/machinery/r_n_d/server/centcom, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aNY" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/item/weapon/flame/lighter/zippo, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/weapon/card/emag, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aNZ" = ( -/obj/machinery/telecomms/processor/preset_cent, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aOa" = ( -/obj/machinery/telecomms/server/presets/centcomm, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aOb" = ( -/obj/machinery/telecomms/relay/preset/centcom, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms1) -"aOc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"aOd" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aOe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"aOf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"aOg" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"aOh" = ( -/obj/machinery/door/airlock/engineeringatmos, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOi" = ( -/obj/structure/undies_wardrobe, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aOj" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/mothership/cryotube) -"aOk" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/techfloor/grid, -/area/mothership/cryotube) -"aOl" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/mothership/cryotube) -"aOm" = ( -/obj/machinery/vending/loadout/gadget, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aOn" = ( -/obj/machinery/door/airlock/engineeringatmos, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"aOp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"aOq" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_mid, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aOr" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_high, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aOs" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/midpoint, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aOt" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_high, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aOu" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_mid, -/turf/simulated/floor/bluegrid, -/area/mothership/telecomms2) -"aOv" = ( -/obj/structure/particle_accelerator/end_cap{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aOw" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rig_module/mounted/energy_blade, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aOx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"aOy" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOz" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/power/thermoregulator, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOA" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOC" = ( -/obj/machinery/gear_painter, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aOD" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 2; - name = "south bump"; - pixel_y = -28; - req_access = list(67) - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled/techfloor/grid, -/area/mothership/cryotube) -"aOE" = ( -/obj/machinery/cryopod, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/mothership/cryotube) -"aOF" = ( -/obj/machinery/microwave{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/structure/table/steel, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aOG" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/mothership/cryotube) -"aOH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aOI" = ( -/obj/machinery/computer/cryopod{ - pixel_y = -32 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/mothership/cryotube) -"aOJ" = ( -/obj/machinery/vending/loadout, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/cryotube) -"aOK" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/ninja_dojo/dojo) -"aOL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOM" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aON" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/computer/skills, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOO" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOP" = ( -/obj/structure/particle_accelerator/end_cap{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aOQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aOR" = ( +"OR" = ( /turf/simulated/shuttle/wall, /area/shuttle/escape) -"aOS" = ( -/obj/structure/particle_accelerator/fuel_chamber{ - anchored = 1 +"OU" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aOT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/structure/closet/emcloset/legacy, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/box/survival/space, -/obj/item/weapon/storage/box/syndie_kit/space, -/obj/item/weapon/storage/box/syndie_kit/space, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOU" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 4; - icon_state = "on"; - unlocked = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aOX" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/item/weapon/tool/crowbar, -/obj/item/device/suit_cooling_unit, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aOY" = ( +/turf/unsimulated/floor/steel, +/area/centcom/control) +"OY" = ( /turf/unsimulated/map, /area/overmap) -"aOZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aPa" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/carpet/oracarpet, -/area/mothership/engineering) -"aPb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/mothership/engineering) -"aPc" = ( -/obj/machinery/computer/station_alert/all{ - dir = 8; - icon_state = "computer" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPd" = ( -/obj/structure/particle_accelerator/fuel_chamber{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aPe" = ( +"Pe" = ( /obj/structure/grille, /obj/structure/shuttle/window, /turf/simulated/shuttle/plating, /area/shuttle/escape) -"aPf" = ( +"Pf" = ( /obj/structure/table/woodentable{ dir = 5 }, @@ -20265,345 +2038,10 @@ }, /turf/simulated/floor/tiled, /area/centcom/simulated/terminal) -"aPg" = ( +"Pg" = ( /turf/simulated/shuttle/wall/hard_corner, /area/shuttle/escape) -"aPh" = ( -/obj/structure/particle_accelerator/power_box{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms1) -"aPi" = ( -/obj/item/device/suit_cooling_unit, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aPj" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPk" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPm" = ( -/obj/item/weapon/gun/launcher/crossbow, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aPn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPo" = ( -/obj/effect/landmark{ - name = "voxstart" - }, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/wood.dmi'; - icon_state = "wood_broken2" - }, -/area/skipjack_station) -"aPp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/machinery/pipedispenser/disposal/orderable, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/machinery/pipedispenser/orderable, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPt" = ( -/obj/structure/table/steel_reinforced, -/obj/item/clothing/head/pirate, -/obj/item/clothing/glasses/thermal/plain/monocle, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aPu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - icon_state = "map-supply"; - dir = 1 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aPx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPy" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/multi, -/obj/item/weapon/folder/yellow_ce, -/turf/simulated/floor/carpet/oracarpet, -/area/mothership/engineering) -"aPz" = ( -/turf/simulated/floor/carpet/oracarpet, -/area/mothership/engineering) -"aPA" = ( -/obj/item/modular_computer/console/preset/mercenary{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPB" = ( -/obj/structure/particle_accelerator/power_box{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/telecomms2) -"aPC" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/mothership/telecomms1) -"aPD" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/empty/nitrogen, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - icon_state = "intact"; - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPF" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPG" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - tag_east = 2; - tag_north = 1; - tag_south = 3; - tag_west = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPH" = ( -/obj/machinery/atmospherics/tvalve/digital/mirrored{ - dir = 8; - name = "Filter Bypass" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPI" = ( -/turf/unsimulated/mineral, -/area/ninja_dojo/dojo) -"aPJ" = ( -/obj/machinery/atmospherics/trinary/atmos_filter{ - dir = 4; - filter_type = 0; - filtered_out = list("phoron") - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPK" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/vox/medic, -/obj/item/clothing/suit/space/vox/medic, -/obj/item/clothing/head/helmet/space/vox/medic, -/obj/item/clothing/head/helmet/space/vox/medic, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aPL" = ( -/obj/structure/table/steel, -/obj/item/device/pda/syndicate, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"aPM" = ( -/obj/machinery/atmospherics/trinary/atmos_filter{ - dir = 4; - filter_type = 3; - filtered_out = list("carbon_dioxide") - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPN" = ( -/obj/machinery/atmospherics/trinary/atmos_filter{ - dir = 4; - filter_type = 4; - filtered_out = list("sleeping_agent") - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPQ" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1331; - master_tag = "vox_west_control"; - req_one_access = list(150) - }, -/turf/simulated/wall/skipjack, -/area/shuttle/skipjack) -"aPR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPS" = ( -/obj/item/weapon/tank/vox, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aPT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPU" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPV" = ( -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPW" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/item/weapon/rcd, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rig/ce/equipped, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aPX" = ( -/obj/machinery/computer/station_alert, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aPY" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - tag_airpump = "vox_west_vent"; - tag_exterior_door = "vox_northwest_lock"; - frequency = 1331; - id_tag = "vox_west_control"; - tag_interior_door = "vox_southwest_lock"; - pixel_x = 24; - req_access = list(150); - tag_chamber_sensor = "vox_west_sensor" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1331; - id_tag = "vox_west_vent" - }, -/obj/machinery/light/small, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aPZ" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/mothership/telecomms2) -"aQa" = ( +"Qa" = ( /obj/structure/closet/hydrant{ pixel_x = -30; pixel_y = 0 @@ -20620,463 +2058,30 @@ color = "#cccccc" }, /area/shuttle/escape) -"aQb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/obj/structure/window/reinforced/full, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aQc" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/area/mothership/telecomms1) -"aQd" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQf" = ( -/obj/machinery/atmospherics/trinary/mixer{ - dir = 8; - node1_concentration = 0.21; - node2_concentration = 0.79 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQg" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQh" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQi" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQj" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQk" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/empty/sleeping_agent, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQl" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - icon_state = "map"; - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQm" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1; - icon_state = "freezer"; - use_power = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQn" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 1; - icon_state = "heater"; - use_power = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQq" = ( -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQs" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/area/mothership/telecomms2) -"aQt" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/mask/gas, -/obj/item/device/flashlight, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/extinguisher, -/obj/item/weapon/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQu" = ( -/obj/machinery/vending/assist, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQv" = ( -/obj/structure/particle_accelerator/end_cap{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQw" = ( -/turf/unsimulated/wall{ - icon = 'icons/obj/doors/Dooruranium.dmi'; - icon_state = "door_closed"; - name = "Sealed Door" - }, -/area/ninja_dojo/dojo) -"aQx" = ( -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/material/steel{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/item/stack/material/plasteel{ - amount = 50 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/obj/item/stack/material/glass/reinforced{ - amount = 50 - }, -/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/structure/table/steel_reinforced, -/obj/item/stack/rods, -/obj/item/stack/rods, -/obj/item/stack/material/glass/phoronglass, -/obj/item/stack/material/glass/phoronglass, -/obj/item/stack/rods, -/obj/item/stack/rods, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQz" = ( -/obj/machinery/vending/engivend, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQA" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/mask/gas, -/obj/item/device/flashlight, -/obj/item/weapon/tank/oxygen/red, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/extinguisher, -/obj/item/weapon/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/item/weapon/storage/toolbox/emergency, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQB" = ( -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aQC" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/Dooruranium.dmi' - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aQD" = ( -/obj/machinery/vending/engineering, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQE" = ( -/obj/structure/particle_accelerator/fuel_chamber{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQF" = ( -/obj/structure/bed/pod, -/obj/item/weapon/bedsheet/ce, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQG" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 2; - target_pressure = 200 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQH" = ( -/obj/machinery/vending/tool, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQI" = ( -/obj/item/robot_parts/robot_suit, -/obj/item/robot_parts/r_leg, -/obj/item/robot_parts/r_arm, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aQJ" = ( -/obj/machinery/recharge_station, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/ninja_dojo/dojo) -"aQK" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQL" = ( -/obj/structure/particle_accelerator/power_box{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"aQN" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQO" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQP" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/mothership/engineering) -"aQQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless{ - name = "outer hull" - }, -/area/space) -"aQR" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/engineering) -"aQS" = ( -/turf/unsimulated/wall{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "Sealed Door" - }, -/area/mothership/engineering) -"aQT" = ( -/obj/structure/table/steel, -/obj/item/weapon/deck/cards, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aQU" = ( -/turf/simulated/mineral, -/area/ninja_dojo/dojo) -"aQV" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/area/mothership/engineering) -"aQW" = ( +"QW" = ( /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aQX" = ( +"QX" = ( /obj/structure/bed/chair/shuttle, /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aQY" = ( +"QY" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-21" }, /turf/simulated/floor/tiled, /area/centcom/simulated/terminal) -"aQZ" = ( -/obj/machinery/computer/teleporter, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/ninja_dojo/dojo) -"aRa" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/ninja_dojo/dojo) -"aRb" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"aRc" = ( +"Rc" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, /area/centcom/simulated/terminal) -"aRd" = ( +"Rd" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/machinery/light{ @@ -21086,13 +2091,13 @@ color = "#cccccc" }, /area/shuttle/escape) -"aRe" = ( +"Re" = ( /obj/structure/table/standard, /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aRf" = ( +"Rf" = ( /obj/machinery/status_display{ pixel_y = 30 }, @@ -21104,7 +2109,7 @@ color = "#cccccc" }, /area/shuttle/escape) -"aRg" = ( +"Rg" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -21112,7 +2117,7 @@ color = "#cccccc" }, /area/shuttle/escape) -"aRh" = ( +"Rh" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -21120,7 +2125,7 @@ }, /turf/unsimulated/wall, /area/centcom/simulated/terminal) -"aRi" = ( +"Ri" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1380; icon_state = "door_locked"; @@ -21130,7 +2135,7 @@ }, /turf/simulated/shuttle/floor/yellow, /area/shuttle/escape) -"aRj" = ( +"Rj" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1380; icon_state = "door_locked"; @@ -21140,7 +2145,7 @@ }, /turf/simulated/shuttle/floor/yellow, /area/shuttle/escape) -"aRk" = ( +"Rk" = ( /obj/structure/bed/chair/shuttle, /obj/structure/closet/walllocker/emerglocker{ pixel_x = -28 @@ -21149,7 +2154,7 @@ color = "#cccccc" }, /area/shuttle/escape) -"aRl" = ( +"Rl" = ( /obj/structure/bed/chair/shuttle, /obj/structure/closet/walllocker/emerglocker{ pixel_x = 28 @@ -21158,34 +2163,21 @@ color = "#cccccc" }, /area/shuttle/escape) -"aRm" = ( +"Rm" = ( /obj/structure/table/standard, /obj/random/junk, /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aRn" = ( -/obj/item/weapon/storage/box/syndie_kit/spy, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"aRo" = ( +"Ro" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aRp" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aRq" = ( +"Rq" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -21198,13 +2190,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aRr" = ( +"Rr" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-22" }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/main_hall) -"aRs" = ( +"Rs" = ( /obj/structure/sign/nanotrasen, /obj/effect/shuttle_landmark{ base_area = /area/centcom/simulated/terminal; @@ -21215,14 +2207,14 @@ }, /turf/simulated/shuttle/wall, /area/shuttle/escape) -"aRt" = ( +"Rt" = ( /obj/structure/sign/nanotrasen, /turf/simulated/shuttle/wall, /area/shuttle/escape) -"aRu" = ( +"Ru" = ( /turf/simulated/floor/tiled/steel, /area/centcom/simulated/main_hall) -"aRv" = ( +"Rv" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -21237,21 +2229,21 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aRw" = ( +"Rw" = ( /obj/structure/table/standard, /obj/item/clothing/head/beret/nanotrasen, /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aRx" = ( +"Rx" = ( /obj/structure/table/standard, /obj/random/plushie, /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aRy" = ( +"Ry" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -21262,7 +2254,7 @@ color = "#cccccc" }, /area/shuttle/escape) -"aRz" = ( +"Rz" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -21273,32 +2265,18 @@ color = "#cccccc" }, /area/shuttle/escape) -"aRA" = ( +"RA" = ( /obj/structure/grille, /obj/structure/shuttle/window, /turf/simulated/shuttle/floor/white, /area/shuttle/escape) -"aRB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aRC" = ( +"RC" = ( /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aRD" = ( +"RD" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -21307,20 +2285,20 @@ color = "#cccccc" }, /area/shuttle/escape) -"aRE" = ( +"RE" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/light, /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aRF" = ( +"RF" = ( /obj/random/junk, /turf/simulated/shuttle/floor/white{ color = "#cccccc" }, /area/shuttle/escape) -"aRG" = ( +"RG" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -21329,293 +2307,7 @@ color = "#cccccc" }, /area/shuttle/escape) -"aRH" = ( -/turf/unsimulated/wall, -/area/tdome/tdomeadmin) -"aRI" = ( -/obj/structure/bed/chair, -/obj/effect/landmark{ - name = "tdomeobserve" - }, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/tdome/tdomeobserve) -"aRJ" = ( -/obj/effect/landmark{ - name = "tdomeobserve" - }, -/turf/unsimulated/floor{ - icon_state = "lino" - }, -/area/tdome/tdomeobserve) -"aRK" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/brown, -/obj/item/weapon/melee/energy/axe, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aRL" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/obj/effect/blocker, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/tdome/tdomeobserve) -"aRM" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/brown, -/obj/item/weapon/melee/energy/axe, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aRN" = ( -/obj/structure/inflatable, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aRO" = ( -/obj/machinery/door/blast/regular{ - id = "thunderdomeaxe"; - name = "Axe Supply" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aRP" = ( -/obj/machinery/igniter, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/tdome) -"aRQ" = ( -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/tdome) -"aRR" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/brown, -/obj/item/clothing/suit/armor/tdome/red, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/energy/sword/red, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aRS" = ( -/obj/machinery/door/blast/regular{ - id = "thunderdomegen"; - name = "General Supply" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aRT" = ( -/obj/effect/landmark{ - name = "tdome2" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aRU" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/unsimulated/floor{ - dir = 2; - icon = 'icons/turf/snow_new.dmi'; - icon_state = "snow"; - name = "snow" - }, -/area/ninja_dojo/dojo) -"aRV" = ( -/obj/machinery/door/blast/regular{ - id = "thunderdome"; - name = "Thunderdome Blast Door" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aRW" = ( -/obj/effect/landmark{ - name = "tdome1" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aRX" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/item/weapon/tank/vox, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aRY" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/brown, -/obj/item/clothing/suit/armor/tdome/green, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/energy/sword/green, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aRZ" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark{ - name = "tdome2" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aSa" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/landmark{ - name = "tdome1" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aSb" = ( -/obj/effect/landmark{ - name = "tdome2" - }, -/obj/machinery/camera/network/thunder{ - invisibility = 101 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aSc" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter, -/turf/simulated/shuttle/floor/voidcraft/light, -/area/shuttle/ninja) -"aSd" = ( -/obj/machinery/flasher{ - id = "flash"; - name = "Thunderdome Flash" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/tdome) -"aSe" = ( -/obj/effect/landmark{ - name = "tdome1" - }, -/obj/machinery/camera/network/thunder{ - invisibility = 101 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aSf" = ( -/obj/effect/landmark{ - name = "tdome2" - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aSg" = ( -/obj/machinery/camera/network/thunder{ - invisibility = 101 - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/tdome) -"aSh" = ( -/obj/effect/landmark{ - name = "tdome1" - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aSi" = ( -/obj/machinery/door/blast/regular{ - id = "thunderdomehea"; - name = "Heavy Supply" - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aSj" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/shoes/brown, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/head/helmet/swat, -/obj/item/weapon/gun/energy/laser, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aSk" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/color/green, -/obj/item/clothing/shoes/brown, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/head/helmet/swat, -/obj/item/weapon/gun/energy/laser, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/tdome/tdome1) -"aSl" = ( +"Sl" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 }, @@ -21624,24 +2316,24 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/centcom/simulated/terminal) -"aSm" = ( +"Sm" = ( /turf/simulated/shuttle/wall/alien/blue/hard_corner, /area/unknown/dorm4) -"aSn" = ( +"Sn" = ( /turf/simulated/shuttle/wall/alien/blue, /area/unknown/dorm4) -"aSo" = ( +"So" = ( /obj/machinery/recharge_station, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"aSp" = ( +"Sp" = ( /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"aSq" = ( +"Sq" = ( /obj/structure/toilet, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"aSr" = ( +"Sr" = ( /obj/machinery/shower{ pixel_y = 13 }, @@ -21651,77 +2343,22 @@ }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"aSs" = ( +"Ss" = ( /obj/machinery/door/airlock/alien/blue/public, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"aSt" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1331; - id_tag = "ninja_shuttle"; - pixel_x = 0; - pixel_y = -25; - req_access = list(150) - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1331; - id_tag = "ninja_shuttle_pump" - }, -/obj/machinery/button/remote/blast_door{ - id = "blastninja"; - name = "ship lockdown control"; - pixel_x = -25 - }, -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"aSu" = ( +"Su" = ( /obj/structure/closet/alien, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSv" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 1 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical_wall{ - pixel_x = 32; - pixel_y = 0; - req_access = list(150) - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 1 - }, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aSw" = ( +"Sw" = ( /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSx" = ( +"Sx" = ( /obj/structure/fans, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSy" = ( -/obj/machinery/button/remote/blast_door{ - id = "skipjackshutters"; - name = "remote shutter control"; - req_access = list(150) - }, -/turf/simulated/wall/skipjack, -/area/shuttle/skipjack) -"aSz" = ( +"Sz" = ( /obj/machinery/smartfridge/survival_pod, /obj/item/weapon/storage/mre/menu11, /obj/item/weapon/storage/mre/menu11, @@ -21743,137 +2380,86 @@ /obj/item/weapon/towel/random, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSA" = ( +"SA" = ( /obj/machinery/sleeper/survival_pod, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSB" = ( +"SB" = ( /obj/structure/table/survival_pod, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSC" = ( +"SC" = ( /obj/item/device/perfect_tele_beacon/stationary{ tele_name = "Unknown"; tele_network = "unkfour" }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"aSD" = ( +"SD" = ( /obj/item/weapon/bedsheet/rddouble, /obj/structure/bed/double/padded, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSE" = ( +"SE" = ( /obj/structure/prop/alien/computer{ dir = 8 }, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSF" = ( +"SF" = ( /obj/structure/prop/alien/dispenser, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSG" = ( +"SG" = ( /obj/machinery/door/blast/regular{ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, /area/centcom/simulated/terminal) -"aSH" = ( +"SH" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/centcom/simulated/terminal) -"aSI" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/glasses/square{ - pixel_x = 1; - pixel_y = 4 - }, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aSJ" = ( -/obj/item/clothing/head/xenos, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aSK" = ( +"SK" = ( /obj/structure/closet/secure_closet/personal, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSL" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/ninja_dojo/dojo) -"aSM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"aSN" = ( +"SN" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSO" = ( +"SO" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSP" = ( +"SP" = ( /obj/structure/table/alien, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"aSQ" = ( +"SQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/teleport/hub, /turf/simulated/shuttle/floor/voidcraft, /area/unknown/dorm4) -"aSR" = ( +"SR" = ( /obj/machinery/teleport/station, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"aSS" = ( +"SS" = ( /obj/machinery/computer/teleporter{ dir = 1 }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"aST" = ( +"ST" = ( /obj/structure/prop/alien/power, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"aSU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aSV" = ( +"SV" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 8 }, @@ -21885,7 +2471,7 @@ }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/main_hall) -"aSW" = ( +"SW" = ( /obj/item/device/perfect_tele_beacon/stationary{ tele_name = "Transfer"; tele_network = "centcom" @@ -21895,24 +2481,24 @@ }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aSX" = ( +"SX" = ( /turf/simulated/shuttle/wall/alien/blue/hard_corner, /area/unknown/dorm3) -"aSY" = ( +"SY" = ( /turf/simulated/shuttle/wall/alien/blue, /area/unknown/dorm3) -"aSZ" = ( +"SZ" = ( /obj/machinery/recharge_station, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"aTa" = ( +"Ta" = ( /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"aTb" = ( +"Tb" = ( /obj/structure/toilet, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"aTc" = ( +"Tc" = ( /obj/machinery/shower{ pixel_y = 13 }, @@ -21922,72 +2508,45 @@ }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"aTd" = ( +"Td" = ( /obj/machinery/door/airlock/alien/blue/public, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"aTe" = ( -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 9 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/ninja_dojo/dojo) -"aTf" = ( +"Tf" = ( /obj/machinery/cryopod/robot/door/gateway, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aTg" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/unsimulated/floor{ - dir = 2; - icon_state = "carpet" - }, -/area/skipjack_station) -"aTh" = ( +"Th" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aTi" = ( +"Ti" = ( /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aTj" = ( +"Tj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aTk" = ( +"Tk" = ( /obj/structure/closet/alien, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTl" = ( +"Tl" = ( /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTm" = ( +"Tm" = ( /obj/structure/fans, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTn" = ( +"Tn" = ( /obj/structure/table/standard, /obj/item/clothing/under/color/rainbow, /obj/item/clothing/glasses/sunglasses, @@ -21996,7 +2555,7 @@ }, /turf/unsimulated/beach/sand, /area/beach) -"aTo" = ( +"To" = ( /obj/machinery/smartfridge/survival_pod, /obj/item/weapon/storage/mre/menu11, /obj/item/weapon/storage/mre/menu11, @@ -22018,147 +2577,118 @@ /obj/item/weapon/towel/random, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTp" = ( +"Tp" = ( /obj/machinery/sleeper/survival_pod, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTq" = ( +"Tq" = ( /obj/structure/table/survival_pod, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTr" = ( +"Tr" = ( /obj/item/device/perfect_tele_beacon/stationary{ tele_name = "Unknown"; tele_network = "unkthree" }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"aTs" = ( +"Ts" = ( /obj/effect/overlay/coconut, /turf/unsimulated/beach/sand, /area/beach) -"aTt" = ( +"Tt" = ( /obj/item/weapon/bedsheet/rddouble, /obj/structure/bed/double/padded, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTu" = ( +"Tu" = ( /obj/structure/prop/alien/computer{ dir = 8 }, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTv" = ( -/obj/structure/closet/crate, -/obj/item/clothing/accessory/storage/vox, -/obj/item/clothing/accessory/storage/vox, -/obj/item/clothing/accessory/storage/vox, -/obj/item/clothing/accessory/storage/vox, -/obj/item/clothing/accessory/storage/vox, -/obj/item/clothing/accessory/storage/vox, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aTw" = ( -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"aTx" = ( +"Tx" = ( /obj/structure/prop/alien/dispenser, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTy" = ( +"Ty" = ( /obj/structure/closet/secure_closet/personal, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTz" = ( +"Tz" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTA" = ( +"TA" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTB" = ( +"TB" = ( /obj/structure/table/alien, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm3) -"aTC" = ( +"TC" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/teleport/hub, /turf/simulated/shuttle/floor/voidcraft, /area/unknown/dorm3) -"aTD" = ( +"TD" = ( /obj/machinery/teleport/station, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"aTE" = ( +"TE" = ( /obj/machinery/computer/teleporter{ dir = 1 }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"aTF" = ( +"TF" = ( /obj/structure/bed/chair, /obj/effect/landmark{ name = "endgame_exit" }, /turf/unsimulated/beach/sand, /area/beach) -"aTG" = ( +"TG" = ( /obj/effect/landmark{ name = "endgame_exit" }, /turf/unsimulated/beach/sand, /area/beach) -"aTH" = ( +"TH" = ( /obj/structure/prop/alien/power, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"aTI" = ( +"TI" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/centcom/simulated/terminal) -"aTJ" = ( +"TJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/glass, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/main_hall) -"aTK" = ( +"TK" = ( /turf/simulated/shuttle/wall/alien/hard_corner, /area/unknown/dorm2) -"aTL" = ( -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aTM" = ( +"TM" = ( /turf/simulated/shuttle/wall/alien, /area/unknown/dorm2) -"aTN" = ( +"TN" = ( /obj/machinery/recharge_station, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"aTO" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/flame/candle, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aTP" = ( +"TP" = ( /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"aTQ" = ( +"TQ" = ( /obj/structure/toilet, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"aTR" = ( +"TR" = ( /obj/machinery/shower{ pixel_y = 13 }, @@ -22168,22 +2698,22 @@ }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"aTS" = ( +"TS" = ( /obj/machinery/door/airlock/alien/public, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"aTT" = ( +"TT" = ( /obj/structure/closet/alien, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aTU" = ( +"TU" = ( /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aTV" = ( +"TV" = ( /obj/structure/fans, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aTW" = ( +"TW" = ( /obj/machinery/smartfridge/survival_pod, /obj/item/weapon/storage/mre/menu11, /obj/item/weapon/storage/mre/menu11, @@ -22205,164 +2735,129 @@ /obj/item/weapon/towel/random, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aTX" = ( +"TX" = ( /obj/machinery/sleeper/survival_pod, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aTY" = ( +"TY" = ( /obj/machinery/door/firedoor, /turf/unsimulated/floor/steel, /area/centcom/simulated/terminal) -"aTZ" = ( +"TZ" = ( /obj/effect/floor_decal/industrial/warning/dust/corner, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aUa" = ( +"Ua" = ( /obj/structure/table/survival_pod, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aUb" = ( +"Ub" = ( /obj/item/device/perfect_tele_beacon/stationary{ tele_name = "Unknown"; tele_network = "unktwo" }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"aUc" = ( +"Uc" = ( /obj/item/weapon/bedsheet/rddouble, /obj/structure/bed/double/padded, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aUd" = ( +"Ud" = ( /obj/structure/prop/alien/computer{ dir = 8 }, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aUe" = ( -/obj/item/weapon/ore, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"aUf" = ( +"Uf" = ( /obj/structure/prop/alien/dispenser, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aUg" = ( +"Ug" = ( /obj/structure/closet/secure_closet/personal, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aUh" = ( +"Uh" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aUi" = ( +"Ui" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aUj" = ( +"Uj" = ( /obj/structure/table/alien, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"aUk" = ( +"Uk" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/teleport/hub, /turf/simulated/shuttle/floor/voidcraft, /area/unknown/dorm2) -"aUl" = ( +"Ul" = ( /obj/machinery/teleport/station, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"aUm" = ( +"Um" = ( /obj/machinery/computer/teleporter{ dir = 1 }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"aUn" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1331; - id_tag = "ninja_shuttle_inner"; - name = "Ship Internal Hatch"; - req_access = list(150) - }, -/turf/simulated/shuttle/floor/voidcraft/dark, -/area/shuttle/ninja) -"aUo" = ( +"Uo" = ( /obj/structure/prop/alien/power, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"aUp" = ( +"Up" = ( /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aUq" = ( -/obj/item/weapon/gun/energy/sonic, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aUr" = ( +"Ur" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aUs" = ( +"Us" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 8 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aUt" = ( +"Ut" = ( /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aUu" = ( +"Uu" = ( /obj/effect/floor_decal/industrial/warning/dust, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aUv" = ( +"Uv" = ( /obj/effect/floor_decal/industrial/outline, /obj/structure/bed/chair, /turf/unsimulated/floor/steel, /area/centcom/simulated/main_hall) -"aUw" = ( +"Uw" = ( /turf/simulated/shuttle/wall/alien/hard_corner, /area/unknown/dorm1) -"aUx" = ( +"Ux" = ( /turf/simulated/shuttle/wall/alien, /area/unknown/dorm1) -"aUy" = ( -/obj/structure/table/rack, -/obj/item/weapon/tank/vox, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aUz" = ( +"Uz" = ( /obj/machinery/recharge_station, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"aUA" = ( +"UA" = ( /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"aUB" = ( -/turf/simulated/shuttle/floor/red, -/area/shuttle/skipjack) -"aUC" = ( +"UC" = ( /obj/structure/toilet, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"aUD" = ( +"UD" = ( /obj/machinery/shower{ pixel_y = 13 }, @@ -22372,7 +2867,7 @@ }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"aUE" = ( +"UE" = ( /obj/effect/floor_decal/industrial/outline, /obj/structure/bed/chair, /obj/machinery/status_display{ @@ -22380,22 +2875,22 @@ }, /turf/unsimulated/floor/steel, /area/centcom/simulated/main_hall) -"aUF" = ( +"UF" = ( /obj/machinery/door/airlock/alien/public, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"aUG" = ( +"UG" = ( /obj/structure/closet/alien, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUH" = ( +"UH" = ( /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUI" = ( +"UI" = ( /obj/structure/fans, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUJ" = ( +"UJ" = ( /obj/machinery/smartfridge/survival_pod, /obj/item/weapon/storage/mre/menu11, /obj/item/weapon/storage/mre/menu11, @@ -22417,111 +2912,92 @@ /obj/item/weapon/towel/random, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUK" = ( +"UK" = ( /obj/machinery/sleeper/survival_pod, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUL" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/weapon/storage/belt/utility/full, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/clothing/shoes/magboots, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aUM" = ( +"UM" = ( /obj/structure/table/survival_pod, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUN" = ( +"UN" = ( /obj/item/device/perfect_tele_beacon/stationary{ tele_name = "Unknown"; tele_network = "unkone" }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"aUO" = ( -/obj/structure/table/standard, -/obj/item/weapon/surgical/circular_saw{ - pixel_y = 8 - }, -/obj/item/weapon/surgical/hemostat, -/obj/item/weapon/surgical/scalpel, -/obj/item/stack/medical/advanced/bruise_pack, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aUP" = ( +"UP" = ( /obj/item/weapon/bedsheet/rddouble, /obj/structure/bed/double/padded, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUQ" = ( +"UQ" = ( /obj/structure/prop/alien/computer{ dir = 8 }, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUR" = ( +"UR" = ( /obj/structure/prop/alien/dispenser, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUS" = ( +"US" = ( /obj/structure/closet/secure_closet/personal, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUT" = ( +"UT" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUU" = ( +"UU" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUV" = ( +"UV" = ( /obj/structure/table/alien, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm1) -"aUW" = ( +"UW" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/teleport/hub, /turf/simulated/shuttle/floor/voidcraft, /area/unknown/dorm1) -"aUX" = ( +"UX" = ( /obj/machinery/teleport/station, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"aUY" = ( +"UY" = ( /obj/machinery/computer/teleporter{ dir = 1 }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"aUZ" = ( +"UZ" = ( /obj/structure/prop/alien/power, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"aVa" = ( +"Va" = ( /obj/effect/floor_decal/rust/steel_decals_rusted2, /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVb" = ( +"Vb" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/bathroom) -"aVc" = ( +"Vc" = ( /turf/simulated/floor/tiled/white, /area/centcom/simulated/bathroom) -"aVd" = ( +"Vd" = ( /turf/unsimulated/wall, /area/centcom/simulated/medical) -"aVe" = ( +"Ve" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /obj/structure/sign/department/medbay, /turf/unsimulated/floor{ @@ -22529,16 +3005,16 @@ name = "plating" }, /area/centcom/simulated/medical) -"aVf" = ( +"Vf" = ( /obj/machinery/door/airlock{ name = "Unit 4" }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/bathroom) -"aVg" = ( +"Vg" = ( /turf/unsimulated/wall, /area/centcom/simulated/living) -"aVh" = ( +"Vh" = ( /obj/effect/floor_decal/corner_steel_grid/diagonal, /obj/effect/floor_decal/corner_steel_grid/diagonal{ dir = 4 @@ -22551,120 +3027,111 @@ }, /turf/simulated/floor/tiled, /area/centcom/simulated/terminal) -"aVi" = ( +"Vi" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVj" = ( +"Vj" = ( /turf/simulated/floor/tiled/steel, /area/shuttle/large_escape_pod2/centcom{ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b }) -"aVk" = ( +"Vk" = ( /turf/unsimulated/wall, /area/centcom/simulated/bathroom) -"aVl" = ( +"Vl" = ( /obj/structure/sign/warning{ name = "\improper STAND AWAY FROM TRACK EDGE" }, /turf/unsimulated/wall, /area/centcom/simulated/living) -"aVm" = ( +"Vm" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel, /area/shuttle/large_escape_pod2/centcom{ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b }) -"aVn" = ( +"Vn" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 10 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVo" = ( +"Vo" = ( /obj/machinery/door/blast/regular{ dir = 1 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVp" = ( +"Vp" = ( /obj/effect/floor_decal/rust/part_rusted3, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 9 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVq" = ( +"Vq" = ( /obj/effect/floor_decal/rust/part_rusted3, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVr" = ( +"Vr" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVs" = ( +"Vs" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVt" = ( +"Vt" = ( /obj/effect/floor_decal/rust/mono_rusted3, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVu" = ( +"Vu" = ( /turf/unsimulated/wall, /area/centcom/simulated/main_hall) -"aVv" = ( +"Vv" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 1 }, /obj/machinery/door/firedoor, /turf/unsimulated/floor/steel, /area/centcom/simulated/terminal) -"aVw" = ( +"Vw" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/main_hall) -"aVx" = ( -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/skipjack_station) -"aVy" = ( +"Vy" = ( /obj/machinery/door/airlock{ name = "Unit 3" }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/bathroom) -"aVz" = ( +"Vz" = ( /obj/machinery/light/small{ dir = 8; pixel_y = 0 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/bathroom) -"aVA" = ( -/obj/item/pizzabox/meat, -/turf/simulated/shuttle/floor/red, -/area/shuttle/skipjack) -"aVB" = ( +"VB" = ( /obj/effect/floor_decal/sign/dock/one, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVC" = ( +"VC" = ( /turf/unsimulated/beach/sand, /area/beach) -"aVD" = ( +"VD" = ( /obj/effect/floor_decal/corner_steel_grid/diagonal, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVE" = ( +"VE" = ( /obj/effect/shuttle_landmark{ base_area = /area/centcom/simulated/evac; base_turf = /turf/unsimulated/floor/steel; @@ -22674,168 +3141,122 @@ }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVF" = ( +"VF" = ( /obj/effect/floor_decal/sign/dock/two, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVG" = ( -/obj/item/clothing/head/philosopher_wig, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aVH" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/fortunecookie, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aVI" = ( +"VI" = ( /turf/unsimulated/wall, /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aVJ" = ( +"VJ" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVK" = ( +"VK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/glass, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/restaurant) -"aVL" = ( +"VL" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/restaurant) -"aVM" = ( +"VM" = ( /turf/unsimulated/wall, /area/centcom/simulated/restaurant) -"aVN" = ( +"VN" = ( /obj/effect/floor_decal/corner_steel_grid/diagonal, /turf/simulated/floor/tiled/steel, /area/shuttle/large_escape_pod2/centcom{ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b }) -"aVO" = ( +"VO" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 9 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVP" = ( +"VP" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 1 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVQ" = ( +"VQ" = ( /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aVR" = ( +"VR" = ( /obj/structure/bed/chair/wood/wings, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aVS" = ( +"VS" = ( /obj/effect/floor_decal/corner_steel_grid/diagonal, /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVT" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150) - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aVU" = ( +"VU" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVV" = ( +"VV" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVW" = ( -/obj/structure/undies_wardrobe, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/skipjack_station) -"aVX" = ( +"VX" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aVY" = ( +"VY" = ( /obj/structure/closet/crate/bin, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aVZ" = ( +"VZ" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 4 }, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWa" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aWb" = ( +"Wb" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/pastatomato, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWc" = ( +"Wc" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/meatballspagetti, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWd" = ( +"Wd" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 8 }, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWe" = ( +"We" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/fries, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWf" = ( -/turf/unsimulated/wall, -/area/skipjack_station) -"aWg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/unsimulated/floor{ - name = "plating"; - icon_state = "cult" - }, -/area/skipjack_station) -"aWh" = ( +"Wh" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, @@ -22844,17 +3265,17 @@ }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aWi" = ( +"Wi" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/bathroom) -"aWj" = ( +"Wj" = ( /obj/effect/blocker, /turf/simulated/floor/tiled/white, /area/centcom/simulated/living) -"aWk" = ( +"Wk" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/cheeseburger{ pixel_x = 3; @@ -22863,27 +3284,17 @@ /obj/item/weapon/reagent_containers/food/snacks/cheeseburger, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWl" = ( +"Wl" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/kitsuneudon, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWm" = ( +"Wm" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/lasagna, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWn" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1331; - icon_state = "door_closed"; - id_tag = "vox_northwest_lock"; - locked = 0; - req_access = list(150) - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aWo" = ( +"Wo" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/hotdog, /obj/item/weapon/reagent_containers/food/snacks/hotdog{ @@ -22892,11 +3303,11 @@ }, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWp" = ( +"Wp" = ( /obj/machinery/cryopod/robot/door/dorms, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aWq" = ( +"Wq" = ( /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, @@ -22910,18 +3321,7 @@ }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aWr" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1331; - icon_state = "door_closed"; - id_tag = "vox_southwest_lock"; - locked = 0; - req_access = list(150) - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aWs" = ( +"Ws" = ( /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, @@ -22930,7 +3330,7 @@ }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aWt" = ( +"Wt" = ( /obj/machinery/porta_turret/crescent{ density = 1 }, @@ -22939,63 +3339,43 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aWu" = ( +"Wu" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWv" = ( +"Wv" = ( /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aWw" = ( -/obj/structure/inflatable, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aWx" = ( -/obj/structure/table/standard, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/skipjack_station) -"aWy" = ( -/obj/machinery/teleport/hub, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/ninja_dojo/dojo) -"aWz" = ( +"Wz" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 1 }, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWA" = ( +"WA" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/grilledcheese, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWB" = ( +"WB" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/simulated/floor/plating, /area/centcom/simulated/restaurant) -"aWC" = ( +"WC" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/simulated/floor/plating, /area/centcom/simulated/medical) -"aWD" = ( +"WD" = ( /obj/effect/overlay/palmtree_r, /obj/effect/overlay/coconut, /turf/unsimulated/beach/sand, /area/beach) -"aWE" = ( +"WE" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /obj/machinery/door/blast/regular{ density = 0; @@ -23010,27 +3390,21 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aWF" = ( +"WF" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/meatballsoup, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWG" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/skipjack) -"aWH" = ( +"WH" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aWI" = ( +"WI" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/roastbeef, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWJ" = ( +"WJ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/northleft{ req_access = list(63); @@ -23054,7 +3428,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aWK" = ( +"WK" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -23077,19 +3451,12 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aWL" = ( +"WL" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/meatsteak, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWM" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1331; - id_tag = "vox_west_vent" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aWN" = ( +"WN" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 4 @@ -23099,22 +3466,22 @@ }, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aWO" = ( +"WO" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/drinks/bottle/cola, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aWP" = ( +"WP" = ( /obj/structure/table/woodentable, /obj/machinery/cash_register/civilian, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aWQ" = ( +"WQ" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aWR" = ( +"WR" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{ pixel_w = 0; @@ -23123,14 +3490,14 @@ }, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aWS" = ( +"WS" = ( /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aWT" = ( +"WT" = ( /obj/structure/bed/chair, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aWU" = ( +"WU" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/spray/cleaner{ desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; @@ -23140,104 +3507,80 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aWV" = ( +"WV" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aWW" = ( +"WW" = ( /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aWX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/floor{ - dir = 2; - icon = 'icons/turf/snow_new.dmi'; - icon_state = "snow"; - name = "snow" - }, -/area/ninja_dojo/dojo) -"aWY" = ( -/obj/item/target/alien, -/turf/unsimulated/floor{ - icon = 'icons/turf/flooring/wood.dmi'; - icon_state = "wood_broken2" - }, -/area/ninja_dojo/dojo) -"aWZ" = ( +"WZ" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aXa" = ( +"Xa" = ( /obj/machinery/vending/sovietsoda, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aXb" = ( +"Xb" = ( /obj/machinery/vending/snack, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aXc" = ( +"Xc" = ( /obj/machinery/vending/cola, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aXd" = ( +"Xd" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aXe" = ( +"Xe" = ( /obj/machinery/smartfridge/drinks, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aXf" = ( +"Xf" = ( /obj/machinery/vending/boozeomat, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aXg" = ( +"Xg" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/bar_soft/full, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aXh" = ( +"Xh" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/bar_alc/full, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aXi" = ( +"Xi" = ( /turf/unsimulated/wall, /area/centcom/simulated/bar) -"aXj" = ( +"Xj" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/surgery, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXk" = ( +"Xk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/glass, /turf/unsimulated/floor/steel{ icon_state = "white" }, /area/centcom/simulated/medical) -"aXl" = ( +"Xl" = ( /turf/unsimulated/map/edge, /area/overmap) -"aXm" = ( +"Xm" = ( /obj/machinery/door/firedoor, /turf/unsimulated/floor/steel{ icon_state = "white" }, /area/centcom/simulated/medical) -"aXn" = ( +"Xn" = ( /obj/structure/sign/greencross, /turf/unsimulated/wall, /area/centcom/simulated/medical) -"aXo" = ( -/obj/structure/table/steel, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aXp" = ( +"Xp" = ( /obj/structure/toilet{ dir = 8 }, @@ -23246,20 +3589,14 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/bathroom) -"aXq" = ( -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/skipjack_station) -"aXr" = ( +"Xr" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXs" = ( +"Xs" = ( /obj/machinery/computer/card{ dir = 4 }, @@ -23277,21 +3614,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aXt" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/launcher/spikethrower, -/turf/unsimulated/floor{ - icon_state = "asteroid" - }, -/area/skipjack_station) -"aXu" = ( -/obj/machinery/door/morgue, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/ninja_dojo/dojo) -"aXv" = ( +"Xv" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -23299,7 +3622,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aXw" = ( +"Xw" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -23307,7 +3630,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aXx" = ( +"Xx" = ( /obj/machinery/computer/security{ dir = 8 }, @@ -23316,16 +3639,16 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aXy" = ( +"Xy" = ( /obj/structure/table/standard, /obj/item/stack/nanopaste, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXz" = ( +"Xz" = ( /obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXA" = ( +"XA" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 5 }, @@ -23334,7 +3657,7 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXB" = ( +"XB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -23346,7 +3669,7 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXC" = ( +"XC" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -23354,12 +3677,12 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aXD" = ( +"XD" = ( /turf/simulated/floor/tiled, /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aXE" = ( +"XE" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 }, @@ -23368,19 +3691,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/centcom/simulated/terminal) -"aXF" = ( -/obj/item/weapon/gun/launcher/spikethrower, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aXG" = ( -/obj/item/weapon/tool/wrench, -/obj/item/weapon/mop, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aXH" = ( +"XH" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -23390,16 +3701,12 @@ }, /turf/simulated/floor/tiled, /area/centcom/simulated/terminal) -"aXI" = ( -/mob/living/simple_mob/animal/passive/tindalos, -/turf/simulated/shuttle/floor/black, -/area/shuttle/skipjack) -"aXJ" = ( +"XJ" = ( /obj/structure/table/glass, /obj/item/device/healthanalyzer/improved, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXK" = ( +"XK" = ( /obj/structure/table/glass, /obj/machinery/computer/med_data{ icon_keyboard = "laptop_key"; @@ -23409,44 +3716,25 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXL" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - tiles = 0 - }, -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/simulated/mineral, -/area/space) -"aXM" = ( +"XM" = ( /obj/structure/table/glass{ desc = "It's a table, it has some scracthes..they say 'Mlem'." }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXN" = ( +"XN" = ( /obj/structure/table/glass, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXO" = ( +"XO" = ( /obj/structure/signpost, /turf/unsimulated/beach/sand, /area/beach) -"aXP" = ( +"XP" = ( /obj/machinery/oxygen_pump/anesthetic, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXQ" = ( +"XQ" = ( /obj/machinery/optable, /obj/machinery/light{ dir = 8; @@ -23455,13 +3743,13 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXR" = ( +"XR" = ( /obj/machinery/computer/operating{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXS" = ( +"XS" = ( /obj/structure/closet/crate/freezer, /obj/item/weapon/reagent_containers/blood/OMinus, /obj/item/weapon/reagent_containers/blood/OMinus, @@ -23471,24 +3759,14 @@ /obj/item/weapon/reagent_containers/blood/OMinus, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXT" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/item/weapon/soap/syndie, -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/skipjack_station) -"aXU" = ( +"XU" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, /obj/machinery/light, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aXV" = ( +"XV" = ( /obj/machinery/turretid/stun{ check_access = 0; check_anomalies = 0; @@ -23504,34 +3782,25 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aXW" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/random/multiple/voidsuit, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aXX" = ( +"XX" = ( /obj/machinery/computer/crew{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aXY" = ( +"XY" = ( /obj/structure/closet, /turf/unsimulated/beach/sand, /area/beach) -"aXZ" = ( +"XZ" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYa" = ( +"Ya" = ( /obj/machinery/camera/network/crescent, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYb" = ( +"Yb" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin{ pixel_x = -1; @@ -23539,52 +3808,21 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYc" = ( +"Yc" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYd" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/green, -/turf/unsimulated/floor{ - icon_state = "wood" - }, -/area/skipjack_station) -"aYe" = ( -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/ninja_dojo/dojo) -"aYf" = ( -/obj/structure/table/rack, -/obj/item/weapon/material/harpoon, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/random/rigsuit, -/obj/random/multiple/voidsuit, -/obj/random/multiple/voidsuit, -/obj/random/energy, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aYg" = ( +"Yg" = ( /obj/structure/sign/department/operational, /turf/unsimulated/wall, /area/centcom/simulated/medical) -"aYh" = ( +"Yh" = ( /obj/effect/floor_decal/industrial/loading{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYi" = ( -/turf/unsimulated/floor{ - icon_state = "freezerfloor"; - dir = 2 - }, -/area/ninja_dojo/dojo) -"aYj" = ( +"Yj" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 9 }, @@ -23593,7 +3831,7 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYk" = ( +"Yk" = ( /obj/structure/medical_stand, /obj/machinery/light{ icon_state = "tube1"; @@ -23601,7 +3839,7 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYl" = ( +"Yl" = ( /obj/machinery/door/airlock/security{ name = "Security" }, @@ -23610,55 +3848,15 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aYm" = ( +"Ym" = ( /obj/machinery/vending/medical, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aYo" = ( +"Yo" = ( /obj/structure/closet/secure_closet/medical2, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYp" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/turf/unsimulated/floor{ - dir = 8; - icon_state = "wood" - }, -/area/ninja_dojo/dojo) -"aYq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - id = "skipjackshutters"; - name = "Skipjack Blast Shielding" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aYr" = ( +"Yr" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ pixel_y = 5 @@ -23667,7 +3865,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aYs" = ( +"Ys" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; pixel_y = 26 @@ -23676,7 +3874,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aYt" = ( +"Yt" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 @@ -23684,20 +3882,20 @@ /obj/machinery/light, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/evac) -"aYu" = ( +"Yu" = ( /obj/machinery/camera/network/crescent, /turf/simulated/floor/tiled, /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aYv" = ( +"Yv" = ( /obj/machinery/door/airlock/multi_tile/glass{ req_access = list(5) }, /obj/machinery/door/firedoor/multi_tile, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYw" = ( +"Yw" = ( /obj/machinery/door/airlock/medical{ name = "Operating Theatre"; req_access = list(45) @@ -23705,14 +3903,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYx" = ( +"Yx" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled, /area/centcom/simulated/terminal) -"aYy" = ( +"Yy" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 }, @@ -23720,24 +3918,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aYz" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/toolbox/syndicate{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/random/tech_supply, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aYA" = ( -/obj/structure/bed/chair/office/dark, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/ninja_dojo/dojo) -"aYB" = ( +"YB" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ pixel_x = 5; @@ -23754,38 +3935,38 @@ /obj/item/weapon/tool/wrench, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYC" = ( +"YC" = ( /obj/machinery/atmospherics/unary/cryo_cell, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYD" = ( +"YD" = ( /obj/machinery/atmospherics/unary/freezer, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYE" = ( +"YE" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/main_hall) -"aYF" = ( +"YF" = ( /obj/structure/table/glass, /obj/item/device/defib_kit/loaded, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYG" = ( +"YG" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/living) -"aYH" = ( +"YH" = ( /obj/structure/table/glass, /obj/item/weapon/storage/pill_bottle/spaceacillin, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYI" = ( +"YI" = ( /obj/structure/table/reinforced, /obj/item/weapon/melee/baton/loaded, /obj/item/weapon/melee/baton/loaded, @@ -23794,7 +3975,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aYJ" = ( +"YJ" = ( /obj/structure/closet/secure_closet/nanotrasen_security, /obj/item/weapon/storage/box/handcuffs, /obj/item/weapon/gun/energy/gun, @@ -23803,83 +3984,68 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aYK" = ( +"YK" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYL" = ( +"YL" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYM" = ( +"YM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYN" = ( +"YN" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYO" = ( +"YO" = ( /obj/machinery/computer/transhuman/designer{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYP" = ( +"YP" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/oxygen/prechilled, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYQ" = ( +"YQ" = ( /obj/structure/table/glass, /obj/machinery/chemical_dispenser/full, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYR" = ( +"YR" = ( /turf/unsimulated/floor/steel, /area/centcom/simulated/main_hall) -"aYS" = ( -/obj/machinery/teleport/hub, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/shuttle/plating, -/area/shuttle/ninja) -"aYT" = ( +"YT" = ( /obj/machinery/chem_master, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYU" = ( +"YU" = ( /obj/structure/table/glass, /obj/machinery/chemical_dispenser/ert, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYV" = ( +"YV" = ( /obj/machinery/transhuman/synthprinter, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYW" = ( +"YW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1; - start_pressure = 740 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aYY" = ( +"YY" = ( /obj/machinery/bodyscanner{ dir = 8 }, @@ -23888,66 +4054,57 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aYZ" = ( +"YZ" = ( /obj/machinery/body_scanconsole, /obj/effect/floor_decal/corner_steel_grid{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZa" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1331; - master_tag = "vox_east_control"; - req_access = list(150) - }, -/turf/simulated/wall/skipjack, -/area/shuttle/skipjack) -"aZb" = ( +"Zb" = ( /obj/machinery/sleep_console{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZc" = ( +"Zc" = ( /obj/machinery/sleeper{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZd" = ( +"Zd" = ( /obj/machinery/computer/transhuman/resleeving{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZe" = ( +"Ze" = ( /obj/machinery/transhuman/resleever, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZf" = ( +"Zf" = ( /obj/structure/filingcabinet/chestdrawer{ name = "Medical Forms" }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZg" = ( +"Zg" = ( /obj/machinery/clonepod/transhuman/full, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZh" = ( +"Zh" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/food/drinks/flask/barflask, /obj/item/weapon/reagent_containers/glass/rag, /obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aZi" = ( +"Zi" = ( /obj/machinery/light, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/main_hall) -"aZj" = ( +"Zj" = ( /obj/structure/table/standard, /obj/item/device/healthanalyzer, /obj/machinery/light{ @@ -23955,7 +4112,7 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZk" = ( +"Zk" = ( /obj/structure/table/reinforced, /obj/item/device/camera, /obj/item/weapon/storage/box/ids, @@ -23966,7 +4123,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aZl" = ( +"Zl" = ( /obj/structure/table/glass, /obj/item/weapon/backup_implanter{ pixel_y = -8 @@ -23980,25 +4137,14 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZm" = ( -/obj/machinery/optable, -/turf/simulated/shuttle/floor/white, -/area/shuttle/skipjack) -"aZn" = ( +"Zn" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/shuttle/plating, -/area/shuttle/skipjack) -"aZp" = ( +"Zp" = ( /obj/structure/table/reinforced, /obj/item/weapon/book/manual/security_space_law, /obj/item/weapon/book/manual/security_space_law, @@ -24010,16 +4156,16 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aZq" = ( +"Zq" = ( /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZr" = ( +"Zr" = ( /obj/structure/table/standard, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZs" = ( +"Zs" = ( /obj/machinery/light/small{ dir = 4 }, @@ -24027,7 +4173,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aZt" = ( +"Zt" = ( /obj/effect/floor_decal/corner_steel_grid/diagonal, /obj/effect/floor_decal/corner_steel_grid/diagonal{ dir = 4 @@ -24038,18 +4184,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/centcom/simulated/terminal) -"aZu" = ( -/obj/machinery/light/small, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aZv" = ( -/obj/item/weapon/ore, -/obj/structure/reagent_dispensers/beerkeg, -/turf/unsimulated/floor{ - icon_state = "white" - }, -/area/skipjack_station) -"aZw" = ( +"Zw" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/donkpockets, /obj/item/weapon/storage/box/donkpockets, @@ -24061,7 +4196,7 @@ /area/centcom/simulated/security{ name = "\improper CentCom Security Arrivals" }) -"aZx" = ( +"Zx" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/glass/beaker/large, @@ -24070,7 +4205,7 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZy" = ( +"Zy" = ( /obj/structure/table/glass, /obj/item/weapon/storage/firstaid/adv, /obj/machinery/light{ @@ -24078,7 +4213,7 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZz" = ( +"Zz" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/glass/bottle/biomass{ pixel_x = -4; @@ -24098,20 +4233,14 @@ }, /turf/simulated/floor/tiled/white, /area/centcom/simulated/medical) -"aZA" = ( -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aZB" = ( -/turf/simulated/shuttle/wall/voidcraft/hard_corner, -/area/shuttle/ninja) -"aZC" = ( +"ZC" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aZD" = ( +"ZD" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine, /obj/machinery/light{ @@ -24119,22279 +4248,19888 @@ }, /turf/simulated/floor/wood, /area/centcom/simulated/bar) -"aZE" = ( +"ZE" = ( /obj/machinery/light, /turf/simulated/floor/wood, /area/centcom/simulated/restaurant) -"aZF" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/unsimulated/floor/steel, -/area/centcom/specops) -"aZG" = ( -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/specops) -"aZH" = ( -/obj/structure/sign/department/eva, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/eva) -"aZI" = ( -/obj/structure/table/rack, -/obj/item/weapon/gun/energy/darkmatter, -/obj/item/weapon/gun/energy/darkmatter, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/skipjack_station) -"aZJ" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/specops) -"aZK" = ( -/turf/unsimulated/wall{ - icon = 'icons/obj/doors/Doorext.dmi'; - icon_state = "door_locked"; - name = "Sealed Door" - }, -/area/centcom/specops) -"aZL" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - tiles = 0 - }, -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/simulated/mineral, -/area/space) -"aZM" = ( -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/specops) -"aZN" = ( -/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) -"aZO" = ( -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/unsimulated/floor/steel, -/area/centcom/specops) -"aZP" = ( -/obj/structure/sign/department/chem, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/chemistry) -"aZQ" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/specops) -"aZR" = ( -/obj/machinery/door/airlock/hatch{ - req_access = list(150) - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/skipjack) -"aZS" = ( -/obj/structure/sign/department/operational, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/surgery) -"aZT" = ( -/obj/structure/sign/department/medbay, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/chemistry) -"aZU" = ( -/obj/structure/sign/department/interrogation, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/processing) -"aZV" = ( -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/specops) -"aZW" = ( -/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{ - base_area = /area/centcom/specops; - base_turf = /turf/unsimulated/floor; - landmark_tag = "specops_base"; - name = "ERT Shuttle Bay" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"aZX" = ( -/obj/structure/sign/department/morgue, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/morgue) -"aZY" = ( -/obj/effect/decal/cleanable/cobweb2{ - icon_state = "cobweb1" - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/skipjack_station) -"aZZ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/space, -/area/space) -"baa" = ( -/obj/structure/sign/department/armory, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/armory) -"bab" = ( -/obj/structure/sign/department/medbay, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/medical) -"bac" = ( -/obj/structure/sign/department/armory, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/armory) -"bad" = ( -/turf/simulated/shuttle/wall/dark/hard_corner, -/area/shuttle/specops/centcom) -"bae" = ( -/obj/structure/sign/department/rnd, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/rnd) -"baf" = ( -/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) -"bag" = ( -/obj/structure/sign/department/bridge, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/mothership/bridge) -"bah" = ( -/turf/simulated/shuttle/wall/dark, -/area/shuttle/specops/centcom) -"bai" = ( -/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) -"baj" = ( -/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) -"bak" = ( -/obj/machinery/teleport/hub, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bal" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/sign/department/telecoms, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms1) -"bam" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/sign/department/telecoms, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/telecomms2) -"ban" = ( -/obj/structure/sign/department/eng, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/mothership/engineering) -"bao" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_r"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/specops/centcom) -"bap" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/specops/centcom) -"baq" = ( -/obj/structure/shuttle/engine/heater{ - icon_state = "heater"; - dir = 4 - }, -/turf/simulated/shuttle/plating/airless, -/area/shuttle/specops/centcom) -"bar" = ( -/obj/structure/closet{ - name = "custodial" - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/obj/item/weapon/rig/ert/janitor, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bas" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bat" = ( -/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) -"bau" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/specops/centcom) -"bav" = ( -/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) -"baw" = ( -/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) -"bax" = ( -/obj/effect/landmark{ - name = "Response Team" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bay" = ( -/obj/structure/table/bench/padded, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baz" = ( -/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) -"baA" = ( -/obj/machinery/sleep_console{ - dir = 8 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baB" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baC" = ( -/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) -"baD" = ( -/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) -"baE" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baF" = ( -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baG" = ( -/obj/machinery/door/airlock/silver{ - name = "Sleeping" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baH" = ( -/turf/simulated/floor/carpet, -/area/shuttle/specops/centcom) -"baI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baJ" = ( -/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) -"baK" = ( -/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) -"baL" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 6 - }, -/obj/machinery/meter, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baM" = ( -/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) -"baN" = ( -/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) -"baO" = ( -/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) -"baP" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baQ" = ( -/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) -"baR" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/ert, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baS" = ( -/obj/machinery/atm{ - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baT" = ( -/obj/structure/table/glass, -/obj/item/weapon/hand_tele, -/obj/item/device/perfect_tele, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baU" = ( -/obj/machinery/vending/food, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baV" = ( -/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) -"baW" = ( -/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) -"baX" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/pinpointer/advpinpointer, -/obj/item/device/aicard, -/turf/simulated/floor/carpet, -/area/shuttle/specops/centcom) -"baY" = ( -/obj/machinery/chem_master, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"baZ" = ( -/obj/machinery/vending/nifsoft_shop{ - categories = 111; - emagged = 1; - name = "Hacked NIFSoft Shop"; - prices = list() - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bba" = ( -/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) -"bbb" = ( -/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) -"bbc" = ( -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"bbd" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbe" = ( -/obj/machinery/optable, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbf" = ( -/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) -"bbg" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_y = -32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbh" = ( -/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) -"bbi" = ( -/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) -"bbj" = ( -/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) -"bbk" = ( -/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, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbl" = ( -/obj/machinery/door/window/southleft{ - name = "Cargo Hold"; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbm" = ( -/obj/machinery/shieldgen, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/specops/centcom) -"bbo" = ( -/obj/machinery/door/window/southright{ - name = "Cargo Hold"; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbp" = ( -/obj/machinery/light, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbq" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_y = -32; - req_access = null - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbr" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbs" = ( -/obj/machinery/shieldwallgen, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbt" = ( -/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) -"bbu" = ( -/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) -"bbv" = ( -/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) -"bbw" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbx" = ( -/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) -"bby" = ( -/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) -"bbz" = ( -/obj/machinery/light, -/obj/machinery/ntnet_relay, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbA" = ( -/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) -"bbB" = ( -/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) -"bbC" = ( -/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, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbD" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbE" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(103) - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"bbF" = ( -/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) -"bbG" = ( -/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) -"bbH" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbI" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/specops/centcom) -"bbJ" = ( -/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) -"bbK" = ( -/obj/structure/mirror{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/specops/centcom) -"bbL" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/specops/centcom) -"bbM" = ( -/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) -"bbN" = ( -/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) -"bbO" = ( -/obj/machinery/vending/security, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbP" = ( -/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) -"bbQ" = ( -/obj/structure/frame/computer, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbR" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbS" = ( -/obj/machinery/door/airlock/silver{ - name = "Toilet" - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/specops/centcom) -"bbT" = ( -/obj/machinery/door/airlock/silver{ - name = "Restroom" - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/specops/centcom) -"bbU" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bbV" = ( -/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) -"bbW" = ( -/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) -"bbX" = ( -/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) -"bbY" = ( -/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) -"bbZ" = ( -/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) -"bca" = ( -/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) -"bcb" = ( -/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) -"bcc" = ( -/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) -"bcd" = ( -/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) -"bce" = ( -/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) -"bcf" = ( -/obj/machinery/computer/shuttle_control/multi/specops{ - icon_state = "computer"; - dir = 4 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"bch" = ( -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bci" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcj" = ( -/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) -"bck" = ( -/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) -"bcl" = ( -/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) -"bcm" = ( -/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) -"bcn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/dispenser/oxygen, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bco" = ( -/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) -"bcp" = ( -/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) -"bcq" = ( -/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) -"bcr" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcs" = ( -/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) -"bct" = ( -/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) -"bcu" = ( -/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) -"bcv" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcw" = ( -/obj/machinery/light, -/obj/structure/table/standard, -/obj/item/weapon/soap, -/obj/item/weapon/towel{ - color = "#0000FF" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcx" = ( -/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) -"bcy" = ( -/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) -"bcz" = ( -/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) -"bcA" = ( -/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) -"bcB" = ( -/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) -"bcC" = ( -/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) -"bcD" = ( -/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, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcE" = ( -/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) -"bcF" = ( -/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) -"bcG" = ( -/obj/machinery/door/window/northleft{ - name = "Cargo Hold"; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcH" = ( -/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) -"bcI" = ( -/obj/machinery/door/window/northright{ - name = "Cargo Hold"; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcJ" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"bcK" = ( -/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) -"bcL" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_y = 32 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcM" = ( -/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) -"bcN" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"bcO" = ( -/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) -"bcP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcQ" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcS" = ( -/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) -"bcT" = ( -/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) -"bcU" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcV" = ( -/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) -"bcW" = ( -/obj/machinery/oxygen_pump/anesthetic, -/turf/simulated/shuttle/wall/dark/hard_corner, -/area/shuttle/specops/centcom) -"bcX" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcY" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bcZ" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/carpet, -/area/shuttle/specops/centcom) -"bda" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/carpet, -/area/shuttle/specops/centcom) -"bdb" = ( -/obj/machinery/power/thermoregulator, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"bdc" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/netgun, -/obj/item/weapon/gun/energy/sniperrifle, -/obj/item/weapon/gun/energy/gun/martin, -/obj/item/weapon/gun/energy/gun/martin, -/obj/item/weapon/gun/energy/gun/martin, -/obj/item/weapon/gun/energy/gun/martin, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdd" = ( -/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) -"bde" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/box/pillbottles, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdf" = ( -/obj/machinery/vending/assist, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdg" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"bdh" = ( -/obj/machinery/button/remote/blast_door{ - id = "ertportshutters"; - name = "remote shutter control"; - pixel_x = 30; - req_access = list(160) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdi" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = list(103) - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdj" = ( -/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) -"bdk" = ( -/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) -"bdl" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/machinery/meter, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdm" = ( -/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) -"bdn" = ( -/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) -"bdo" = ( -/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) -"bdp" = ( -/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) -"bdq" = ( -/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) -"bdr" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bds" = ( -/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) -"bdt" = ( -/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) -"bdu" = ( -/obj/machinery/vending/engineering, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdv" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/captain, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdw" = ( -/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) -"bdx" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdy" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet, -/area/shuttle/specops/centcom) -"bdz" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/shuttle/specops/centcom) -"bdA" = ( -/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) -"bdB" = ( -/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) -"bdC" = ( -/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) -"bdD" = ( -/obj/machinery/vending/engivend, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdE" = ( -/obj/machinery/vending/tool, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdF" = ( -/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) -"bdG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdJ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"bdK" = ( -/obj/machinery/shieldwallgen, -/turf/simulated/floor/carpet, -/area/shuttle/specops/centcom) -"bdP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/bench/steel, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"bdQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/bench/steel, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"bdR" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) -"bdS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"bdT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"bdU" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) -"bdV" = ( -/obj/structure/table/bench/steel, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"bdW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"bdX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/security) -"bdY" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - landmark_tag = "supply_cc"; - name = "Centcom Supply Depot" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) -"bdZ" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_r" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) -"bed" = ( -/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) -"bee" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/mercenary) -"bej" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/skipjack) -"bex" = ( -/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) -"bey" = ( -/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) -"bez" = ( -/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) -"beA" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"beB" = ( -/obj/machinery/power/emitter, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"beC" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"beF" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter, -/obj/machinery/shield_gen, -/turf/simulated/shuttle/floor/black, -/area/shuttle/specops/centcom) -"beG" = ( -/obj/machinery/shield_capacitor, -/turf/simulated/shuttle/floor/darkred, -/area/shuttle/specops/centcom) -"beH" = ( -/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) -"beO" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/item/device/perfect_tele_beacon/stationary{ - tele_name = "Warship"; - tele_network = "centcom" - }, -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/mothership/teleporter) -"bhW" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade) -"bkI" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/mercenary) -"buq" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 8; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/telecomms1) -"cEs" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 4; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/telecomms2) -"cVb" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_r"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/mercenary) -"dyN" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 8; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/rnd) -"fnL" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 4; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/warden) -"fRO" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 8; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/eva) -"iwx" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 4; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/security) -"kcP" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 8; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/mercenary) -"lIl" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 8; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/surgery) -"lWy" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade) -"qmF" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_r"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade) -"sZf" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 4; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/armory) -"tev" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 1; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/breakroom) -"vTm" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 8; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/resleeving) -"xzl" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - desc = "It is a heavy duty pulse laser emitter."; - dir = 4; - icon_state = "emitter-off"; - name = "pulse laser" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/mothership/eva) (1,1,1) = {" -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -arN -arN -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -aap -aap -aap -aap -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl "} (2,1,1) = {" -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -arN -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Ax +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (3,1,1) = {" -aar -aar -aac -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZF -aZO -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -arN -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +Gw +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (4,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -bah -bbB -bbP -bah -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (5,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -bah -bah -bbQ -bcf -bah -bah -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aoX -aan -apk -apk -apI -apk -apk -aqk -aqk -aqL -aqX -apk -ars -apk -arP -aoX -apk -arE -aoX -apk -asw -aoX -arF -asw -aoX -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +XO +VC +VC +VC +VC +VC +VC +VC +VC +Ts +BD +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (6,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -bbh -bbG -bbc -bcg -bcr -bcA -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aoX -apg -apk -aav -aoX -apS -apk -aql -aqy -aqM -aqY -apk -art -apk -arQ -aoX -apk -asx -aoX -arF -asx -aoX -apk -asx -aoX -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +Ts +VC +Nj +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (7,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -bbA -baU -bbF -bbc -bce -bcB -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aaf -adZ -adZ -adZ -adZ -adZ -aRh -adZ -adZ -adZ -adZ -adZ -adZ -aRh -adZ -adZ -adZ -adZ -adZ -aaf -aae -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aoX -aph -apk -aau -aoX -apT -apk -aqm -aqz -aqN -aqZ -apk -art -apk -arR -aoX -asi -asy -aoX -asi -asy -aoX -asi -asy -aoX -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +VC +VC +VC +BD +VC +TG +TG +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (8,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -bah -bah -bah -bch -bah -bah -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aai -aAl -aAl -aXE -aSl -aAl -aAl -aXE -aAl -aAl -aAl -aAl -aXE -aAl -aAl -aSl -aXE -aAl -aAl -aSG -aae -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aoX -ape -apk -aax -aoX -apU -aqg -aqn -aqn -aqO -ara -apk -ars -apk -arS -aoX -aqA -apk -asE -apk -apk -asZ -apk -aqP -aoX -aaB -aaB -aaB -aap -aap -aap -aap -aaC -kcP -aaC -aap -ahb -agL -agL -aik -aap -aaC -kcP -aaC -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +VC +VC +VC +Ts +TG +Fa +Dw +TG +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (9,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -bah -bbI -bbS -baF -aAg -bah -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aai -aET -aET -aOR -aPe -aPe -aRi -aOR -aPe -aRs -aRt -aPe -aOR -aRi -aRA -aRA -aOR -aET -aET -aSG -aae -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aoX -aao -apk -aaw -aoX -apV -aqh -apk -apk -apk -apk -apk -apk -apk -arT -aoX -asj -apk -apk -asM -apk -apk -apk -atC -aoX -aaB -aaB -aaB -aaB -aap -aap -aaC -aaC -aaC -aaC -agL -aha -ahY -aii -aha -agL -aaC -aaC -aaC -aaC -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +XY +VC +VC +VC +VC +TG +Tn +Ik +TG +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (10,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -bah -baD -baQ -bah -aZG -bah -bah -bad -baF -aBv -bah -aZG -bah -bdm -bdn -bah -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -azK -aFp -aOR -aPg -aRd -aRg -aQW -aRk -aRe -aRg -aQX -aRw -aRy -aQW -aRg -aRD -aPg -aOR -aFp -azK -aae -aae -aae -aae -aae -aae -aae -aoX -aoX -aoX -aoX -aat -apm -apu -aoX -apW -apk -apk -apk -apk -arb -arq -aru -arI -apW -aoX -ask -asz -apk -asN -aqC -aqC -atu -atD -aoX -aaB -aaB -aaB -aaB -aap -aaC -aaC -aaC -aaC -aaC -agY -ahc -auo -auo -ail -agY -aaC -auK -aaC -aaC -aaC -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +XY +VC +VC +VC +VC +VC +TG +TG +VC +VC +VC +FH +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (11,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bad -baE -bdv -bah -aZG -bah -bbJ -bah -baF -bak -bah -aZG -bah -baT -baF -bad -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aai -aET -aPe -aQa -aRe -aRg -aQW -aQX -aRm -aRg -aQX -aRe -aRg -aQW -aQW -aQW -aRF -aPe -aET -aSG -aae -aae -aae -aae -aae -aae -aae -aoX -aaD -apc -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aqA -aqP -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -asF -asO -aoX -aoX -aoX -aoX -aoX -aaB -aaB -aaB -aap -aap -aaC -acF -ash -ahw -aaC -agM -adC -adC -adC -adC -agM -aaC -aiQ -acJ -aps -aaC -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +XY +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (12,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bas -baF -bbz -bah -aZG -bah -bbK -bbT -baF -bcw -bah -aZG -bah -bct -baF -bdv -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aai -aET -aPe -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQX -aQX -aRg -aPe -aET -aSG -aae -aae -aae -aae -aae -aae -aae -aoX -aaF -apc -apd -apk -aoX -apv -apJ -apX -aoX -aqo -aqB -aqQ -arc -aoX -arv -arJ -arU -asb -asl -aoX -aqA -asP -aoX -aaz -atc -atF -aoX -aaB -aaB -aaB -aap -aap -aaC -asg -asv -adg -aaC -agZ -ajL -adC -adC -aur -aiB -aaC -acD -auL -apM -aaC -aap -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +TF +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (13,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bdv -baF -bdv -bah -aZG -bah -bbL -bah -bci -bar -bah -aZG -bah -bcY -baF -bbb -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aai -aET -aPe -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQW -aQX -aQX -aRG -aPe -aET -aSG -aae -aae -aae -aae -aae -aae -aae -aoX -aoX -aoX -aoX -apk -aoX -aak -apJ -apY -aoX -aqp -apk -aqR -ard -aoX -arw -apk -apk -apk -asm -aoX -asj -asQ -asW -atc -atc -atG -aoX -aaB -aaB -aap -aap -aaC -aaC -acG -asu -auk -aaC -aaC -ahd -adC -aup -acJ -aaC -aaC -ajc -ajt -apt -aaC -aaC -aap -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +BD +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (14,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bah -baG -bah -bah -bah -bah -bad -bbR -baF -baF -bah -bah -bah -bah -bdi -bah -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aai -aET -aPe -aQX -aRe -aRg -aQW -aQX -aRe -aRg -aQX -aRe -aRg -aQW -aQW -aQW -aQW -aPe -aET -aSG -aae -aae -aae -aae -aae -aae -aae -aoX -aaD -apc -aoX -apk -aoX -apx -apJ -apZ -aoX -aqp -apk -aqS -aoX -aoX -arx -apk -apk -apk -asn -asA -asj -apk -aoX -aoX -atv -aoX -aoX -aaB -aaB -aap -aaC -aaC -aaC -acJ -asG -acJ -aaC -aaC -api -adC -adC -auD -aaC -aaC -acJ -ajX -acJ -aaC -aaC -aaC -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +XY +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +TF +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (15,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bat -bax -bat -bah -bah -bah -bah -bah -baF -bbU -bad -bah -baR -baV -baF -bdx -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -azK -aFp -aOR -aPg -aRf -aRg -aQW -aRl -aRo -aRg -aQX -aRx -aRz -aQW -aRC -aRE -aPg -aOR -aFp -azK -aae -aae -aae -aae -aae -aae -aae -aoX -aaF -apc -apd -apk -aoX -aak -apJ -apY -aoX -aqq -apk -aqT -are -apk -apk -apk -apk -apk -aso -asA -asj -aqP -aoX -ate -atc -atH -aoX -aaB -aaB -aap -aaC -aaH -acp -acI -ach -aeD -afm -aaC -ahf -adC -adC -ais -aaC -afm -aeD -ach -apN -auQ -asS -aaC -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +XY +VC +VC +VC +VC +VC +VC +No +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (16,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bat -bax -bax -bbg -bah -bbO -bbV -bbW -baF -baF -bbX -bah -bcL -baF -baF -baF -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aai -aET -aET -aOR -aPe -aPe -aRj -aOR -aPe -aRt -aRt -aPe -aOR -aRj -aRA -aRA -aOR -aET -aET -aSG -aae -aae -aae -aae -aae -aae -aae -aoX -aoX -aoX -aoX -apl -aoX -apy -apJ -aqa -aoX -aqp -apk -aqU -aoX -aoX -ary -apk -apk -apk -asp -asA -asj -asR -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aaE -acg -acq -acL -atE -aex -afy -aey -ahf -adC -adC -ait -aey -afy -aex -aux -aey -ach -ach -atd -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +XY +VC +Ts +Gw +VC +VC +VC +VC +VC +VC +VC +aa +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (17,1,1) = {" -aar -aar -aad -aZG -aZG -azk -bav -bax -bay -baF -bbr -baF -baF -bbc -bbc -baF -baF -bbr -baF -baH -bdj -bdy -bdo -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -aae -aai -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aRc -aSG -aae -aae -aae -aae -aae -aae -aae -aoX -acf -apc -aoX -apk -aoX -aoX -aoX -aqb -aoX -aqp -apk -aqQ -arf -aoX -arz -apk -apk -apk -asq -aoX -asj -aqQ -aay -aay -aay -aay -aaA -arX -aay -arX -arZ -aci -aDa -acK -atb -adC -adC -aum -adC -adC -adC -adC -aum -adC -adC -auw -apO -aqj -asT -arO -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (18,1,1) = {" -aar -aar -aad -aZG -aZG -bai -bat -bax -bay -baF -baF -baF -bbc -bbc -bbc -bbc -baF -baF -baF -bcZ -baW -bdz -bdw -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aVg -aVg -aVg -aVl -aVh -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aZt -aaj -aae -aae -aae -aae -aae -aae -aae -aoX -apa -apc -apd -apk -apk -apk -apk -apk -aoX -aqr -aqC -aqC -arg -aoX -arA -arK -apk -asc -asr -aoX -asj -aqR -aqC -aqC -aqC -aqC -aqC -arY -aqC -arY -asa -aDa -aDa -acM -atb -adC -adC -adC -adC -adC -adC -adC -adC -adC -adC -auz -apP -aDa -aDa -auB -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (19,1,1) = {" -aar -aar -aad -aZG -aZG -baj -bat -bax -bbm -bbf -bah -baF -bbc -bbY -bbv -bbc -baF -bah -bdh -bdK -baX -bda -bdA -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aVg -aNr -aTh -aJR -aNq -aNq -aNq -aNq -aNq -aNq -aYx -aNq -aNq -aNq -aNq -aYx -aNq -aNq -aNq -aNq -aNq -aNq -adZ -aae -aae -aae -aae -aae -aae -aae -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aqc -aoX -aoX -aoX -aoX -aoX -aoX -arB -arB -arV -aoX -aoX -aoX -asj -asR -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aaE -ach -ach -acr -auh -adC -afy -aey -ahf -adC -adC -ait -aey -aiF -adC -auy -aey -aqw -aqw -atd -aap -aap -agp -aap -aap -aap -aap -aXl -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aOY -aXl +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +Gw +Ts +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +OY +Xl "} (20,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bah -bah -bah -bah -bad -baS -bbc -bbZ -bcj -bbc -baF -bad -bah -bah -bah -bah -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aVg -aSW -aTi -aRq -aNq -aNq -aNq -aNq -aNq -aNq -awd -adZ -aTY -aVv -adZ -adZ -aNq -aNq -aNq -aNq -aNq -aNq -adZ -aae -aae -aae -aae -aae -aae -aae -aoX -aoY -aoY -aoY -aoY -aoX -apz -apK -apK -aqi -aqs -aqD -aoX -ari -aqu -arC -arL -apc -asd -ass -asB -aqB -asU -aoX -atf -atw -atJ -aoX -aaB -aaB -aap -asf -acj -acj -aaC -aez -adC -air -aaC -apj -adC -adC -auE -aaC -auH -adC -auM -aaC -arH -arH -aaC -aap -aap -agp -aap -aap -aap -aap -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl -aXl +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl +Xl "} (21,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -bah -bah -bdc -bbw -bbC -bbD -bbc -bca -bck -bbc -bbp -bcd -bco -bcq -bah -bah -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aVg -aTf -aTj -aRv -aQY -aPf -aXH -aSH -aSH -aQY -aTI -aRr -aSV -aSV -aRr -aTI -aQY -aSH -aSH -aXH -aPf -aQY -adZ -aae -aae -aae -aae -aae -aae -aae -aoX -aoY -apb -aoY -aoY -apn -apA -apK -apK -apK -apK -apK -aoX -arh -apc -apc -apc -apc -apk -apk -apk -apk -asQ -asO -atg -atg -atK -aoX -aaB -aaB -aap -ase -aaC -aaC -aaC -aey -aul -aey -aaC -aey -adC -auq -aey -aaC -aey -aul -aey -aaC -aaC -aaC -aaC -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +Gq +Nt +VC +WD +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (22,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -aZG -azk -bbj -baI -bbl -baF -bbc -bcb -bcl -bbc -baF -bcG -bcP -bcs -bdo -aZG -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aVg -aVg -aVg -aVg -aTI -aTI -aTI -aTI -aTI -aTI -adZ -aRu -aRu -aRu -aRu -adZ -adZ -adZ -adZ -adZ -adZ -adZ -adZ -aVI -aae -aae -aae -aae -aae -aae -aoX -aoY -aoY -aoY -aoY -apo -apB -apK -apK -apK -apK -apK -aqc -apc -apc -apc -apc -apc -apk -apk -apk -apk -apk -asX -atg -atg -atL -aoX -aaB -aaB -aap -aap -aaC -aaC -acJ -aeD -adC -aiv -aaC -aun -adC -adC -auF -aaC -auI -adC -auN -acJ -aaC -aaC -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +Gq +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Ax +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (23,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -aZG -bai -bbk -bcv -bbM -bbm -bbc -bcc -bcE -bbc -bbs -bcm -bcQ -bcy -bdw -aZG -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aTZ -aVi -aVi -aVi -aVJ -aVi -aVS -aVu -aYE -aRu -aRu -aWt -aWE -aXs -aXC -aZp -aVI -aYr -aZw -aYI -aVI -aae -aae -aae -aae -aae -aae -aoX -aoY -aoY -apb -aoY -app -apC -apK -apK -apK -apK -apK -aoX -apc -apc -arD -apc -apc -apk -apk -apk -apk -aqP -aoX -ath -atg -atM -aoX -aaB -aaB -aap -aap -aap -aaG -acN -aex -adC -acV -aey -apr -adC -adC -apr -aey -aus -adC -aex -aus -apQ -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (24,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -aZG -baj -bbt -bdG -bbo -baF -bbc -bdb -beC -bbc -baF -bcI -bcR -bcz -bdA -aZG -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUp -aVj -aVj -aVj -aVj -aVj -aVU -aVu -aRu -aRu -aRu -aWv -aWJ -aXv -aXD -aXD -aVI -aYs -aXD -aYJ -aVI -aae -aae -aae -aae -aae -aae -aoX -aoY -aoY -aoY -aoY -aoX -apD -acH -adp -acH -aqt -apD -aoX -arj -arr -aqE -arM -apc -apk -apk -apk -apk -asU -aoX -ati -atx -atN -aoX -aaB -aaB -aap -aap -aap -aaG -acW -aeA -adC -adC -aul -adC -adC -adC -adC -aul -adC -adC -aex -aus -apQ -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (25,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -bah -bah -bbu -bby -bbN -baZ -bbc -bdg -bdg -bbc -bdJ -bcn -bcp -bcC -bah -bah -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUp -aVj -aVj -aVj -aVj -aVj -aVU -aVu -aRu -aRu -aRu -aWv -aWK -aXw -aXD -aXD -aVI -aYu -aXD -aYJ -aVI -aae -aae -aae -aae -aae -aae -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -ark -arr -aqv -arM -apc -aqC -aqC -aqC -asI -asR -aoX -aoX -aoX -aoX -aoX -aoX -aaB -aap -aap -aap -aaG -acV -aex -adC -acN -aey -apr -adC -adC -apr -aey -aus -adC -aex -aus -apQ -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (26,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bah -bah -bba -bbn -bbx -bah -bbc -beA -beA -bbc -bah -bba -bbn -bbx -bah -bah -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUu -aVj -aVj -aVm -aVj -aVj -aXU -aVu -aRu -aRu -aRu -aWt -aWE -aXx -aZk -aXV -aYl -aZs -aYy -aXD -aVI -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -arl -apc -arG -apc -arW -aoX -ast -aoX -asj -asR -aoX -atj -aty -atO -atQ -aoX -aaB -aap -aap -aaC -aaC -acY -aex -adC -acW -aaC -apr -adC -adC -apr -aaC -aus -adC -aex -aaC -aaC -aaC -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (27,1,1) = {" -aar -aab -aab -aab -bad -bah -bad -baL -baJ -bbi -bcx -bah -bbc -beB -beB -bbc -bah -bcK -beF -beH -bdl -bad -bah -bad -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUp -aVj -aVj -aVm -aVj -aVj -aVU -aVu -aRu -aRu -aZi -aVI -aVI -aVI -aVI -aVI -aVI -aVI -aVI -aYl -aVI -aXi -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -asj -asR -aoX -atj -atz -atO -atQ -aoX -aaB -aap -aaC -aaC -aaC -acX -afF -adC -aiR -aaC -aqf -adC -adC -aqf -aaC -auJ -adC -afF -aaC -aaC -aaC -aaC -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (28,1,1) = {" -aar -aZK -aZM -aZN -azG -aZW -baz -bcu -bbc -bbc -bbc -bbE -bbc -bbc -bbc -bbc -bbE -bbc -beG -beG -bcV -bdd -bdq -bdC -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUr -aVm -aVj -aVj -aVj -aVj -aVU -aVu -aRu -aRu -aRu -aVM -aVQ -aWN -aVZ -aVQ -aVQ -aWH -aZD -aWW -aXe -aXi -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -asj -asR -aoX -atk -atA -apk -atR -aoX -aaB -aap -aaC -aaC -aaC -acJ -aeB -aul -agG -aaC -ahU -adC -auq -aey -aaC -aut -ajd -aaC -aaC -aaC -aaC -aaC -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (29,1,1) = {" -aar -aZK -aAe -aZN -azH -baf -baz -bcX -bbc -bbc -bbc -bbc -bbc -bbc -bbc -bbc -bbc -bbc -bbc -bbc -bdr -bdp -bdB -bdF -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUp -aVj -aVj -aVj -aVj -aVj -aVU -aTJ -aRu -aRu -aRu -aWB -aVR -aWb -aWl -aWz -aVQ -aWH -aWO -aWW -aXf -aXi -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -asj -asR -aoX -atl -atl -atl -atl -aoX -aaB -aap -aaC -ack -acC -acD -ahe -acD -agF -aaC -auj -aig -aig -auC -aaC -aiG -aiG -auO -aiG -aiG -ata -aaC -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (30,1,1) = {" -aar -aab -aab -aab -bad -bah -bad -baK -baF -baF -bbg -bad -bbc -bbc -bbc -bbc -bad -bcL -baF -baF -bey -bad -bah -bad -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUp -aVj -aVj -aVj -aVj -aVj -aVU -aVw -aRu -aRu -aRu -aVK -aVR -aWc -aWm -aWz -aVQ -aWH -aWP -aWW -aXg -aXi -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -asj -asR -asO -atm -atg -atg -atS -aoX -aaB -aap -aaG -acm -acD -acD -acD -acD -agI -aaC -ahW -aig -aig -aix -aaC -aiL -auv -auu -auu -auu -aiG -atI -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (31,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bah -bah -bbd -bbd -bad -bah -bbc -bcJ -bbc -bed -bah -bad -bcU -bcU -bah -bah -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUp -aVj -aVj -aVj -aVj -aVj -aVU -aVu -aYE -aRu -aRu -aVL -aVQ -aWd -aWd -aVQ -aVQ -aWH -aWQ -aWW -aXh -aXi -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -aqA -asR -asO -atn -atg -atg -atT -aoX -aaB -aap -aaG -acl -acD -acD -aeC -aeH -agH -aaC -ahV -aig -aig -aiw -aaC -aiL -auu -auu -auu -auu -aiG -atI -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (32,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -azk -baM -baF -baF -bah -baA -bbc -bcN -bbc -bbc -bbH -bah -aAK -baF -bez -bdo -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUp -aVj -aVm -aVj -aVN -aVj -aVU -aVu -aRu -aRu -aRu -aWB -aVQ -aVQ -aVQ -aVQ -aVQ -aWH -aWR -aWW -aZh -aXi -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -asj -asR -aoX -ato -atg -atg -atU -aoX -aaB -aap -aaG -aco -acD -acD -aeE -aeS -agK -aaC -ahX -aig -aig -aiz -aaC -aiG -aiG -aiG -aiG -aiG -aiG -atI -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (33,1,1) = {" -aar -aar -aad -aZG -aZG -aZG -baj -baN -baF -bbp -bah -baB -bbc -bbc -bbc -bbc -bbe -bah -bex -baF -bds -bdA -aZG -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUu -aVj -aVj -aVj -aVj -aVj -aYt -aVu -aRu -aRu -aRu -aWB -aVQ -aVZ -aVZ -aVQ -aVQ -aWH -aWV -aWW -aWW -aXi -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -asj -asR -asY -atg -atg -atg -atV -aoX -aaB -aap -aaC -acn -alH -acZ -ahs -aeI -agJ -aaC -aaC -aaC -aaC -aaC -aaC -aiP -ajs -auP -auA -asH -asH -aaC -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (34,1,1) = {" -aar -aar -aad -aZG -aZG -bah -bah -baO -baF -bbq -bad -bah -bcH -bcT -bcO -bcS -bcW -bah -bdk -baF -bdt -bah -bah -aZG -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUp -aVj -aVj -aVj -aVm -aVj -aVU -aVu -aRu -aRu -aRu -aWB -aVR -aWe -aWo -aWz -aVQ -aVQ -aVQ -aZE -aVM -aXi -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -asj -asR -aoX -atp -atg -atg -atW -aoX -aaB -aap -aaC -aaC -aaC -aaC -aeF -aaC -aaC -acJ -afk -afk -afk -afk -acJ -aaC -aaC -aaC -aaC -aaC -aaC -aaC -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (35,1,1) = {" -aar -aar -aad -aZG -bah -bah -baw -baF -baF -baF -bde -bah -bah -bah -bah -bah -bah -bdD -baF -baF -baF -bdu -bah -bah -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUs -aVn -aVj -aVj -aVm -aVO -aVP -aVu -aRu -aRu -aZi -aWB -aVR -aWk -aWu -aWz -aVQ -aVQ -aVQ -aWZ -aVM -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -asj -asR -asO -atq -atg -atg -atX -aoX -aaB -aap -aaC -aaC -aaC -aaC -aaC -aaC -acJ -afk -cVb -bkI -bkI -bee -afk -acJ -aaC -aaC -aaC -aaC -aaC -aaC -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (36,1,1) = {" -aar -aar -aad -aZG -bah -bah -baC -baP -baY -bcD -bcF -bah -baq -baq -baq -baq -bah -bdf -baF -bcM -baP -bdE -bah -bah -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUt -aUs -aVs -aVB -aVs -aVP -aUt -aVu -aRu -aRu -aRu -aVK -aVQ -aWd -aWd -aVQ -aVZ -aVZ -aVQ -aXa -aVM -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -asj -asR -asO -atr -atg -atg -atY -aoX -aaB -aap -aap -aaC -aaC -aaC -aaC -acJ -afk -cVb -aap -aap -aap -aap -bee -afk -acJ -aaC -aaC -aaC -aaC -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (37,1,1) = {" -aar -aar -aad -aZG -bah -bah -bah -bah -bah -bad -bah -bah -bao -bap -bap -bau -bah -bah -bah -bah -bah -bah -bah -bah -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -awl -aVo -aVo -aVo -aVo -aVo -awl -aVu -aRu -aRu -aRu -aVL -aVQ -aVQ -aVQ -aVR -aWA -aWI -aWz -aXb -aVM -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -apk -asR -aoX -ats -atg -atg -atZ -aoX -aaB -aaB -aap -aap -aaC -aaC -aaC -afk -cVb -aap -aap -aap -aap -aap -aap -bee -afk -aaC -aaC -aaC -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (38,1,1) = {" -aar -aar -aad -aZG -bah -baq -baq -baq -baq -bah -bah -aZG -aZG -aZG -aZG -aZG -aZG -bah -bah -baq -baq -baq -baq -bah -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aTZ -aVi -aVi -aVi -aVi -aVi -aVX -aVu -aRu -aRu -aRu -aWB -aVQ -aVQ -aVQ -aVR -aWF -aWL -aWz -aXc -aVM -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -asL -asV -aoX -att -atB -atP -aua -aoX -aaB -aaB -aap -aap -aap -aaC -acJ -cVb -aap -aap -aap -aap -aap -aap -aap -aap -bee -acJ -aaC -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (39,1,1) = {" -aar -aar -aad -aZG -bah -bao -bap -bap -bau -bah -aZG -aZG -aZG -aZG -aZG -aZG -aZG -aZG -bah -bao -bap -bap -bau -bah -aZG -aZQ -aar -aae -aae -aae -aae -aae -aae -aae -awl -aVa -aVp -aUt -aUt -aUt -aUt -aVU -aVu -aYE -aRu -aRu -aVM -aVY -aZC -aVQ -aVQ -aWd -aWd -aZC -aXd -aVM -aae -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aoX -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (40,1,1) = {" -aar -aar -aNC -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZJ -aZV -aar -aae -aae -aae -aae -aae -aae -aae -awl -aUp -aVq -aUt -aVr -aVr -aUt -aVU -aVu -aRu -aRu -aRu -aVM -aVM -aVM -aVM -aVM -aVM -aVM -aVM -aVM -aVM -aVM -aae -aae -aae -aae -aae -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -arN -arN -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (41,1,1) = {" -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aar -aae -awl -aUu -aUt -aVt -aUt -aUt -aUt -aXU -aVu -aRu -aRu -aRu -aVd -aWS -aWS -aZl -aXX -aYm -aVd -aYB -aYK -aYP -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (42,1,1) = {" -aGq -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aAx -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aar -aae -awl -aUp -aUt -aUt -aUt -aUt -aVD -aVU -aVu -aRu -aRu -aRu -aWC -aWT -aWS -aXJ -aXZ -aWS -aVd -aYC -aYL -aYP -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (43,1,1) = {" -aGq -aNt -aVC -aGw -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -aUp -aUt -aVr -aUt -aUt -aUt -aWh -aVu -aRu -aRu -aZi -aVe -aWS -aWS -aXK -aYa -aWS -aVd -aYD -aYM -aXN -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (44,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -aUp -aUt -aUt -aUt -aUt -aUt -aVU -aTJ -aRu -aRu -aRu -aXk -aWS -aWS -aXM -aXZ -aWS -aVd -aYC -aYN -aYQ -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (45,1,1) = {" -aGq -aNt -aXO -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aTs -aBD -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -aUp -aVr -aUt -aUt -aUt -aUt -aVU -aVw -aRu -aRu -aRu -aXm -aWS -aWS -aXN -aYb -aZq -aVd -aZx -aXZ -aYT -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (46,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aTs -aVC -aNj -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -aUp -aUt -aUt -aVD -aUt -aVr -aVV -aVu -aRu -aRu -aRu -aXn -aWS -aWS -aWS -aWS -aWS -aVd -aXN -aWS -aYU -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aSm -aSn -aSm -aSn -aSn -aSn -aSn -aSn -aSn -aSm -aSn -aSn -aSm -aae -aae -aae -aae -aae -aae -aSX -aSY -aSX -aSY -aSY -aSY -aSY -aSY -aSY -aSX -aSY -aSY -aSX -aae -aae -aae -aae -aae -aae -aTK -aTM -aTK -aTM -aTM -aTM -aTM -aTM -aTM -aTK -aTM -aTM -aTK -aae -aae -aae -aae -aae -aae -aUw -aUx -aUw -aUx -aUx -aUx -aUx -aUx -aUx -aUw -aUx -aUx -aUw -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (47,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aBD -aVC -aTG -aTG -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -aUp -aUt -aUt -aUt -aUt -aUt -aVU -aVu -aYE -aRu -aRu -aWC -aWT -aWS -aWS -aWS -aWS -aVd -aVd -aYw -aVd -aVd -aVd -aVd -aVd -aae -aae -aae -aae -aae -aSn -aSo -aSm -aSu -aSA -aSB -aSE -aSK -aSK -aSm -aSw -aSQ -aSn -aae -aae -aae -aae -aae -aae -aSY -aSZ -aSX -aTk -aTp -aTq -aTu -aTy -aTy -aSX -aTl -aTC -aSY -aae -aae -aae -aae -aae -aae -aTM -aTN -aTK -aTT -aTX -aUa -aUd -aUg -aUg -aTK -aTU -aUk -aTM -aae -aae -aae -aae -aae -aae -aUx -aUz -aUw -aUG -aUK -aUM -aUQ -aUS -aUS -aUw -aUH -aUW -aUx -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (48,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aTs -aTG -aFa -aDw -aTG -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -aUu -aUt -aVr -aUt -aUt -aUt -aXU -aVu -aRu -aRu -aRu -aWC -aWT -aWS -aWS -aWS -aWS -aVd -aYm -aWS -aWS -aWS -aWS -aZf -aVd -aae -aae -aae -aae -aae -aSn -aSp -aSs -aSw -aSp -aSC -aSp -aSp -aSw -aSs -aSw -aSR -aSn -aae -aae -aae -aae -aae -aae -aSY -aTa -aTd -aTl -aTa -aTr -aTa -aTa -aTl -aTd -aTl -aTD -aSY -aae -aae -aae -aae -aae -aae -aTM -aTP -aTS -aTU -aTP -aUb -aTP -aTP -aTU -aTS -aTU -aUl -aTM -aae -aae -aae -aae -aae -aae -aUx -aUA -aUF -aUH -aUA -aUN -aUA -aUA -aUH -aUF -aUH -aUX -aUx -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (49,1,1) = {" -aGq -aNt -aXY -aVC -aVC -aVC -aVC -aTG -aTn -aIk -aTG -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -aUp -aUt -aUt -aUt -aUt -aVD -aVU -aVu -aRu -aRu -aRu -aWC -aWT -aWS -aWS -aWS -aWS -aYv -aWS -aWS -aWS -aYY -aWS -aWS -aVd -aae -aae -aae -aae -aae -aSn -aSq -aSm -aSx -aSp -aSp -aSp -aSp -aSO -aSm -aSw -aSS -aSn -aae -aae -aae -aae -aae -aae -aSY -aTb -aSX -aTm -aTa -aTa -aTa -aTa -aTA -aSX -aTl -aTE -aSY -aae -aae -aae -aae -aae -aae -aTM -aTQ -aTK -aTV -aTP -aTP -aTP -aTP -aUi -aTK -aTU -aUm -aTM -aae -aae -aae -aae -aae -aae -aUx -aUC -aUw -aUI -aUA -aUA -aUA -aUA -aUU -aUw -aUH -aUY -aUx -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (50,1,1) = {" -aGq -aNt -aXY -aVC -aVC -aVC -aVC -aVC -aTG -aTG -aVC -aVC -aVC -aFH -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -aUs -aVn -aUt -aVE -aUt -aVO -aVP -aVu -aRu -aRu -aRu -aVd -aWS -aWS -aZn -aWS -aWS -aWS -aWS -aWS -aWS -aYZ -aWS -aZq -aVd -aae -aae -aae -aae -aae -aSn -aSr -aSn -aSz -aSw -aSD -aSF -aSN -aSP -aSn -aSw -aST -aSn -aae -aae -aae -aae -aae -aae -aSY -aTc -aSY -aTo -aTl -aTt -aTx -aTz -aTB -aSY -aTl -aTH -aSY -aae -aae -aae -aae -aae -aae -aTM -aTR -aTM -aTW -aTU -aUc -aUf -aUh -aUj -aTM -aTU -aUo -aTM -aae -aae -aae -aae -aae -aae -aUx -aUD -aUx -aUJ -aUH -aUP -aUR -aUT -aUV -aUx -aUH -aUZ -aUx -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (51,1,1) = {" -aGq -aNt -aXY -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -aUt -aUs -aVs -aVF -aVs -aVP -aUt -aVu -aRu -aRu -aZi -aVd -aVd -aVd -aVd -aVd -aVd -aVd -aYF -aWS -aWS -aWS -aWS -aWS -aVd -aae -aae -aae -aae -aae -aSm -aSn -aSm -aSn -aSn -aSn -aSn -aSn -aSn -aSm -aSn -aSn -aSm -aae -aae -aae -aae -aae -aae -aSX -aSY -aSX -aSY -aSY -aSY -aSY -aSY -aSY -aSX -aSY -aSY -aSX -aae -aae -aae -aae -aae -aae -aTK -aTM -aTK -aTM -aTM -aTM -aTM -aTM -aTM -aTK -aTM -aTM -aTK -aae -aae -aae -aae -aae -aae -aUw -aUx -aUw -aUx -aUx -aUx -aUx -aUx -aUx -aUw -aUx -aUx -aUw -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (52,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aTF -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -awl -awl -aVo -aVo -aVo -aVo -aVo -awl -aVu -aRu -aRu -aRu -aVd -aWU -aXy -aXP -aYc -aYc -aVd -aZy -aWS -aWS -aWS -aWS -aWS -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (53,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aBD -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -aVk -aVk -aVk -aVk -aVk -aVk -aVk -aVk -aUv -aRu -aRu -aRu -aVd -aXj -aXz -aXQ -aYh -aYc -aVd -aYH -aWS -aWS -aZb -aWS -aWS -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (54,1,1) = {" -aGq -aNt -aXY -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aTF -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -aVk -aVc -aVz -aVc -aVc -aVz -aVc -aWi -aYR -aRu -aRu -aRu -aVd -aZj -aXA -aXR -aYj -aZr -aYg -aWS -aWS -aWS -aZc -aWS -aWS -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (55,1,1) = {" -aGq -aNt -aXY -aVC -aVC -aVC -aVC -aVC -aVC -aNo -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -aVk -aVc -aVc -aVc -aVc -aVc -aVc -aVk -aUE -aRu -aRu -aRu -aVd -aXr -aXB -aYW -aYW -aYW -aYw -aWS -aWS -aWS -aWS -aWS -aZq -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (56,1,1) = {" -aGq -aNt -aXY -aVC -aTs -aGw -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aaa -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -aVk -aVf -aVk -aVy -aVk -aVy -aVg -aVg -aVg -aWq -aWs -aWs -aVg -aVg -aVg -aWS -aWS -aWS -aVd -aWS -aWS -aWS -aWS -aWS -aWS -aVd -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (57,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -aVk -aVb -aVk -aXp -aVk -aXp -aVg -aWj -aWp -aTi -aYG -aTi -aWp -aWj -aVg -aXS -aYk -aYo -aVd -aZz -aYO -aYV -aZd -aZe -aZg -aVd -aae -aae -aae -aae -aae -aae -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aQw -aQw -aNz -aNz -aNz -aNz -aNz -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aXL -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf -aAf +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (58,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -aVk -aVk -aVk -aVk -aVk -aVk -aVg -aVg -aVg -aWp -aVg -aWp -aVg -aVg -aVg -aVd -aVd -aVd -aVd -aVd -aVd -aVd -aVd -aVd -aVd -aVd -aae -aae -aae -aae -aae -aae -aNz -aWy -aJE -axf -aNz -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aBg -aBg -aOK -aFw -aAc -aDC -aHD -aar -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (59,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aGw -aTs -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aVg -aWj -aVg -aWj -aVg -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aNz -aBC -aJE -axf -aNz -ayM -ayM -ayM -aCG -ayM -ayM -avs -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aBg -aBg -aQC -axf -axf -aYA -aOw -aar -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aap -aap -aap -aap -aap -aap -aAf +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (60,1,1) = {" -aGq -aNt -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aVg -aVg -aVg -aVg -aVg -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aNz -aQZ -aJE -axf -aNz -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aBg -aBg -aOK -aPi -ayv -aYz -aJi -aar -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aaB -aap -aap -aap -aap -aAf +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (61,1,1) = {" -aGq -aNt -aVC -aWD -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -aVC -awZ -aAz -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aBw -aJW -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aNz -aNz -aQC -aNz -aNz -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aCG -ayM -ayM -aOK -aBg -aBg -aNz -aNz -aNz -aNz -aNz -aar -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aAf +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (62,1,1) = {" -aGq -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aNt -aAx -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aJW -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aNz -aNz -aNz -aNz -aBg -aBg -aBg -aNz -aNz -aNz -aNz -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aOK -aBg -aBg -aHX -aOK -aYe -aYe -aEw -aar -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aAf +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (63,1,1) = {" -aGq -azz -azz -azz -azz -azz -azz -azz -azz -azz -azz -aGq -azz -azz -azz -azz -azz -azz -azz -azz -azz -azz -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aGq -aar -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aae -aNz -aWY -aFM -aIL -aBg -aBg -aBg -aBg -aBg -awA -aNz -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aOK -aBg -aBg -aBg -auZ -aYe -aYe -aAt -aar -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aAf +ar +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +ar +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (64,1,1) = {" -aas -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaK -adA -adF -adF -adF -adF -adF -adF -adF -adF -adF -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -aap -aap -aap -aap -aap -aNz -aBg -aBg -aBg -aBg -aBg -aBg -aBg -aBg -awA -aNz -aRU -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aOK -aBg -aBg -aBg -aOK -aYe -aYe -aFX -aar -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aaB -aaB -aaB -aap -aap -aAf +as +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aK +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (65,1,1) = {" -aas -aaJ -aaJ -abd -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -adA -adF -adF -adF -aec -adF -adF -adF -adF -aec -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aiE -akw -akM -aiE -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aNz -aBg -aBg -aTe -aHe -aHe -aHe -aLy -aBg -awA -aNz -axW -axW -axW -axW -axW -axW -axW -axW -axW -axW -aNz -aBg -aBg -aBg -aNz -aNz -aNz -aNz -aar -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aaB -aap -aap -aap -aAf +as +aJ +aJ +bd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +dA +dF +dF +dF +ec +dF +dF +dF +dF +ec +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (66,1,1) = {" -aas -aaJ -aaJ -aaJ -aaJ -aaK -aaJ -aaJ -abd -aaJ -aaJ -adA -adF -adF -adF -adF -adF -adF -adF -adF -adF -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aiE -aiE -akx -akN -aiE -aiE -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aNz -aTO -aBg -aAF -aFV -aFV -aFV -aDd -aBg -aBg -aOK -aRa -aRa -aRa -aRa -aRa -aRa -aRa -aRa -aRa -aRa -aOK -aBg -aBg -aBg -aBg -aBg -aBg -aQw -aar -aId -aId -aId -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aWf -aWf -aWf -aWf -aWf -aZZ -aZZ -aZZ -aJX -aJX -aJX -aJX -aJX -aJX -aJX -axV -avG -aAw -aJX -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aJ +aJ +aJ +aJ +aK +aJ +aJ +bd +aJ +aJ +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (67,1,1) = {" -aas -aaK -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -adA -adF -aec -adF -adF -adF -adF -aec -adF -adF -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -akh -akn -ajH -akO -akZ -alj -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aNz -aFN -aBg -aAF -aFV -aFV -aFV -aDd -aBg -aBg -aAP -aJk -aJk -aJk -aJk -aJk -aJk -aJk -aJk -aJk -aJk -aAP -aBg -aBg -aBg -aBg -aBg -aBg -aNz -aWf -aId -aEZ -aId -aId -aaB -aWf -aWf -aWf -aWf -aWf -aWf -aWf -aWf -aTw -aTw -aBd -aTw -aIM -ayw -aIM -aPQ -aWM -aZo -aWr -aJY -aCE -aCE -aCE -aAv -aAv -aYX -aGz -bej -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aK +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +dA +dF +ec +dF +dF +dF +dF +ec +dF +dF +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (68,1,1) = {" -aas -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -abd -adA -adF -adF -adF -adF -adF -adF -adF -adF -adF -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aki -ako -aky -ajH -ala -alk -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aNz -aTO -aBg -aAF -aFV -aFV -aFV -aDd -aBg -aBg -aOK -aKX -aKX -aKX -aKX -aKX -aKX -aKX -aKX -aJk -aJk -aOK -aIP -aBg -aBg -aBg -aBg -aBg -aQw -aWf -aId -aEZ -aEZ -aId -aId -aWf -aBe -avI -aVx -avI -aEH -aWf -aZY -aTw -aTw -aTw -aBd -aIM -axG -aIM -aWn -aCg -aPY -aJX -aYf -axt -axt -axt -axt -axt -aBi -aGz -bej -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +bd +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (69,1,1) = {" -aas -aaJ -aaJ -aaJ -aaK -aaJ -aaJ -abd -aaJ -aaJ -aaJ -adA -adF -adF -adF -adF -adF -adF -adF -adF -adF -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aiE -aiE -aiE -akP -aiE -aiE -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aNz -aBg -aBg -aFs -aSL -aSL -aSL -aHf -aBg -awA -aNz -aWX -aWX -aWX -aWX -aWX -aWX -aWX -aWX -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aBg -aBg -aNz -aWf -aEZ -aEZ -aEZ -aEZ -aId -aWf -aWx -aVx -ayD -aVx -aWx -aWf -aTw -aTw -aTw -aWf -aWf -aGx -aGx -aGx -aJX -aJX -aJX -aJX -aJX -aOF -axt -axt -aLm -axt -aBi -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aJ +aJ +aJ +aK +aJ +aJ +bd +aJ +aJ +aJ +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (70,1,1) = {" -aas -aaJ -aaJ -aaJ -aaJ -aaK -aaJ -aaJ -aaJ -aaJ -aaJ -adA -adF -adF -adF -aec -adF -adF -adF -adF -aec -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aap -aiE -akp -akz -ajg -alb -aiE -aap -aap -aap -aap -aap -aap -aap -agp -aap -aap -aap -aap -aap -aNz -aBg -aBg -aBg -aBg -aBg -aBg -aBg -aNg -awA -aNz -aRU -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aYp -aBg -aBg -aBg -aBE -aOK -aBg -aBg -aNz -aWf -aWf -aRN -aWw -aWf -aWf -aWf -auX -avI -aVx -avI -aAY -aWf -aTw -aTw -aTw -azv -aap -aap -aap -aap -aap -aap -aap -aap -aJX -aLJ -axt -axt -aDF -aJX -aJX -aJX -aJX -aJX -aJX -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aJ +aJ +aJ +aJ +aK +aJ +aJ +aJ +aJ +aJ +dA +dF +dF +dF +ec +dF +dF +dF +dF +ec +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +af +dZ +dZ +dZ +dZ +dZ +Rh +dZ +dZ +dZ +dZ +dZ +dZ +Rh +dZ +dZ +dZ +dZ +dZ +af +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (71,1,1) = {" -aas -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -adA -adF -adF -adF -adF -adF -adF -adF -adF -adF -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aap -aiE -aje -aju -aiE -aap -aiE -aiE -aiC -ajg -alc -aiE -aap -aiE -alG -alS -aiE -aap -aap -agp -aap -aap -aap -aap -aap -aNz -aHq -aBg -aBg -aBg -aBg -aBg -aBg -aBg -awA -aNz -ayM -ayM -ayM -ayM -ayM -aCG -ayM -ayM -aOK -aBg -aBg -awA -aBg -aBg -aNz -aBg -aBg -aNz -aWf -auY -aTw -aEZ -avt -aTw -aWf -aWx -aVx -aVx -aVx -aWx -aWf -aBd -aTw -aTw -azv -aap -aap -aap -aap -aap -aap -aap -aap -aJX -aKZ -aWa -axt -axt -aWG -aAk -aAk -aIW -aAk -aAk -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ai +Al +Al +XE +Sl +Al +Al +XE +Al +Al +Al +Al +XE +Al +Al +Sl +XE +Al +Al +SG +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (72,1,1) = {" -aas -aaJ -abd -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -adA -adF -aec -adF -adF -adF -adF -aec -adF -adF -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aiE -aiC -ajf -ajv -aiE -aap -aiE -akq -aiE -ajg -ald -aiE -aap -aiE -ajW -ajg -aiC -aiE -aap -agp -aap -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aBg -aBg -aBg -aNz -aNz -aNz -aNz -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aOK -aBg -awA -aVH -ayf -aBg -aBh -aBg -aBg -aNz -aWf -auY -aTw -aTw -aTw -aTw -aWf -aYd -avI -aVx -aPo -aDk -aWf -aBd -aBd -aTw -azv -aap -aap -aap -aap -aap -aap -aJX -aJX -aJX -aJX -aJX -aZR -aJX -aJX -awe -aAk -aMq -aXI -aAk -avu -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aJ +bd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +dA +dF +ec +dF +dF +dF +dF +ec +dF +dF +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ai +ET +ET +OR +Pe +Pe +Ri +OR +Pe +Rs +Rt +Pe +OR +Ri +RA +RA +OR +ET +ET +SG +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (73,1,1) = {" -aas -aaJ -aaJ -aaJ -aaJ -aaJ -aaJ -aaK -aaJ -aaJ -abd -adA -adF -adF -adF -adF -adF -adF -adF -adF -adF -adF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aiE -aiS -ajg -ajw -aiE -aap -aiE -akr -akA -ajg -ale -aiE -aap -aiE -alI -ajg -amg -aiE -aap -agp -aap -aNz -aPI -aPI -aPI -aQU -ayM -ayM -aNz -aNz -azT -aNz -aNz -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aOK -aBg -aBg -awA -aBg -aBg -aNz -aBg -aBg -aNz -aWf -aIC -aTw -aTw -aTw -aTw -aWf -aNk -aLY -aTg -aAV -aWx -aWf -aWf -aWf -avZ -aWf -aWf -aWf -aap -aap -aJX -aJX -aJX -aJX -aHg -aKL -aYn -aZA -azn -aJX -aAk -aAk -aAk -aAk -aEc -aAk -aJX -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aAf +as +aJ +aJ +aJ +aJ +aJ +aJ +aK +aJ +aJ +bd +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +zK +Fp +OR +Pg +Rd +Rg +QW +Rk +Re +Rg +QX +Rw +Ry +QW +Rg +RD +Pg +OR +Fp +zK +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (74,1,1) = {" -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aiE -aiT -ajg -ajx -aiE -aap -aiE -aks -aiE -akQ -alf -aiE -aap -aiE -alJ -ajg -amh -aiE -aap -agp -aap -aNz -aPI -aQU -aQU -ayM -avs -ayM -aOK -aEA -aEA -aEA -aOK -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aJv -aBg -aBg -aBg -aJv -aOK -aBg -aBg -aNz -aWf -aWf -aWf -aIg -aWf -aWf -aWf -aWf -aWf -aND -aWf -aWf -aWf -aEX -aEX -aEX -aEX -aRn -aWf -aap -aap -aap -axL -aPX -aAi -aZA -aZA -apF -aZA -avK -aJX -aSU -aRB -aYq -aJX -aJX -aJX -aJX -aGz -bej -aap -aap -aap -aap -aap -aap -aap -aAf +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ai +ET +Pe +Qa +Re +Rg +QW +QX +Rm +Rg +QX +Re +Rg +QW +QW +QW +RF +Pe +ET +SG +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (75,1,1) = {" -aas -aaM -abe -abf -abp -abD -abD -acP -abf -abe -aaM -adA -adG -adG -adG -adG -adG -adG -adG -afG -adG -adG -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aiE -aiE -ajh -aiE -aiE -aiE -aiE -aiC -akB -ajg -ajg -aiE -aiE -aiE -aiE -alT -aiE -aiE -aap -agp -aap -aNz -aPI -aQU -ayM -ayM -ayM -ayM -aOK -aEA -aEA -aEA -aOK -ayM -avs -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aBg -aBg -aNz -aWf -aZY -aTw -aTw -aTw -aTw -aTw -aTw -aTw -aTw -aTw -aBd -azv -aEX -aEX -aWg -aWg -aEX -azv -aap -aap -aap -aQb -aZA -aZA -aZA -aZA -aMQ -aZA -aZA -aNT -aEN -aEN -aZu -aJX -aJg -aKh -azs -aGz -bej -aap -aap -aap -aap -aap -aap -aap -aAf +as +aM +be +bf +bp +bD +bD +cP +bf +be +aM +dA +dG +dG +dG +dG +dG +dG +dG +fG +dG +dG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ai +ET +Pe +QW +QW +QW +QW +QW +QW +QW +QW +QW +QW +QW +QX +QX +Rg +Pe +ET +SG +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (76,1,1) = {" -aas -aaN -abf -abe -abq -abD -abD -acQ -abe -abf -aaN -adA -adG -aed -adG -adG -adG -adG -adG -adG -aeT -adG -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aiE -aiU -ajg -ajg -aiE -aiE -aiE -aiE -aiE -ajg -alg -aiC -aiE -ajg -ajg -ajg -ami -aiE -aap -agp -aap -aNz -aPI -aQU -ayM -avs -ayM -ayM -aNz -aNz -azT -aNz -aNz -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aOK -aCj -aBg -aBg -aNz -aBg -aBg -aNz -aWf -aTw -aTw -aTw -aTw -aTw -aTw -aTw -aTw -aTw -aTw -aTw -avZ -aEX -aCK -aPL -aLb -aSM -azv -aap -aap -aap -aQb -aGe -aOH -aZA -aZA -aZR -aZA -aZA -aXo -aQT -aGk -aZA -aEF -aUB -aUB -aVA -aGz -bej -aap -aap -aap -aap -aap -aap -aap -aAf +as +aN +bf +be +bq +bD +bD +cQ +be +bf +aN +dA +dG +ed +dG +dG +dG +dG +dG +dG +eT +dG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ai +ET +Pe +QW +QW +QW +QW +QW +QW +QW +QW +QW +QW +QW +QX +QX +RG +Pe +ET +SG +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (77,1,1) = {" -aas -aaM -abe -abo -abA -abD -abD -acR -ada -abe -aaM -adA -adG -adG -adG -aeJ -adG -adG -adG -adG -adG -adG -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -agp -aiE -aiV -ajg -ajg -ajM -aiE -akj -akt -akC -ajg -ajg -all -aiE -alv -ajg -ajg -ajg -aiE -aap -agp -aap -aNz -aPI -ayM -ayM -ayM -ayM -ayM -ayM -aJc -aNs -aJc -aJc -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aFQ -axX -aBg -aBh -aBg -aBg -aNz -aWf -aTw -aUe -aTw -aTw -aTw -aTw -aTw -aTw -aTw -aTw -aTw -azv -aEX -aEX -aLQ -aLQ -aEX -azv -aap -aap -aap -aQb -aZA -aZA -aZA -aZA -aYn -aZA -aZA -aPw -ayI -ayI -aZu -aJX -aIx -awE -avX -aGz -bej -aap -aap -aap -aap -aap -aap -aap -aAf +as +aM +be +bo +bA +bD +bD +cR +da +be +aM +dA +dG +dG +dG +eJ +dG +dG +dG +dG +dG +dG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ai +ET +Pe +QX +Re +Rg +QW +QX +Re +Rg +QX +Re +Rg +QW +QW +QW +QW +Pe +ET +SG +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (78,1,1) = {" -aas -aaN -abf -abp -abB -abD -abD -abB -acP -abf -aaN -adA -adG -adG -adG -adG -aeT -adG -adG -adG -aeJ -adG -afZ -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -aiI -aiW -aji -ajy -ajg -ajY -ajg -ajg -ajH -ajH -ajg -ajg -ajY -ajg -aji -alU -amj -alX -aap -agp -aap -aNz -aPI -avs -ayM -ayM -ayM -ayM -aJc -aJc -aDb -aSt -aZB -aJc -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aNz -aNz -aNz -aNz -aBg -aBg -aBg -aWf -aWf -aNp -aWf -aWf -aWf -aNy -aWf -aWf -aWf -aTw -aTw -aWf -aRb -aEX -aEX -aEX -aEX -aWf -aap -aap -aap -aLN -aPt -aqK -aZA -aZA -apF -aZA -aOZ -aJX -aSU -aRB -aYq -aJX -aJX -aJX -aJX -aGz -bej -aap -aap -aap -aap -aap -aap -aap -aAf +as +aN +bf +bp +bB +bD +bD +bB +cP +bf +aN +dA +dG +dG +dG +dG +eT +dG +dG +dG +eJ +dG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +zK +Fp +OR +Pg +Rf +Rg +QW +Rl +Ro +Rg +QX +Rx +Rz +QW +RC +RE +Pg +OR +Fp +zK +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (79,1,1) = {" -aas -aaM -abe -abq -abC -abS -abS -abC -acQ -abe -aaM -adA -adG -adG -adG -aep -adG -adG -aed -adG -adG -afG -afZ -agp -agu -agu -agu -agu -agu -agu -agu -agu -agu -agu -aap -aap -aap -aap -aiJ -aiX -ajj -ajz -ajg -ajg -ajg -ajH -ajH -ajH -ajH -ajg -ajg -ajg -alK -alV -amk -alY -aap -agp -aap -aNz -aPI -ayM -ayM -ayM -ayM -ayM -awQ -aZB -aJc -aUn -aZB -aZB -aJc -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aFQ -axX -aBg -aBh -aBg -aBg -aBg -aWf -aId -aId -aSI -aFl -aJu -aQB -aQB -aOQ -aWf -aTw -aTw -aWf -aWf -aWf -avZ -aWf -aWf -aWf -aap -aap -aJX -aJX -aJX -aSy -aHg -aKL -aMQ -aZA -aBN -aJX -aBo -aTL -aTL -aZm -aTL -aAb -aJX -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aAf +as +aM +be +bq +bC +bS +bS +bC +cQ +be +aM +dA +dG +dG +dG +ep +dG +dG +ed +dG +dG +fG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ai +ET +ET +OR +Pe +Pe +Rj +OR +Pe +Rt +Rt +Pe +OR +Rj +RA +RA +OR +ET +ET +SG +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (80,1,1) = {" -aas -aaM -abf -abp -abC -abS -abS -abC -acP -abf -aaM -adA -adG -adG -adG -adG -adG -adG -adG -afG -adG -adG -afZ -agp -agu -agv -agv -agv -agu -aht -agu -ahM -ahM -agu -aap -aap -aap -aap -aiK -aiY -ajk -ajk -ajN -aiE -ajg -ajH -akD -akR -ajH -ajg -aiE -aly -alL -alW -aml -alZ -aap -agp -aap -aNz -aPI -ayM -aJc -aJc -aJc -aJc -aJc -aIr -aSc -avY -aKH -aMB -aJc -aJc -ayM -ayM -ayM -ayM -ayM -ayM -ayM -avs -ayM -ayM -aOK -aya -aBg -aBg -aNz -aBg -aBg -aHq -aar -aaB -aId -auU -aQB -aQB -aQB -aQB -aDZ -aWf -aTw -aTw -aWf -awU -aTw -aTw -azv -aap -aap -aap -aap -aap -aap -aJX -aJX -aJX -aJX -aJX -aZR -aJX -aJX -aEs -aTL -aTL -aTL -aTL -aSv -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aM +bf +bp +bC +bS +bS +bC +cP +bf +aM +dA +dG +dG +dG +dG +dG +dG +dG +fG +dG +dG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ai +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +Rc +SG +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (81,1,1) = {" -aas -aaN -abe -abq -abD -abD -abD -abD -acQ -abe -aaN -adA -adG -aed -adG -adG -adG -adG -aeJ -adG -aeT -adG -afZ -agp -agu -agw -agC -agC -agu -ahu -agu -ahH -ahH -agu -aap -aap -aap -aap -aiE -aiE -aiE -aiE -aiE -aiC -ajg -ajH -akE -akS -ajH -ajg -aiC -aiE -aiE -aiE -aiE -aiE -aap -agp -aap -aNz -aPI -ayM -ayM -ayM -ayM -awQ -aJc -aKN -aJe -awi -awi -awi -avq -awb -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aNz -aNz -aNz -aNz -aBg -aBg -aIA -aar -aaB -aId -aId -aZv -aQB -aQB -aQB -aDM -aWf -aTw -aTw -aWf -aTw -aTw -aTw -azv -aap -aap -aap -aap -aap -aap -aap -aap -aJX -aUL -aXW -axt -axt -aVT -aTL -aOd -aUO -aJz -aHJ -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aN +be +bq +bD +bD +bD +bD +cQ +be +aN +dA +dG +ed +dG +dG +dG +dG +eJ +dG +eT +dG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +Vg +Vg +Vg +Vl +Vh +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Jx +Zt +aj +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (82,1,1) = {" -aas -aaM -abf -abr -abE -abT -abT -abE -adb -abf -aaM -adA -adG -adG -adG -adG -adG -adG -adG -adG -adG -adG -afZ -agp -agu -agx -agC -agC -agC -agC -ahG -ahH -ahS -agu -aap -aap -aap -aap -aap -aiE -aiE -ajA -ajO -ajZ -akk -ajH -akF -akT -ajH -ajV -alp -alz -alM -aiE -aiE -aap -aap -agp -aap -aNz -aPI -ayM -ayM -ayM -ayM -aMl -aJc -ayl -aJe -awi -awi -aIG -axQ -aHL -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aCh -aCl -aFF -aNz -aXu -aNz -aNz -aar -aaB -aaB -aId -aId -aNp -aRp -aIR -aWf -aWf -aTw -aTw -aWf -aTw -aTw -aTw -azv -aap -aap -aap -aap -aap -aap -aap -aap -aJX -aKT -axt -axt -azL -aJX -aJX -aJX -aJX -aJX -aJX -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aM +bf +br +bE +bT +bT +bE +db +bf +aM +dA +dG +dG +dG +dG +dG +dG +dG +dG +dG +dG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +Vg +Nr +Th +JR +Nq +Nq +Nq +Nq +Nq +Nq +Yx +Nq +Nq +Nq +Nq +Yx +Nq +Nq +Nq +Nq +Nq +Nq +dZ +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (83,1,1) = {" -aas -aaN -abe -abf -abe -abf -abf -abe -abf -abf -aaN -adA -adG -adG -aep -adG -aeT -adG -adG -adG -aeJ -adG -afZ -agp -agu -agy -agC -ahh -ahh -agC -ahH -ahH -ahT -agu -aap -aap -aap -aap -aap -aap -aiI -ajB -ajP -aka -ajg -ajH -akG -akU -ajH -ajg -alq -alA -alN -alX -aap -aap -aap -agp -aap -aNz -aPI -ayM -ayM -ayM -ayM -awQ -aJc -aYS -aJe -awi -awi -awi -axD -aGi -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aYi -aYi -aYi -aYi -aYi -awq -aNz -aar -aaB -aaB -aaB -aId -aId -aWf -aWf -aWf -aTw -aTw -aTw -aWf -aTw -aTw -aTw -aWf -aWf -aZZ -aZZ -aZZ -aJX -aJX -aJX -aJX -aJX -aNY -axt -awS -axt -aDx -aCf -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aN +be +bf +be +bf +bf +be +bf +bf +aN +dA +dG +dG +ep +dG +eT +dG +dG +dG +eJ +dG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +Vg +SW +Ti +Rq +Nq +Nq +Nq +Nq +Nq +Nq +wd +dZ +TY +Vv +dZ +dZ +Nq +Nq +Nq +Nq +Nq +Nq +dZ +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (84,1,1) = {" -aas -aaM -abf -abe -abF -abU -abU -abF -abe -abe -aaM -adA -adG -adG -adG -adG -adG -adG -aed -adG -adG -afG -afZ -agp -agu -agz -agC -agC -agC -agC -agu -ahH -ahH -agu -aap -aap -aap -aap -aap -aap -aiJ -ajC -ajQ -akb -ajg -ajH -aag -aah -ajH -ajg -alr -alB -alO -alY -aap -aap -aap -agp -aap -aNz -aPI -ayM -aJc -aJc -aJc -aJc -aJc -awa -aCu -awi -avC -awv -aJc -aJc -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aQJ -aYi -aYi -aYi -aYi -aDg -aNz -aar -aaB -aaB -aaB -aWf -aHm -aJp -aMx -aWf -aTw -aTw -aTw -aWf -axR -aBd -aTw -aTw -aTw -aIM -ayw -aIM -aBj -aIS -aBH -aJX -aAZ -axt -aHS -axt -aQI -aXG -aLz -aGz -bej -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aM +bf +be +bF +bU +bU +bF +be +be +aM +dA +dG +dG +dG +dG +dG +dG +ed +dG +dG +fG +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +Vg +Tf +Tj +Rv +QY +Pf +XH +SH +SH +QY +TI +Rr +SV +SV +Rr +TI +QY +SH +SH +XH +Pf +QY +dZ +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (85,1,1) = {" -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -agp -agu -agA -agT -ahi -agC -agC -agu -ahN -ahN -agu -aap -aap -aap -aap -aap -aap -aiK -ajD -ajR -akc -ajg -ajH -akI -akW -ajH -ajg -als -alC -alP -alZ -aap -aap -aap -agp -aap -aNz -aPI -ayM -ayM -ayM -ayM -ayM -awQ -aZB -awi -awi -aZB -aZB -aJc -ayM -ayM -ayM -ayM -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aar -aaB -aaB -aaB -aWf -aXT -aXq -aXq -aIg -aTw -aTw -aWf -aWf -aWf -aBd -aBd -aTw -aTw -aIM -axG -aIM -aZa -aLi -aFO -aLT -aJK -aCE -aCE -aCE -aCE -aOX -ayA -aGz -bej -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +wy +wy +Vg +Vg +Vg +Vg +TI +TI +TI +TI +TI +TI +dZ +Ru +Ru +Ru +Ru +dZ +dZ +dZ +dZ +dZ +dZ +dZ +dZ +VI +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (86,1,1) = {" -aas -aaO -abg -abg -abG -abV -abV -abV -abV -abV -adq -adA -adH -adH -adH -aeK -aeU -aeU -aeK -aeK -aeK -aeK -afZ -agp -agu -agu -agu -agu -agC -agC -agu -agu -agu -agu -aap -aap -aap -aap -aap -aiE -aiE -ajE -ajS -akd -ajg -ajH -akJ -akX -ajH -ajg -alt -alD -alQ -aiE -aiE -aap -aap -agp -aap -aNz -aPI -ayM -ayM -ayM -ayM -ayM -aJc -aJc -aui -azb -aZB -aJc -ayM -ayM -ayM -ayM -ayM -aNz -aae -auc -auc -auc -auc -auc -auc -auc -auc -auc -auc -auc -aae -aae -aar -aaB -aaB -aaB -aWf -aVW -aXq -aXq -aWf -aTw -aTw -aWf -aId -aWf -aWf -aWf -aWf -aWf -aGx -aGx -aGx -aJX -aJX -aJX -aJX -aJX -aJX -aJX -axV -avG -aAw -aJX -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aO +bg +bg +bG +bV +bV +bV +bV +bV +dq +dA +dH +dH +dH +eK +eU +eU +eK +eK +eK +eK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +wy +yA +OU +xe +wl +TZ +Vi +Vi +Vi +VJ +Vi +VS +Vu +YE +Ru +Ru +Wt +WE +Xs +XC +Zp +VI +Yr +Zw +YI +VI +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (87,1,1) = {" -aas -aaP -abg -abg -abG -abV -abV -abV -abV -abV -abV -adA -adH -adH -adH -aeK -aeV -afn -afn -afn -afO -aeK -afZ -agp -agu -agB -agU -ahj -agC -agC -agC -agC -agC -agu -aap -aap -aap -aap -aiE -aiE -aiE -ajF -ajT -ake -aiE -ajH -ajH -ajH -ajH -aiE -ajF -ajT -ake -aiE -aiE -aiE -aap -agp -aap -aNz -aPI -aQU -aQU -ayM -ayM -ayM -ayM -aJc -aJc -aJc -aJc -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aae -auc -aue -aue -auf -aue -aue -aue -auf -aue -aue -auc -aae -aae -aar -aaB -aaB -aaB -aWf -awj -aMO -aLH -aWf -aNp -aTw -aWf -aId -aId -aId -aId -aId -aId -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aJX -aJX -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aAf +as +aP +bg +bg +bG +bV +bV +bV +bV +bV +bV +dA +dH +dH +dH +eK +eV +fn +fn +fn +fO +eK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +wy +rE +Ga +HQ +wl +Up +Vj +Vj +Vj +Vj +Vj +VU +Vu +Ru +Ru +Ru +Wv +WJ +Xv +XD +XD +VI +Ys +XD +YJ +VI +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (88,1,1) = {" -aas -aaP -abg -abg -abG -abW -act -act -act -adj -abV -adA -adH -aee -aeq -aeK -aeW -afo -afo -afo -afP -aeK -afZ -agp -agu -agC -agE -agE -agE -agE -agE -agE -agC -agu -agu -agu -agu -aiC -aiE -aiC -ajl -ajG -ajU -ajU -aiE -ajg -ajH -ajH -ajg -aiE -alu -alE -alR -ama -aiC -aiE -aiC -agp -aap -aNz -aPI -aQU -aQU -aQU -ayM -ayM -avs -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aae -auc -auf -auf -auf -auf -aug -auf -auf -auf -auf -auc -aae -aae -aar -aaB -aaB -aaB -aWf -aWf -aWf -aWf -aWf -aND -aJJ -aId -aId -aId -aId -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aap -aAf +as +aP +bg +bg +bG +bW +ct +ct +ct +dj +bV +dA +dH +ee +eq +eK +eW +fo +fo +fo +fP +eK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +wy +Ga +Ga +Iq +wl +Up +Vj +Vj +Vj +Vj +Vj +VU +Vu +Ru +Ru +Ru +Wv +WK +Xw +XD +XD +VI +Yu +XD +YJ +VI +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (89,1,1) = {" -aas -aaP -abg -abg -abG -abX -acu -acu -acu -adk -abV -adA -adH -aef -aeq -aeK -aeW -afo -afo -afo -afP -aeK -afZ -agp -agu -agC -agE -ahk -ahk -ahk -ahk -agE -agC -agC -agC -agC -aiy -aiD -aIO -aam -ajg -ajH -ajH -ajH -akl -ajH -ajH -ajH -ajH -akl -ajH -ajH -ajH -amb -amm -amq -ams -agp -aap -aNz -aPI -aQU -aQU -aQU -aQU -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aae -auc -aue -aue -auf -aue -aue -aue -auf -aue -aue -auc -aae -aae -aar -aaB -aaB -aaB -aWf -aDK -aPK -aLI -aWf -aBd -aBd -aEU -aId -aId -aId -aId -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aaB -aap -aAf +as +aP +bg +bg +bG +bX +cu +cu +cu +dk +bV +dA +dH +ef +eq +eK +eW +fo +fo +fo +fP +eK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +wy +pb +Ga +ME +wl +Uu +Vj +Vj +Vm +Vj +Vj +XU +Vu +Ru +Ru +Ru +Wt +WE +Xx +Zk +XV +Yl +Zs +Yy +XD +VI +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (90,1,1) = {" -aas -aaP -abg -abg -abG -abX -acu -acu -acu -adk -abV -adA -adH -aef -aeq -aeK -aeW -afo -afo -afo -afP -aeK -afZ -agp -agu -agC -agE -ahk -ahk -ahk -ahk -agE -agC -agC -aim -agC -aiy -aiD -aiM -aiD -ajg -ajH -ajH -ajg -ajg -ajg -ajH -ajH -ajg -ajg -ajg -ajH -ajH -amc -amn -amr -amt -agp -aap -aNz -aPI -aQU -aQU -aQU -aQU -aQU -ayM -ayM -ayM -ayM -avs -ayM -ayM -ayM -ayM -ayM -ayM -aNz -aae -aud -auf -auf -auf -auf -auf -auf -auf -auf -auf -aud -aae -aae -aar -aaB -aaB -aaB -aWf -aUq -aNp -aBk -aWf -aMs -aEZ -aBd -ayL -aEZ -aPS -aId -aId -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aaB -aap -aAf +as +aP +bg +bg +bG +bX +cu +cu +cu +dk +bV +dA +dH +ef +eq +eK +eW +fo +fo +fo +fP +eK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +wy +kr +Ga +Cw +wl +Up +Vj +Vj +Vm +Vj +Vj +VU +Vu +Ru +Ru +Zi +VI +VI +VI +VI +VI +VI +VI +VI +Yl +VI +Xi +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (91,1,1) = {" -aas -aaP -abg -abg -abG -abX -acu -acu -acu -adk -abV -adA -adH -aef -aeq -aeK -aeW -afo -afo -afo -afP -aeK -afZ -agp -agu -agC -agV -agV -agE -agE -agV -agV -agC -agu -agu -agu -agu -aiC -aiE -aiC -ajm -ajg -ajg -ajM -aiC -aku -akK -akY -alh -aiC -alv -ajg -ajg -ajg -aiC -aiE -aiC -agp -aap -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aNz -aaq -abc -abc -abc -abQ -acs -abc -acs -adh -abc -abc -abc -aap -aaq -aar -aaB -aaB -aaB -aWf -aIy -axm -aPm -aMg -aEZ -aEv -aEZ -aEZ -aUy -aEZ -aRX -aId -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aap -aap -aAf +as +aP +bg +bg +bG +bX +cu +cu +cu +dk +bV +dA +dH +ef +eq +eK +eW +fo +fo +fo +fP +eK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +wy +wy +wy +wy +wl +Ur +Vm +Vj +Vj +Vj +Vj +VU +Vu +Ru +Ru +Ru +VM +VQ +WN +VZ +VQ +VQ +WH +ZD +WW +Xe +Xi +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (92,1,1) = {" -aas -aaP -abg -abg -abG -abX -acu -acu -acu -adk -abV -adA -adH -aeg -aeq -aeK -aeW -afo -afo -afo -afP -aeK -afZ -agp -agu -agC -agC -agC -agC -agC -agC -agC -agC -agu -aap -aap -aap -aap -aiE -aiE -aiE -ajI -ajI -aiC -aiE -akv -akL -ajH -ajg -aiE -aiC -alF -alF -aiE -aiE -aiE -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaq -abc -abn -aby -abR -abn -acO -abn -adi -aby -abc -abc -bdR -aaq -aar -aaB -aaB -aaB -aWf -aTv -aNp -aiO -aMg -aEZ -aHN -aEZ -aEZ -aHN -aEZ -aVG -aId -aId -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaB -aaB -aap -aap -aap -aap -aap -aap -aap -aAf +as +aP +bg +bg +bG +bX +cu +cu +cu +dk +bV +dA +dH +eg +eq +eK +eW +fo +fo +fo +fP +eK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Up +Vj +Vj +Vj +Vj +Vj +VU +TJ +Ru +Ru +Ru +WB +VR +Wb +Wl +Wz +VQ +WH +WO +WW +Xf +Xi +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (93,1,1) = {" -aas -aaP -abg -abg -abG -abY -acv -acv -acv -adl -abV -adA -adH -adH -adH -aeK -aeX -afp -afp -afH -afQ -aeK -afZ -agp -agu -agu -agu -agu -ahr -ahr -agu -agu -agu -agu -aap -aap -aap -aap -aap -aiI -ajn -ajg -ajg -aiE -akm -ajH -ajH -ajH -ali -alm -aiE -ajg -ajg -amd -alX -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaq -abc -abn -abn -abR -abn -abn -abn -adi -abn -abn -adE -bdU -aaq -aar -aaB -aaB -aaB -aWf -aEo -aNp -axm -aMg -aIl -aXt -aEZ -aEZ -aHN -aEZ -aEZ -aAN -aId -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aap -aAf +as +aP +bg +bg +bG +bY +cv +cv +cv +dl +bV +dA +dH +dH +dH +eK +eX +fp +fp +fH +fQ +eK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Up +Vj +Vj +Vj +Vj +Vj +VU +Vw +Ru +Ru +Ru +VK +VR +Wc +Wm +Wz +VQ +WH +WP +WW +Xg +Xi +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (94,1,1) = {" -aas -aaP -abg -abg -abG -abV -abV -abV -abV -abV -abV -adA -adH -adH -adH -aeK -aeK -aeK -aeK -aeK -aeK -aeK -afZ -agp -agu -agE -agE -agE -agE -agE -agE -agE -agE -agu -aap -aap -aap -aap -aap -aiK -ajo -ajg -ajV -aiE -akm -ajH -ajH -ajH -ajH -aln -aiE -akk -ajg -ame -alZ -aap -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaq -abc -abn -abn -abR -abn -abn -abn -adi -abn -abn -adE -bdY -aaq -aar -aaB -aaB -aaB -aWf -aXF -aNp -aAA -aWf -aEZ -aEZ -aSJ -aJt -aID -aEZ -aId -aEZ -aJq -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aap -aap -aap -aap -aAf +as +aP +bg +bg +bG +bV +bV +bV +bV +bV +bV +dA +dH +dH +dH +eK +eK +eK +eK +eK +eK +eK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Up +Vj +Vj +Vj +Vj +Vj +VU +Vu +YE +Ru +Ru +VL +VQ +Wd +Wd +VQ +VQ +WH +WQ +WW +Xh +Xi +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (95,1,1) = {" -aas -aaP -abg -abg -abH -abZ -abZ -abZ -abZ -adm -adr -adA -adI -adH -adH -aeL -aeL -aeL -aeL -aeL -aeL -aeL -afZ -agp -agu -agD -agW -agE -agE -agE -agE -agW -agD -agu -aap -aap -aap -aap -aiE -aiC -ajp -ajg -acE -aiC -aiE -ajg -ajg -ajg -ajq -aiE -aiE -ajg -ajg -amf -aiE -aiE -aap -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaq -abc -abn -abn -abn -abn -abn -abn -abn -abn -abn -adE -bdU -aaq -aar -aaB -aaB -aaB -aWf -aAB -aZI -aEp -aWf -aId -aId -aId -aId -aId -aId -aId -aId -aId -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aaB -aZL +as +aP +bg +bg +bH +bZ +bZ +bZ +bZ +dm +dr +dA +dI +dH +dH +eL +eL +eL +eL +eL +eL +eL +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Up +Vj +Vm +Vj +VN +Vj +VU +Vu +Ru +Ru +Ru +WB +VQ +VQ +VQ +VQ +VQ +WH +WR +WW +Zh +Xi +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (96,1,1) = {" -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -agp -agu -agu -agu -agu -agu -agu -agu -agu -agu -agu -aap -aap -aap -aiE -aiE -aiZ -ajg -ajg -ajg -akf -aiE -aiE -aiE -aiE -aiE -aiE -ajg -ajg -ajg -ajg -amo -aiE -aiE -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaq -abc -abn -abz -abn -abn -abn -abn -abn -abz -abc -abc -bdZ -aaq -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aZL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Uu +Vj +Vj +Vj +Vj +Vj +Yt +Vu +Ru +Ru +Ru +WB +VQ +VZ +VZ +VQ +VQ +WH +WV +WW +WW +Xi +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (97,1,1) = {" -aas -aaQ -aaQ -aaQ -aaQ -aaQ -aaQ -aaQ -aaQ -aaQ -aaQ -adB -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -adJ -afZ -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -aap -aiE -aiE -aja -ajq -ajJ -ajg -akg -aiE -aiN -aiN -aiN -aiN -aiE -alw -ajg -ajg -ajq -amp -aiE -aiE -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaq -abc -abc -abc -abc -abc -abc -abc -abc -abc -abc -abc -aap -aaq -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +dB +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Up +Vj +Vj +Vj +Vm +Vj +VU +Vu +Ru +Ru +Ru +WB +VR +We +Wo +Wz +VQ +VQ +VQ +ZE +VM +Xi +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (98,1,1) = {" -aas -aaR -abh -abs -abs -abs -abs -abs -adc -abs -aaR -adB -adK -adK -adJ -adK -adK -adK -adK -adJ -adK -adK -afZ -aae -aae -aRH -aRH -aRH -aRH -aRH -aRH -aRH -aRH -aae -aae -agp -aap -aiE -aiE -aiE -aiE -aiE -aiE -aiE -aiE -qmF -lWy -lWy -bhW -aiE -aiE -aiE -aiE -aiE -aiE -aiE -aiE -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aaq -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aR +bh +bs +bs +bs +bs +bs +dc +bs +aR +dB +dK +dK +dJ +dK +dK +dK +dK +dJ +dK +dK +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Us +Vn +Vj +Vj +Vm +VO +VP +Vu +Ru +Ru +Zi +WB +VR +Wk +Wu +Wz +VQ +VQ +VQ +WZ +VM +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (99,1,1) = {" -aas -aaS -abi -abi -abI -aca -acw -acS -add -acS -ads -adB -adL -adL -aer -adL -adL -adL -adL -afI -adL -adL -afZ -aae -aae -aRH -aRR -aRR -aRR -aRR -aRR -aRR -aRH -aae -aae -agp -aap -aiE -aiN -aiN -aiN -aiN -aiE -aiE -aap -aap -aap -aap -aap -aap -aiE -aiE -aiN -aiN -aiN -aiN -aiE -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aS +bi +bi +bI +ca +cw +cS +dd +cS +ds +dB +dL +dL +er +dL +dL +dL +dL +fI +dL +dL +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Ut +Us +Vs +VB +Vs +VP +Ut +Vu +Ru +Ru +Ru +VK +VQ +Wd +Wd +VQ +VZ +VZ +VQ +Xa +VM +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (100,1,1) = {" -aas -aaS -abi -aaS -abJ -acb -acx -acT -acy -acT -adt -adB -adM -aeh -aeh -aeh -aeY -afq -afz -afz -afz -afS -afZ -aRH -aRH -aRH -aRS -aRS -aRS -aRS -aRS -aRS -aRH -aRH -aRH -agp -aap -aiE -qmF -lWy -lWy -bhW -aiE -aap -aap -aap -aap -aap -aap -aap -aap -aiE -qmF -lWy -lWy -bhW -aiE -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aS +bi +aS +bJ +cb +cx +cT +cy +cT +dt +dB +dM +eh +eh +eh +eY +fq +fz +fz +fz +fS +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +wl +Vo +Vo +Vo +Vo +Vo +wl +Vu +Ru +Ru +Ru +VL +VQ +VQ +VQ +VR +WA +WI +Wz +Xb +VM +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (101,1,1) = {" -aas -aaS -abi -abt -abK -acb -acy -acy -acy -acT -adt -adB -adN -aei -aei -aei -aeZ -afr -aei -aei -aei -afJ -afZ -aRH -aRK -aRO -aRT -aRZ -aSb -aSf -aRZ -aRT -aSi -aSj -aRH -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -agp -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aS +bi +bt +bK +cb +cy +cy +cy +cT +dt +dB +dN +ei +ei +ei +eZ +fr +ei +ei +ei +fJ +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +TZ +Vi +Vi +Vi +Vi +Vi +VX +Vu +Ru +Ru +Ru +WB +VQ +VQ +VQ +VR +WF +WL +Wz +Xc +VM +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (102,1,1) = {" -aas -aaS -abi -aaS -abL -acb -acx -acT -acy -acT -adt -adB -adM -aeh -adN -aei -aeZ -afr -aei -afJ -afz -afS -afZ -aRH -aRK -aRO -aRT -aRT -aRT -aRT -aRT -aRT -aSi -aSj -aRH -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aS +bi +aS +bL +cb +cx +cT +cy +cT +dt +dB +dM +eh +dN +ei +eZ +fr +ei +fJ +fz +fS +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Va +Vp +Ut +Ut +Ut +Ut +VU +Vu +YE +Ru +Ru +VM +VY +ZC +VQ +VQ +Wd +Wd +ZC +Xd +VM +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (103,1,1) = {" -aas -aaS -abi -abi -abM -acc -acz -acU -ade -acU -adu -adB -adO -aei -adN -aei -afa -afr -aei -afJ -aei -afT -afZ -aRH -aRH -aRH -aRV -aRV -aRV -aRV -aRV -aRV -aRH -aRH -aRH -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aMo -aMF -aMo -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aS +bi +bi +bM +cc +cz +cU +de +cU +du +dB +dO +ei +dN +ei +fa +fr +ei +fJ +ei +fT +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Up +Vq +Ut +Vr +Vr +Ut +VU +Vu +Ru +Ru +Ru +VM +VM +VM +VM +VM +VM +VM +VM +VM +VM +VM +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (104,1,1) = {" -aas -aaS -abi -abu -abN -abN -abN -abN -abN -abN -abN -adB -adP -aej -adN -aei -aeZ -afr -aei -afJ -afA -afU -afZ -aRI -aRL -aRP -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRP -aRH -aae -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aea -aqx -axM -lIl -axM -aqx -aea -aqx -aqx -aqx -aqx -aqx -aea -aqx -aEu -vTm -aEu -aqx -aea -aqx -aqx -aqx -aqx -aqx -aea -aqx -aIw -dyN -aIw -aqx -aea -aKa -aLk -aLk -aLk -aMo -aMG -aMo -aea -aMo -buq -aMo -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aS +bi +bu +bN +bN +bN +bN +bN +bN +bN +dB +dP +ej +dN +ei +eZ +fr +ei +fJ +fA +fU +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Uu +Ut +Vt +Ut +Ut +Ut +XU +Vu +Ru +Ru +Ru +Vd +WS +WS +Zl +XX +Ym +Vd +YB +YK +YP +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (105,1,1) = {" -aas -aaS -abi -abv -abO -acd -acd -acd -acd -adn -aaS -adB -adN -aei -aei -aei -aeZ -afr -aei -aei -aei -afJ -afZ -aRI -aRL -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRH -aae -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -axM -axM -axM -axM -axM -axM -axM -axM -axM -aBF -aBV -aBV -aBV -aBV -aBF -aBF -aEu -aEu -aEu -aEu -aGf -aGf -aGO -aGO -aGO -aGf -aGf -aIw -aIw -aIw -aIw -aIw -aIw -aIw -aLl -aLC -aLR -aMp -aMH -aNu -aMo -aMo -aMo -aMo -aNu -aea -aap -aap -aap -aap -aap -aap -aap +as +aS +bi +bv +bO +cd +cd +cd +cd +dn +aS +dB +dN +ei +ei +ei +eZ +fr +ei +ei +ei +fJ +fZ +ap +ap +ap +ap +ap +ap +ap +ap +ap +ae +ae +ae +ae +ae +ae +ae +wl +Up +Ut +Ut +Ut +Ut +VD +VU +Vu +Ru +Ru +Ru +WC +WT +WS +XJ +XZ +WS +Vd +YC +YL +YP +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (106,1,1) = {" -aas -aaS -abi -abw -abP -ace -ace -ace -ace -ado -aaS -adB -adP -aej -aej -aej -afb -afs -afA -afA -afA -afU -afZ -aRI -aRL -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRH -aae -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -axM -ayg -ayC -axM -azp -azM -aAm -aAM -aZS -aBG -aBW -aCv -aCO -aDm -aDI -aBF -aEx -aEV -aFq -aFL -aGf -aGs -aGP -aHk -aHx -aHR -aGf -aIz -aIZ -aJy -aJS -aJd -aKD -aIw -aLn -aLD -aLS -aMr -aMI -aNv -aNW -aOv -aOS -aPh -aPC -aQc -aap -aap -aap -aap -aap -aap -aap +as +aS +bi +bw +bP +ce +ce +ce +ce +do +aS +dB +dP +ej +ej +ej +fb +fs +fA +fA +fA +fU +fZ +ae +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +ae +ae +ae +ae +wl +Up +Ut +Vr +Ut +Ut +Ut +Wh +Vu +Ru +Ru +Zi +Ve +WS +WS +XK +Ya +WS +Vd +YD +YM +XN +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (107,1,1) = {" -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -aRI -aRL -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRH -aae -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -axM -ayh -ayE -axM -azq -azN -aAn -aAO -aBn -aBI -aBX -aCw -aCw -aDn -aDJ -aEa -aEy -aEW -aFr -aFP -aGf -aGt -aGQ -aGt -aHy -aHT -aGf -aIB -aJa -aJA -aJT -aKr -aKE -aIw -aLn -aLD -aLS -aMr -aMJ -aNw -aNX -aOv -aOS -aPh -aPC -aQc -aap -aap -aap -aap -aap -aap -aap +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ae +uc +ue +ue +uf +ue +ue +ue +uf +ue +ue +uc +ae +ae +ae +ae +wl +Up +Ut +Ut +Ut +Ut +Ut +VU +TJ +Ru +Ru +Ru +Xk +WS +WS +XM +XZ +WS +Vd +YC +YN +YQ +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (108,1,1) = {" -aas -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -adB -adQ -adQ -adQ -adQ -adQ -adQ -adQ -afK -afR -afR -afZ -aRI -aRL -aRQ -aRQ -aRQ -aSd -aSg -aRQ -aRQ -aRQ -aRH -aae -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -awf -awz -awf -aap -aap -aap -axN -ayi -ayF -azc -azr -azO -aAo -aAQ -aBp -aBJ -aBY -aCx -aCx -aDo -aCx -aEb -aEz -aEY -aFt -aEz -aGg -aGu -aGR -aGu -aHz -aGu -aIm -aIE -aJb -aIE -aIE -aKs -aKF -aLa -aLo -aLE -aLU -aMr -aMK -aNw -aNZ -aOv -aOS -aPh -aPC -aQc -aap -aap -aap -aap -aap -aap -aap +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +fZ +ae +uc +uf +uf +uf +uf +ug +uf +uf +uf +uf +uc +ae +ae +ae +ae +wl +Up +Vr +Ut +Ut +Ut +Ut +VU +Vw +Ru +Ru +Ru +Xm +WS +WS +XN +Yb +Zq +Vd +Zx +XZ +YT +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (109,1,1) = {" -aas -aaT -abj -aaT -aaT -aaT -aaT -aaT -aaT -abj -aaT -adB -adQ -adQ -adQ -adQ -adQ -adQ -adQ -afK -afR -afR -afZ -aRJ -aRL -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRH -aae -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -amw -amw -amx -amx -amx -amw -amw -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aea -aqx -aqG -avc -avc -aqF -fRO -awf -awB -awf -aea -axc -axr -axM -axM -axM -azd -azd -azd -azd -azd -aze -aBK -aBZ -aCy -aCw -aDp -aCw -aEa -aEB -aFb -aFu -aFR -aGf -aGv -aGt -aHl -aHA -aHU -aGf -aIF -aJd -aJB -aJU -aKt -aKG -aLc -aLp -aLF -aLV -aMr -aML -aNw -aOa -aOv -aOS -aPh -aPC -aQc -aap -aap -aap -aap -aap -aap -aap +as +aT +bj +aT +aT +aT +aT +aT +aT +bj +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +fZ +ae +uc +ue +ue +uf +ue +ue +ue +uf +ue +ue +uc +ae +ae +ae +ae +wl +Up +Ut +Ut +VD +Ut +Vr +VV +Vu +Ru +Ru +Ru +Xn +WS +WS +WS +WS +WS +Vd +XN +WS +YU +Vd +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (110,1,1) = {" -aas -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -adB -adQ -aek -adQ -adQ -adQ -adQ -adQ -afK -afR -afR -afZ -aRI -aRL -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRH -aae -amv -aap -aap -aap -aap -aap -aap -aap -aap -amw -amx -amw -amT -anB -anM -anP -amT -amw -amx -amw -aap -aap -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aap -aea -adD -aia -aia -aia -adD -aqF -aqJ -avd -avv -aqJ -awf -awg -awC -awg -awf -axc -axs -axO -ayj -ayG -azd -azt -azP -aAp -aAR -azd -aBL -aBZ -aCz -aCw -aDq -aCw -aBF -aEC -aFc -aFu -aFS -aGf -aGy -aGt -aHn -aHA -aHV -aGf -aIH -aJd -aJC -aJV -aKt -aKG -aLd -aLq -aLF -aLW -aMr -aMM -aNx -aOb -aOv -aOS -aPh -aPC -aQc -aap -aap -aap -aap -aap -aap -aap +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +ek +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +fZ +ae +ud +uf +uf +uf +uf +uf +uf +uf +uf +uf +ud +ae +ae +ae +ae +wl +Up +Ut +Ut +Ut +Ut +Ut +VU +Vu +YE +Ru +Ru +WC +WT +WS +WS +WS +WS +Vd +Vd +Yw +Vd +Vd +Vd +Vd +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (111,1,1) = {" -aas -aaT -aaT -aaT -abj -aaT -aaT -abj -aaT -aaT -aaT -adB -adQ -adQ -adQ -adQ -adQ -adQ -adQ -afK -afR -afR -afZ -aRI -aRL -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRH -aae -amv -aap -aap -aap -aap -aap -aap -amw -amw -amw -ani -amw -amw -amT -amT -amT -amw -amw -aok -amw -amw -amw -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aal -aal -adD -aho -aho -aho -ajK -aqF -arm -ave -avw -avL -awf -awm -awD -awO -awf -axd -axu -axO -ayk -ayH -azd -azu -azQ -aAq -aAS -aBq -aBM -aBZ -aCw -aCw -aCw -aDL -aEa -aED -aFd -aFu -aFT -aGf -aGA -aGt -aHo -aHA -aHW -aGf -aII -aJd -aJd -aJd -aKt -aKI -aIw -aLr -aLF -aLX -aMr -aMN -aNA -aOc -aOx -aOx -aOx -aOx -aOx -aOx -aOx -aOo -aOg -aOg -aap -aap +as +aT +aT +aT +bj +aT +aT +bj +aT +aT +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +fZ +ae +bc +bc +bc +bQ +cs +bc +cs +dh +bc +bc +bc +ae +aq +ae +ae +wl +Uu +Ut +Vr +Ut +Ut +Ut +XU +Vu +Ru +Ru +Ru +WC +WT +WS +WS +WS +WS +Vd +Ym +WS +WS +WS +WS +Zf +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (112,1,1) = {" -aas -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -adB -adQ -adQ -adQ -aeM -adQ -adQ -adQ -afK -afR -afR -afZ -aRI -aRL -aRP -aRQ -aRQ -aRQ -aRQ -aRQ -aRQ -aRP -aRH -aae -amv -aap -aap -aap -aap -aap -amw -amw -amV -amJ -amJ -ano -amw -anC -anN -anx -amw -aoc -amT -anA -anA -amw -amw -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -adz -aeG -ahn -aho -aho -aho -akH -aqF -arn -avf -avx -avM -awf -awn -awF -awP -awf -axe -axv -axO -aym -ayJ -azd -azw -azR -aAr -aAT -aBr -aBO -aCa -aCA -aCP -aDr -aDN -aEd -aEE -aFe -aFv -aEE -aGh -aGB -aGS -aHp -aHB -aHY -aIn -aIJ -aJd -aJD -aJZ -aKt -aKJ -aIw -aLs -aLG -aLZ -aMr -aMP -aNB -aOe -aOy -aOy -aOy -aPD -aQd -aQt -aPV -aQK -aQO -aQS -aap -aap +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +dQ +eM +dQ +dQ +dQ +fK +fR +fR +fZ +aq +bc +bn +by +bR +bn +cO +bn +di +by +bc +bc +ab +aq +ae +ae +wl +Up +Ut +Ut +Ut +Ut +VD +VU +Vu +Ru +Ru +Ru +WC +WT +WS +WS +WS +WS +Yv +WS +WS +WS +YY +WS +WS +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (113,1,1) = {" -aas -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -adB -adQ -adQ -adQ -adQ -adQ -adQ -adQ -afK -afR -afR -afZ -aRH -aRH -aRH -aRV -aRV -aRV -aRV -aRV -aRV -aRH -aRH -aRH -amv -aap -aap -aap -aap -amw -amw -amP -amW -anc -amJ -anp -amw -anD -amT -anx -amw -aod -amT -aoq -aoA -aoI -amw -amw -aap -aap -aap -aap -amv -aap -aap -aap -aap -adD -aal -adD -aib -aho -aho -akV -aqF -aro -avg -avx -arp -awf -awo -awG -awR -awf -axg -axr -axP -axO -ayK -aze -azd -aZP -aAs -azd -aZT -aBP -aCb -aBF -aCQ -aDs -aDO -aEa -aEG -aFf -aFx -aFU -aGf -aGC -aGT -aGf -aHC -aHZ -bab -aIw -aJf -bae -aKa -aKu -aKa -aKa -aLt -aLK -aMa -aMt -aMR -bal -aOf -aOz -aOT -aPj -aPE -aQe -aQu -aQD -aDQ -aOg -aDQ -aap -aap +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +fZ +aq +bc +bn +bn +bR +bn +bn +bn +di +bn +bn +dE +ac +aq +ae +ae +wl +Us +Vn +Ut +VE +Ut +VO +VP +Vu +Ru +Ru +Ru +Vd +WS +WS +Zn +WS +WS +WS +WS +WS +WS +YZ +WS +Zq +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (114,1,1) = {" -aas -aaT -aaT -aaT -abj -aaT -aaT -abj -aaT -aaT -aaT -adB -adQ -adQ -aes -adQ -adQ -adQ -adQ -afK -afR -afR -afZ -aRH -aRM -aRO -aRW -aRW -aRW -aRW -aRW -aRW -aSi -aSk -aRH -amv -aap -aap -aap -aap -amw -amH -amQ -amX -anc -amJ -amJ -amY -amT -amT -amT -amZ -amT -amT -anA -aoB -anA -aoN -amw -aap -aap -aap -aap -amv -aap -aap -aap -aap -tev -aal -aho -aho -aho -aho -alo -aqF -arp -avg -avx -arp -awf -awg -awH -awg -awf -axh -axw -axS -axz -axh -axz -azx -axz -axz -axz -aBs -aBQ -aCc -aBF -aBF -aBF -aBF -aBF -aEI -aFg -aEI -aZX -aDP -aGf -aGf -aGf -axh -axz -aBs -axz -axz -axz -azx -aIb -axS -axz -aLu -aLu -aMb -aMu -axh -aNE -ban -aOA -aOU -aPk -aPF -aQf -aQv -aQE -aQL -aQP -aQV -aap -aap +as +aT +aT +aT +bj +aT +aT +bj +aT +aT +aT +dB +dQ +dQ +es +dQ +dQ +dQ +dQ +fK +fR +fR +fZ +aq +bc +bn +bn +bR +bn +bn +bn +di +bn +bn +dE +ad +aq +ae +ae +wl +Ut +Us +Vs +VF +Vs +VP +Ut +Vu +Ru +Ru +Zi +Vd +Vd +Vd +Vd +Vd +Vd +Vd +YF +WS +WS +WS +WS +WS +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (115,1,1) = {" -aas -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -adB -adQ -adQ -aet -adQ -afc -adQ -adQ -afK -afR -afR -afZ -aRH -aRM -aRO -aRW -aSa -aSe -aSh -aSa -aRW -aSi -aSk -aRH -amv -aap -aap -aap -amw -amw -amI -amR -amR -amJ -amJ -anq -amw -anE -amT -anQ -amw -aoe -amT -aor -aoC -anA -aoO -amw -amw -aap -aap -aap -amv -aap -aap -aap -aap -adD -adD -ahp -aho -aho -aho -alx -aqF -asC -avg -avx -arp -awf -awp -awI -awT -awf -axi -axx -axx -axx -ayN -azf -azy -axx -aAu -axx -ayb -aBR -aCd -aCB -aCR -aDt -aDP -aEe -aEJ -aFh -aFy -aFW -aDP -aGD -aGU -aGG -aHE -axx -ayb -axx -axx -aJF -aKb -aKv -axx -axx -axx -aLL -aMc -aMv -aMS -aNF -aOh -aOB -aOV -aPl -aPG -aQg -aQv -aQE -aQL -aQP -aQV -aap -aap +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +et +dQ +fc +dQ +dQ +fK +fR +fR +fZ +aq +bc +bn +bn +bn +bn +bn +bn +bn +bn +bn +dE +ac +aq +ae +ae +wl +wl +Vo +Vo +Vo +Vo +Vo +wl +Vu +Ru +Ru +Ru +Vd +WU +Xy +XP +Yc +Yc +Vd +Zy +WS +WS +WS +WS +WS +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (116,1,1) = {" -aas -aaT -abj -aaT -aaT -aaT -aaT -aaT -aaT -abj -aaT -adB -adQ -adQ -adQ -adQ -adQ -adQ -adQ -afK -afR -afR -afZ -aRH -aRH -aRH -aRS -aRS -aRS -aRS -aRS -aRS -aRH -aRH -aRH -amv -aap -aap -aap -amx -amB -amJ -amJ -amJ -amJ -amJ -anp -amw -anF -amT -anR -amw -aof -amT -amT -amT -amT -amT -aoQ -amx -aap -aap -aap -amv -aap -aap -aap -aap -aea -ady -aho -aic -aho -aiu -amu -aqF -arp -avg -avx -arp -awf -awr -awI -awV -awf -axj -axy -axT -axU -axU -axU -azA -azA -aAy -azA -aBt -axz -axh -aCB -aCS -aDu -aDP -aEf -aEK -aEK -aEK -aFY -aDP -aGE -aGV -aGG -axh -axz -aIo -aIp -aIp -aIo -aKc -bag -aIp -aIp -aIo -axj -axy -aMw -aMT -aNG -aMT -aMT -aMT -aPn -aPH -aQh -aQv -aQE -aQL -aQP -aQV -aap -aap +as +aT +bj +aT +aT +aT +aT +aT +aT +bj +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +fZ +aq +bc +bn +bz +bn +bn +bn +bn +bn +bz +bc +bc +ag +aq +ae +ae +Vk +Vk +Vk +Vk +Vk +Vk +Vk +Vk +Uv +Ru +Ru +Ru +Vd +Xj +Xz +XQ +Yh +Yc +Vd +YH +WS +WS +Zb +WS +WS +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (117,1,1) = {" -aas -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -adB -adQ -adQ -adQ -adQ -adQ -adQ -adQ -afK -afR -afR -afZ -aae -aae -aRH -aRY -aRY -aRY -aRY -aRY -aRY -aRH -aae -aae -amv -aap -aap -amw -amw -amC -amJ -amJ -amJ -amJ -anj -amw -amw -amw -amZ -amw -amw -amw -aol -aos -amT -aoJ -aoP -aoR -amw -amw -aap -aap -amv -aap -aap -aap -aal -aal -adD -ahq -aid -ahv -aiA -aoZ -aqG -asD -avh -avy -aqG -awg -aws -awI -awW -awf -axh -axz -axU -ayn -ayO -azg -azA -azS -aAC -aAU -azA -axz -axh -aCB -aCT -aDv -aDP -aEg -aEg -aEg -aEg -aEg -aDP -aGF -aGW -aGG -axh -axz -aIp -aIK -aJh -aJG -aKd -aJl -aJh -aLe -aIp -axh -aMd -aMy -aMU -aNH -aOi -aOC -aMT -aPp -aPJ -aQi -aQv -aQE -aQL -aQP -aQV -aap -aap +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +fZ +aq +bc +bc +bc +bc +bc +bc +bc +bc +bc +bc +bc +ap +aq +ae +ae +Vk +Vc +Vz +Vc +Vc +Vz +Vc +Wi +YR +Ru +Ru +Ru +Vd +Zj +XA +XR +Yj +Zr +Yg +WS +WS +WS +Zc +WS +WS +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (118,1,1) = {" -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -aae -aae -aRH -aRH -aRH -aRH -aRH -aRH -aRH -aRH -aae -aae -amv -aap -aap -amw -amw -amw -amw -amw -amY -amw -amw -amw -anv -anG -anx -anS -anX -amw -amw -amw -amZ -amw -amw -amw -amw -amw -aap -aap -amv -aap -aap -aap -ady -aeb -afl -ahv -aie -aio -aiH -apf -aqH -asJ -avi -avx -avN -awg -awt -awI -awX -aZH -axh -axA -axU -ayo -ayP -azh -azA -azU -aAC -aAW -azA -aBS -axh -aCC -aCU -aCB -aDP -aDP -aDP -aDP -aDP -aDP -aDP -aGG -aGX -aHr -axh -axA -aIp -aIN -aJj -aJH -aKe -aKe -aKe -aLf -aIp -axh -aMe -aMy -aMV -aNI -aOj -aOD -aMT -aPq -aPM -aQj -aQv -aQE -aQL -aQP -aQV -aap -aap +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +ae +ae +Vk +Vc +Vc +Vc +Vc +Vc +Vc +Vk +UE +Ru +Ru +Ru +Vd +Xr +XB +YW +YW +YW +Yw +WS +WS +WS +WS +WS +Zq +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (119,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -afZ -aaI -aaI -aaI -aar -aaI -aaI -aaI -aar -aaI -aaI -aaI -aar -amv -aap -aap -amw -amy -amD -amK -amS -amT -and -and -amw -anw -anx -amT -anx -anY -amw -aom -aot -aoD -aot -amw -amT -aoU -amw -aap -aap -amv -aap -aap -aap -ady -aeb -agX -ahv -aif -aip -aif -apq -aqG -asK -avj -avz -avO -awh -awu -awJ -awY -awh -axk -axB -axY -ayp -ayQ -azi -azA -azV -aAC -aAX -azA -aBT -aCe -ayb -aCV -axx -axx -axx -axx -azB -axx -axx -axx -axx -aGY -ayb -aCi -aBT -aIp -aIQ -aJl -aJj -aKf -aKw -aKK -aKf -aIp -axh -aMf -aMy -aMW -aNJ -aOk -aOE -aMT -aPr -aPN -aQk -aQx -aQF -aOg -aqx -aea -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +fZ +aI +aI +aI +ar +aI +aI +aI +ar +aI +aI +aI +ar +ap +ap +ae +ae +Vk +Vf +Vk +Vy +Vk +Vy +Vg +Vg +Vg +Wq +Ws +Ws +Vg +Vg +Vg +WS +WS +WS +Vd +WS +WS +WS +WS +WS +WS +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (120,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adS -adS -adR -adS -adS -adS -adS -adR -adS -adS -adB -aga -aga -aga -adB -agN -agO -agO -adB -ahx -ahx -ahx -afZ -amv -aap -aap -amx -amz -amE -amE -amE -amT -amT -amT -amZ -anx -amT -amw -amT -anx -amZ -aon -aou -amT -amT -amZ -amT -aoV -amx -aap -aap -amv -aap -aap -aap -ady -aeb -agX -ahv -aif -aif -aif -apw -aqG -aub -avk -avA -avP -awk -aww -awK -axa -awk -axl -axC -axZ -ayq -ayR -azj -azA -azW -aAD -aBa -azA -aBT -axh -axy -axh -aBu -azC -axz -axz -aFi -axz -axz -azC -aBu -axh -axy -axh -aBT -aIp -aIQ -aJl -aJj -aKg -aKx -aKM -aKg -aIp -axh -aMh -aMy -aMX -aNJ -aOk -aOG -aMT -aPs -aPO -aQl -aQy -aQG -aQM -aQQ -aea -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dS +dS +dR +dS +dS +dS +dS +dR +dS +dS +dB +ga +ga +ga +dB +gN +gO +gO +dB +hx +hx +hx +fZ +ap +ap +ae +ae +Vk +Vb +Vk +Xp +Vk +Xp +Vg +Wj +Wp +Ti +YG +Ti +Wp +Wj +Vg +XS +Yk +Yo +Vd +Zz +YO +YV +Zd +Ze +Zg +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (121,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adT -adT -aeu -adT -adT -adT -adT -afL -adT -adT -adB -agb -aga -agq -adB -agO -agO -agP -adB -ahy -ahJ -ahO -afZ -amv -aap -aap -amw -amA -amE -amE -amE -amT -ane -ank -amw -any -anH -amT -anx -anZ -amw -aoo -aov -aoE -aov -amw -amT -aoW -amw -aap -aap -amv -aap -aap -aap -ady -aeb -ahl -ahv -aih -aiq -ajb -apE -aqI -auG -avl -avB -avQ -awg -awx -awI -axb -awg -axh -axA -axU -ayr -ayP -beO -azA -azX -aAC -aBb -azA -aBS -axh -aCD -aCW -aCF -aCH -aCH -aCH -aCH -aCH -aCH -aCH -aGH -aGZ -aHs -axh -axA -aIp -aIN -aJj -aJI -aKi -aKi -aKi -aLg -aIp -axh -aMi -aMy -aMY -aNK -aOl -aOI -aMT -aPs -aPP -aQm -aQv -aQE -aQL -aQP -aQV -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dT +dT +eu +dT +dT +dT +dT +fL +dT +dT +dB +gb +ga +gq +dB +gO +gO +gP +dB +hy +hJ +hO +fZ +ap +ap +ae +ae +Vk +Vk +Vk +Vk +Vk +Vk +Vg +Vg +Vg +Wp +Vg +Wp +Vg +Vg +Vg +Vd +Vd +Vd +Vd +Vd +Vd +Vd +Vd +Vd +Vd +Vd +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (122,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adU -ael -ael -ael -afd -aft -afB -afB -afB -afV -adB -agc -aga -agc -adB -agO -agO -agO -adB -ahz -ahK -ahP -afZ -amv -aap -aap -amw -amw -amw -amw -amw -amZ -amw -amw -amw -anz -anI -anx -anT -aoa -amw -amw -amw -amZ -amw -amw -amw -amw -amw -aap -aap -amv -aap -aap -aap -aal -aal -adD -ahq -aid -ahv -aiA -apG -aNO -auR -avm -avD -avR -awg -awy -awI -awW -awf -axh -axE -axU -ays -ayS -azl -azA -azY -aAE -aBc -azA -axz -axh -aCF -aCX -aDy -aCH -aEh -aDc -aCH -aFz -aDc -aCH -aGI -aHa -aGH -axh -axz -aIp -aIK -aJm -aJL -aKj -aJl -aJm -aLh -aIp -axh -aMd -aMy -aMZ -aNL -aOm -aOJ -aMT -aPu -aPR -aQn -aQv -aQE -aQL -aQP -aQV -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dU +el +el +el +fd +ft +fB +fB +fB +fV +dB +gc +ga +gc +dB +gO +gO +gO +dB +hz +hK +hP +fZ +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +Vg +Wj +Vg +Wj +Vg +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (123,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adV -aem -aem -aem -afe -afu -aem -aem -aem -afW -adB -agd -aga -aga -adB -agO -agN -agO -adB -ahz -ahK -ahP -afZ -amv -aap -aap -amw -amw -amF -amL -amT -amT -anf -anl -amw -amw -amw -amZ -amw -amw -amw -aop -aoh -amT -anx -anx -aoS -amw -amw -aap -aap -amv -aap -aap -aap -aap -aea -ady -aho -aij -aho -ajr -apH -aqV -auS -avn -avE -avS -awf -awr -awI -awV -awf -axh -axz -axT -axU -axU -axU -azA -azA -aAy -azA -aBt -axy -axj -aCF -aCY -aDz -aCH -aEi -aEL -aCH -aFA -aEL -aCH -aGJ -aHb -aGH -axj -axy -aIo -aIp -aIp -aIo -aKk -bag -aIp -aIp -aIo -axh -aMe -aMw -aMT -aNM -aMT -aMT -aMT -aPv -aPT -aQo -aQv -aQE -aQL -aQP -aQV -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +dB +gd +ga +ga +dB +gO +gN +gO +dB +hz +hK +hP +fZ +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +Vg +Vg +Vg +Vg +Vg +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (124,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adV -aem -aem -aem -afe -afu -aem -aem -aem -afW -adB -agc -aga -agq -adB -agO -agO -agO -adB -ahA -ahL -ahQ -afZ -amv -aap -aap -aap -amx -amG -amM -amT -amT -amT -amT -anr -amw -anJ -amT -anU -amw -aog -amT -amT -amT -amT -amT -aoT -amx -aap -aap -aap -amv -aap -aap -aap -aap -adD -adD -ahI -aho -aho -aho -apL -aqV -auT -avn -avF -avT -awf -awp -awI -awT -awf -axi -axx -ayb -axx -ayT -axx -azB -azZ -aAG -axx -axx -axx -aCi -aCF -aCZ -aDA -aCH -aEj -aDc -aCH -aFB -aDc -aCH -aGK -aHc -aGH -aHF -aIa -axx -axx -axx -axx -aKl -axx -aKO -axx -ayb -aLM -aMj -aMz -aKO -aNN -aOn -aOL -aOW -aPx -aPU -aQp -aQv -aQE -aQL -aQP -aQV -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +dB +gc +ga +gq +dB +gO +gO +gO +dB +hA +hL +hQ +fZ +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (125,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adV -aem -aem -aem -afe -afu -aem -aem -aem -afW -adB -agc -aga -agc -adB -agP -agO -agO -adB -ahx -ahx -ahx -afZ -amv -aap -aap -aap -amw -amw -amN -amT -amT -ang -amT -ans -amw -anx -amT -anx -amw -aoh -amT -aow -aoF -aoK -aoz -amw -amw -aap -aap -aap -amv -aap -aap -aap -aap -tev -aal -ahZ -aho -aho -aho -aho -aqW -auV -avn -avF -avU -awf -awg -awH -awg -awf -axh -axF -ayc -axz -axh -axz -azC -axz -axz -axz -aBu -axz -aCk -aCH -aCH -aCH -aDQ -aEk -aEM -aCH -aFC -aFZ -aDQ -aCH -aCH -aCH -aBQ -aIb -aBu -axz -axz -axz -azC -aBu -axh -axz -axy -axz -axh -aMu -axh -aNE -aOg -aOM -aPa -aPy -aPV -aQq -aQv -aQE -aQL -aQP -aQV -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +dB +gc +ga +gc +dB +gP +gO +gO +dB +hx +hx +hx +fZ +ap +ap +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (126,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adV -aem -aem -aem -afe -afu -aem -aem -aem -afW -afZ -aaL -aaL -aaL -aar -aaL -aaL -aaL -aar -aaL -aaL -aaL -aar -amv -aap -aap -aap -aap -amw -amO -amT -ana -amT -anm -amT -amZ -amT -amT -amT -amZ -amT -amT -aox -aoG -aoL -aoz -amw -aap -aap -aap -aap -amv -aap -aap -aap -aap -adD -aal -adD -aib -aho -aho -apR -aqV -auW -avn -avF -avV -awf -awo -awL -awR -awf -axn -axH -ayd -ayd -ayU -azm -aye -aye -aye -aye -aye -aBU -aCm -aCI -aDc -aDc -aDR -aEl -aDc -aFj -aEl -aDc -aDc -aDc -aDc -baa -aHG -aIc -aHt -bac -aHv -aHv -aHv -baa -aKP -aLj -aLv -aLj -aMk -aMA -aNa -bam -aOo -aON -aPb -aPz -aPV -aPV -aQz -aQH -aDQ -aOg -aDQ -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +fZ +aL +aL +aL +ar +aL +aL +aL +ar +aL +aL +aL +ar +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (127,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adV -aem -aem -aem -afe -afu -aem -aem -aem -afW -adB -age -agl -agr -adB -agQ -agR -agQ -adB -ahB -ahD -ahD -afZ -amv -aap -aap -aap -aap -amw -amw -amU -amT -amT -amT -ant -amw -anx -amT -anx -amw -aoi -amT -aoy -aoH -aoM -amw -amw -aap -aap -aap -aap -amv -aap -aap -aap -aap -adz -ahm -ahn -aho -aho -aho -aqd -aqV -ava -avn -avF -avW -awf -awn -awF -awP -awf -axo -axI -ayd -ayt -ayV -aye -azD -aAa -aAH -aBf -bdW -aAJ -aCn -aCJ -aDe -aDB -aDS -aEm -aEO -aFk -aFD -aDe -aGj -aDB -aDe -aHu -aHH -aIe -aIq -aIT -aJn -aJM -aKm -aKy -aKQ -aHv -aLw -aLO -aMm -aMC -aNb -aNP -aOe -aOO -aPc -aPA -aPW -aQr -aQA -aPV -aQN -aQR -aQS -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +dB +ge +gl +gr +dB +gQ +gR +gQ +dB +hB +hD +hD +fZ +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (128,1,1) = {" -aas -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adB -adW -aen -aen -aen -aff -afv -afC -afC -afC -afX -adB -agf -agl -agr -adB -agR -agQ -agR -adB -ahC -ahC -ahC -afZ -amv -aap -aap -aap -aap -aap -amw -amw -anb -anh -amT -anu -amw -anK -anO -amw -amw -aoj -amT -aoz -aoz -amw -amw -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aal -aal -adD -aho -aho -aho -aqe -aqV -avb -avo -avH -awc -awf -awm -awM -awO -awf -axp -axJ -ayd -ayu -ayW -aye -azE -aAd -aAI -aBf -bdX -aAJ -aCo -aCL -aCM -aZU -aDT -aCM -aCM -aFm -aFn -aFn -aGl -aFn -aFn -aHt -aHI -aIf -aHO -aHO -aHO -aHO -aHO -aHO -aKR -aHv -aLx -aLP -aMn -aMC -aNc -aNQ -aOp -aOx -aOx -aOx -aOx -aOx -aOx -aOx -aOf -aOg -aOg -aap -aap +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dW +en +en +en +ff +fv +fC +fC +fC +fX +dB +gf +gl +gr +dB +gR +gQ +gR +dB +hC +hC +hC +fZ +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (129,1,1) = {" -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aar -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aaL -aas -agg -agl -agr -adB -agQ -ahg -agQ -adB -ahD -ahD -ahD -afZ -amv -aap -aap -aap -aap -aap -aap -amw -amw -amw -ann -amw -amw -anL -anA -anV -amw -amw -amT -amw -amw -amw -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aap -aea -adD -ain -ain -ain -adD -aqV -aqJ -avp -avJ -aqJ -awf -awg -awC -awg -awf -axq -axK -ayd -ayx -ayX -aye -azF -aAd -aAJ -aAJ -aBx -aAJ -aCp -aCM -aDf -aDD -aDU -aEn -aEP -aFn -aFE -aGa -aGm -aGL -aHd -aHv -aHK -aIh -aIs -aIU -aJo -aJN -aKn -aKz -aKS -aHv -aLA -aLA -aLA -aMC -aNd -aNR -aOq -aOP -aPd -aPB -aPZ -aQs -aap -aap -aap -aap -aap -aap -aap +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +as +gg +gl +gr +dB +gQ +hg +gQ +dB +hD +hD +hD +fZ +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (130,1,1) = {" -aas -aaV -aaV -aaV -aaV -aaV -aaV -aaV -aaV -aaV -aaV -adB -adX -adY -adY -adY -adY -adY -adY -adY -adY -adY -adB -agh -agl -agr -adB -agR -agQ -agR -adB -ahD -ahD -ahD -afZ -amv -aap -aap -aap -aap -aap -aap -aap -aap -amw -amx -amw -anA -anA -anA -anW -aob -amw -amx -amw -aap -aap -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aea -aqx -aqJ -avr -avr -aqV -xzl -awf -awN -awf -aea -axq -axH -aye -aye -aye -aye -bdP -bdS -bdV -aAJ -aBy -aAJ -aCq -aCL -aDh -aDE -aDV -aDE -aEQ -aFm -aFG -aGb -aGn -aGb -aHh -aHt -aHM -aIh -aIt -aIV -aJr -aJO -aKo -aKA -aKU -aHv -aLA -aLA -aLA -aMC -aNe -aNS -aOr -aOP -aPd -aPB -aPZ -aQs -aap -aap -aap -aap -aap -aap -aap +as +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +dB +dX +dY +dY +dY +dY +dY +dY +dY +dY +dY +dB +gh +gl +gr +dB +gR +gQ +gR +dB +hD +hD +hD +fZ +ae +ae +ae +Uw +Ux +Uw +Ux +Ux +Ux +Ux +Ux +Ux +Uw +Ux +Ux +Uw +ae +ae +ae +ae +ae +Sm +Sn +Sm +Sn +Sn +Sn +Sn +Sn +Sn +Sm +Sn +Sn +Sm +ae +ae +ae +ae +ae +ae +SX +SY +SX +SY +SY +SY +SY +SY +SY +SX +SY +SY +SX +ae +ae +ae +ae +ae +ae +TK +TM +TK +TM +TM +TM +TM +TM +TM +TK +TM +TM +TK +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (131,1,1) = {" -aas -aaW -aaW -aaV -aaW -aaW -aaW -aaW -aaV -aaW -aaW -adB -adX -adY -adY -aeo -aeo -aeo -aeo -adY -adY -adY -adB -agi -agl -agr -adB -agQ -agR -agQ -adB -ahE -ahE -ahE -afZ -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -amw -amw -amx -amx -amx -amw -amw -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -awf -awz -awf -aap -aap -aap -aye -ayy -ayY -aye -bdQ -bdT -bdV -aAJ -aBz -aAJ -aCr -aCN -aDi -aDG -aDW -aEq -aDG -aFo -aFI -aGc -aGo -aGM -aGb -aHw -aHO -aIi -aIu -aIX -aJs -aJP -aKp -aKB -aKV -aHv -aLA -aLA -aLA -aMC -aNf -aNS -aOs -aOP -aPd -aPB -aPZ -aQs -aap -aap -aap -aap -aap -aap -aap +as +aW +aW +aV +aW +aW +aW +aW +aV +aW +aW +dB +dX +dY +dY +eo +eo +eo +eo +dY +dY +dY +dB +gi +gl +gr +dB +gQ +gR +gQ +dB +hE +hE +hE +fZ +ae +ae +ae +Ux +Uz +Uw +UG +UK +UM +UQ +US +US +Uw +UH +UW +Ux +ae +ae +ae +ae +ae +Sn +So +Sm +Su +SA +SB +SE +SK +SK +Sm +Sw +SQ +Sn +ae +ae +ae +ae +ae +ae +SY +SZ +SX +Tk +Tp +Tq +Tu +Ty +Ty +SX +Tl +TC +SY +ae +ae +ae +ae +ae +ae +TM +TN +TK +TT +TX +Ua +Ud +Ug +Ug +TK +TU +Uk +TM +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (132,1,1) = {" -aas -aaX -aaX -abx -aaX -aaX -aaX -aaX -adf -aaX -aaX -adB -adY -adY -adY -aeN -aeN -aeN -aeN -adY -adY -adY -adB -agf -agl -agr -adB -agR -agQ -agR -adB -ahD -ahD -ahR -afZ -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aye -ayz -ayZ -azo -azI -aAh -azI -azI -aBA -azI -aCs -aCL -aDj -aDE -aDX -aEr -aER -aFm -aFJ -aGb -aGp -aGN -aHi -aHt -aHP -aHO -aHO -aHO -aHO -aHO -aHO -aHO -aKW -aHv -aLA -aLA -aLA -aMC -aNh -aNS -aOt -aOP -aPd -aPB -aPZ -aQs -aap -aap -aap -aap -aap -aap -aap +as +aX +aX +bx +aX +aX +aX +aX +df +aX +aX +dB +dY +dY +dY +eN +eN +eN +eN +dY +dY +dY +dB +gf +gl +gr +dB +gR +gQ +gR +dB +hD +hD +hR +fZ +ae +ae +ae +Ux +UA +UF +UH +UA +UN +UA +UA +UH +UF +UH +UX +Ux +ae +ae +ae +ae +ae +Sn +Sp +Ss +Sw +Sp +SC +Sp +Sp +Sw +Ss +Sw +SR +Sn +ae +ae +ae +ae +ae +ae +SY +Ta +Td +Tl +Ta +Tr +Ta +Ta +Tl +Td +Tl +TD +SY +ae +ae +ae +ae +ae +ae +TM +TP +TS +TU +TP +Ub +TP +TP +TU +TS +TU +Ul +TM +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (133,1,1) = {" -aas -aaY -abk -abk -abk -abk -acA -acA -acA -acA -adv -adB -adY -adY -aev -aeO -afg -afg -aeQ -afM -aeo -adY -afZ -aaL -aaL -aaL -aar -aaL -aaL -aaL -aar -aaL -aaL -aaL -aar -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aye -ayB -aza -aye -azJ -aAj -aAL -aBl -aBB -aAJ -aCt -aCM -aDl -aDH -aDY -aEt -aES -aFn -aFK -aGb -aGr -aGb -aHj -aHv -aHQ -aIj -aIv -aIY -aJw -aJQ -aKq -aKC -aKY -aHv -aLA -aLA -aLA -aMC -aNi -aNU -aOu -aOP -aPd -aPB -aPZ -aQs -aap -aap -aap -aap -aap -aap -aap +as +aY +bk +bk +bk +bk +cA +cA +cA +cA +dv +dB +dY +dY +ev +eO +fg +fg +eQ +fM +eo +dY +fZ +aL +aL +aL +ar +aL +aL +aL +ar +aL +aL +aL +ar +ae +ae +ae +Ux +UC +Uw +UI +UA +UA +UA +UA +UU +Uw +UH +UY +Ux +ae +ae +ae +ae +ae +Sn +Sq +Sm +Sx +Sp +Sp +Sp +Sp +SO +Sm +Sw +SS +Sn +ae +ae +ae +ae +ae +ae +SY +Tb +SX +Tm +Ta +Ta +Ta +Ta +TA +SX +Tl +TE +SY +ae +ae +ae +ae +ae +ae +TM +TQ +TK +TV +TP +TP +TP +TP +Ui +TK +TU +Um +TM +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (134,1,1) = {" -aas -aaZ -abl -abl -abl -abl -abl -abl -abl -abl -adw -adB -adY -aeo -aew -aeP -afh -afw -afD -afM -aeo -adY -adB -agj -agk -ags -adB -agS -agS -agS -adB -ahF -ahF -ahF -afZ -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -amv -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aye -aye -aye -aye -aye -aye -azm -aBm -aBm -aBm -aye -aCM -aCM -aCM -aCM -aCM -aCM -aFn -aFm -aGd -aGd -aGd -aFn -aHv -aHv -aHv -aHv -aHv -aHv -aHv -aHv -aHv -aHv -aHv -aLA -aLA -aLA -aMD -aNl -aNV -aME -aME -aME -aME -aNV -aea -aap -aap -aap -aap -aap -aap -aap +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dY +eo +ew +eP +fh +fw +fD +fM +eo +dY +dB +gj +gk +gs +dB +gS +gS +gS +dB +hF +hF +hF +fZ +ae +ae +ae +Ux +UD +Ux +UJ +UH +UP +UR +UT +UV +Ux +UH +UZ +Ux +ae +ae +ae +ae +ae +Sn +Sr +Sn +Sz +Sw +SD +SF +SN +SP +Sn +Sw +ST +Sn +ae +ae +ae +ae +ae +ae +SY +Tc +SY +To +Tl +Tt +Tx +Tz +TB +SY +Tl +TH +SY +ae +ae +ae +ae +ae +ae +TM +TR +TM +TW +TU +Uc +Uf +Uh +Uj +TM +TU +Uo +TM +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (135,1,1) = {" -aas -aaZ -abl -abl -abl -abl -abl -abl -abl -abl -adw -adB -adY -aeo -aew -aeP -afi -afx -afD -afM -aeo -adY -adB -agk -agm -agk -adB -agS -agS -agS -adB -ahF -ahF -ahF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aea -aqx -aye -iwx -aye -aqx -aea -aqx -aqx -aqx -aqx -aqx -aea -aqx -aCM -fnL -aFn -aqx -aea -aqx -aqx -aqx -aqx -aqx -aea -aqx -aHv -sZf -aHv -aqx -aea -aHt -aLB -aLB -aLB -aME -aNm -aME -aea -aME -cEs -aME -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dY +eo +ew +eP +fi +fx +fD +fM +eo +dY +dB +gk +gm +gk +dB +gS +gS +gS +dB +hF +hF +hF +fZ +ae +ae +ae +Uw +Ux +Uw +Ux +Ux +Ux +Ux +Ux +Ux +Uw +Ux +Ux +Uw +ae +ae +ae +ae +ae +Sm +Sn +Sm +Sn +Sn +Sn +Sn +Sn +Sn +Sm +Sn +Sn +Sm +ae +ae +ae +ae +ae +ae +SX +SY +SX +SY +SY +SY +SY +SY +SY +SX +SY +SY +SX +ae +ae +ae +ae +ae +ae +TK +TM +TK +TM +TM +TM +TM +TM +TM +TK +TM +TM +TK +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (136,1,1) = {" -aas -aaZ -abl -abl -abl -abl -abl -abl -abl -abl -adw -adB -adY -aeo -aew -aeQ -afj -afj -afE -afN -adY -adY -adB -agk -agn -agk -adB -agS -agS -agS -adB -ahF -ahF -ahF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aME -aNn -aME -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dY +eo +ew +eQ +fj +fj +fE +fN +dY +dY +dB +gk +gn +gk +dB +gS +gS +gS +dB +hF +hF +hF +fZ +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (137,1,1) = {" -aas -aaZ -abl -abl -abl -abl -abl -abl -abl -abl -adw -adB -adY -adY -adY -aeR -aeR -aeR -aeR -adY -adY -adY -adB -agk -ago -agk -adB -agS -agS -agS -adB -ahF -ahF -ahF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dY +dY +dY +eR +eR +eR +eR +dY +dY +dY +dB +gk +go +gk +dB +gS +gS +gS +dB +hF +hF +hF +fZ +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (138,1,1) = {" -aas -aaZ -abl -abl -abl -abl -abl -abl -abl -abl -adw -adB -adY -adY -adY -aeo -aeo -aeo -aeo -adY -adY -afY -adB -agk -agk -agk -adB -agS -agS -agS -adB -ahF -ahF -ahF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dY +dY +dY +eo +eo +eo +eo +dY +dY +fY +dB +gk +gk +gk +dB +gS +gS +gS +dB +hF +hF +hF +fZ +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (139,1,1) = {" -aas -aba -abm -abm -abm -abm -acB -acB -acB -acB -adx -adB -adY -adY -adY -adY -adY -adY -adY -adY -adY -afY -adB -agk -agk -agt -adB -agS -agS -agS -adB -ahF -ahF -ahF -afZ -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +as +ba +bm +bm +bm +bm +cB +cB +cB +cB +dx +dB +dY +dY +dY +dY +dY +dY +dY +dY +dY +fY +dB +gk +gk +gt +dB +gS +gS +gS +dB +hF +hF +hF +fZ +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} (140,1,1) = {" -aar -abb -abb -abb -abb -abb -abb -abb -abb -abb -abb -aar -abb -abb -abb -abb -abb -abb -abb -abb -abb -abb -aar -abb -abb -abb -aar -abb -abb -abb -aar -abb -abb -abb -aar -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap -aap +ar +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +ar +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +ar +bb +bb +bb +ar +bb +bb +bb +ar +bb +bb +bb +ar +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap "} diff --git a/maps/tether/tether_shuttle_defs.dm b/maps/tether/tether_shuttle_defs.dm index 663e5545dd4..b98d2e4adb3 100644 --- a/maps/tether/tether_shuttle_defs.dm +++ b/maps/tether/tether_shuttle_defs.dm @@ -50,6 +50,7 @@ "beach_c", "beach_nw" ) + defer_initialisation = TRUE ////////////////////////////////////////////////////////////// // Tether Shuttle @@ -90,7 +91,7 @@ announcer = "Automated Traffic Control" arrival_message = "Attention. An unregistered vessel is approaching Virgo-3B." departure_message = "Attention. A unregistered vessel is now leaving Virgo-3B." - + defer_initialisation = TRUE ////////////////////////////////////////////////////////////// // Ninja Shuttle @@ -120,6 +121,7 @@ announcer = "Automated Traffic Control" arrival_message = "Attention. An unregistered vessel is approaching Virgo-3B." departure_message = "Attention. A unregistered vessel is now leaving Virgo-3B." + defer_initialisation = TRUE ////////////////////////////////////////////////////////////// // Skipjack @@ -149,6 +151,7 @@ announcer = "Automated Traffic Control" arrival_message = "Attention. An unregistered vessel is approaching Virgo-3B." departure_message = "Attention. A unregistered vessel is now leaving Virgo-3B." + defer_initialisation = TRUE ////////////////////////////////////////////////////////////// // ERT Shuttle @@ -178,6 +181,7 @@ announcer = "Automated Traffic Control" arrival_message = "Attention. An NT support vessel is approaching Virgo-3B." departure_message = "Attention. A NT support vessel is now leaving Virgo-3B." + defer_initialisation = TRUE ////////////////////////////////////////////////////////////// // RogueMiner "Belter: Shuttle diff --git a/vorestation.dme b/vorestation.dme index e6a6db13bfa..186ae33051c 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -470,10 +470,12 @@ #include "code\game\base_turf.dm" #include "code\game\periodic_news.dm" #include "code\game\response_team.dm" +#include "code\game\response_team_vr.dm" #include "code\game\shuttle_engines.dm" #include "code\game\skincmd.dm" #include "code\game\sound.dm" #include "code\game\trader_visit.dm" +#include "code\game\trader_visit_vr.dm" #include "code\game\world.dm" #include "code\game\antagonist\_antagonist_setup.dm" #include "code\game\antagonist\antagonist.dm" @@ -982,6 +984,7 @@ #include "code\game\objects\effects\glowshroom.dm" #include "code\game\objects\effects\item_pickup_ghost.dm" #include "code\game\objects\effects\landmarks.dm" +#include "code\game\objects\effects\landmarks_vr.dm" #include "code\game\objects\effects\manifest.dm" #include "code\game\objects\effects\mines.dm" #include "code\game\objects\effects\misc.dm"