From 31c09b85a6b56dd80e025d298b18c03033f14cd3 Mon Sep 17 00:00:00 2001 From: Leshana Date: Mon, 1 May 2017 20:14:35 -0400 Subject: [PATCH] Added the Tether Backup Shuttle --- code/controllers/shuttle_controller_vr.dm | 170 + code/game/area/Space Station 13 areas_vr.dm | 17 +- code/modules/shuttles/shuttles_vr.dm | 2 +- maps/tether/tether-1-surface.dmm | 189 +- maps/tether/tether-3-station.dmm | 6077 ++++++++++--------- maps/tether/tether-6-misc.dmm | 572 +- vorestation.dme | 2 +- 7 files changed, 3638 insertions(+), 3391 deletions(-) create mode 100644 code/controllers/shuttle_controller_vr.dm diff --git a/code/controllers/shuttle_controller_vr.dm b/code/controllers/shuttle_controller_vr.dm new file mode 100644 index 0000000000..0ac766890c --- /dev/null +++ b/code/controllers/shuttle_controller_vr.dm @@ -0,0 +1,170 @@ + +var/global/datum/shuttle_controller/shuttle_controller + + +/datum/shuttle_controller + var/list/shuttles //maps shuttle tags to shuttle datums, so that they can be looked up. + var/list/process_shuttles //simple list of shuttles, for processing + +/datum/shuttle_controller/proc/process() + //process ferry shuttles + for (var/datum/shuttle/ferry/shuttle in process_shuttles) + if (shuttle.process_state) + shuttle.process() + + +//This is called by gameticker after all the machines and radio frequencies have been properly initialized +/datum/shuttle_controller/proc/setup_shuttle_docks() + for(var/shuttle_tag in shuttles) + var/datum/shuttle/shuttle = shuttles[shuttle_tag] + shuttle.init_docking_controllers() + shuttle.dock() //makes all shuttles docked to something at round start go into the docked state + + for(var/obj/machinery/embedded_controller/C in machines) + if(istype(C.program, /datum/computer/file/embedded_program/docking)) + C.program.tag = null //clear the tags, 'cause we don't need 'em anymore + +/datum/shuttle_controller/New() + shuttles = list() + process_shuttles = list() + + var/datum/shuttle/ferry/shuttle + + ////////////////////////////////////////////////////////////// + // Escape shuttle and pods + shuttle = new/datum/shuttle/ferry/emergency() + shuttle.location = 1 // At offsite + shuttle.warmup_time = 10 + shuttle.area_offsite = locate(/area/shuttle/escape/centcom) + shuttle.area_station = locate(/area/shuttle/escape/station) + shuttle.area_transition = locate(/area/shuttle/escape/transit) + shuttle.docking_controller_tag = "escape_shuttle" + shuttle.dock_target_station = "escape_dock" + shuttle.dock_target_offsite = "centcom_dock" + shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN + shuttles["Escape"] = shuttle + process_shuttles += shuttle + + ////////////////////////////////////////////////////////////// + shuttle = new/datum/shuttle/ferry/escape_pod() + shuttle.location = 0 // At station + shuttle.warmup_time = 0 + shuttle.area_station = locate(/area/shuttle/large_escape_pod1/station) + shuttle.area_offsite = locate(/area/shuttle/large_escape_pod1/centcom) + shuttle.area_transition = locate(/area/shuttle/large_escape_pod1/transit) + shuttle.docking_controller_tag = "large_escape_pod_1" + shuttle.dock_target_station = "large_escape_pod_1_berth" + shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN + rand(-30, 60) //randomize this so it seems like the pods are being picked up one by one + process_shuttles += shuttle + shuttles["Large Escape Pod 1"] = shuttle + + ////////////////////////////////////////////////////////////// + shuttle = new/datum/shuttle/ferry/escape_pod() + shuttle.location = 0 // At station + shuttle.warmup_time = 0 + shuttle.area_station = locate(/area/shuttle/large_escape_pod2/station) + shuttle.area_offsite = locate(/area/shuttle/large_escape_pod2/centcom) + shuttle.area_transition = locate(/area/shuttle/large_escape_pod2/transit) + shuttle.docking_controller_tag = "large_escape_pod_2" + shuttle.dock_target_station = "large_escape_pod_2_berth" + shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN + rand(-30, 60) //randomize this so it seems like the pods are being picked up one by one + process_shuttles += shuttle + shuttles["Large Escape Pod 2"] = shuttle + + //give the emergency shuttle controller it's shuttles + emergency_shuttle.shuttle = shuttles["Escape"] + emergency_shuttle.escape_pods = list( + shuttles["Large Escape Pod 1"], + shuttles["Large Escape Pod 2"], + ) + + ////////////////////////////////////////////////////////////// + // Supply shuttle + shuttle = new/datum/shuttle/ferry/supply() + shuttle.location = 1 + shuttle.warmup_time = 10 + shuttle.area_offsite = locate(/area/supply/dock) + shuttle.area_station = locate(/area/supply/station) + shuttle.docking_controller_tag = "supply_shuttle" + shuttle.dock_target_station = "cargo_bay" + shuttles["Supply"] = shuttle + process_shuttles += shuttle + + supply_controller.shuttle = shuttle + + ////////////////////////////////////////////////////////////// + // Trade Ship + shuttle = new() + shuttle.location = 1 + shuttle.warmup_time = 10 //want some warmup time so people can cancel. + shuttle.area_offsite = locate(/area/shuttle/trade/centcom) + shuttle.area_station = locate(/area/shuttle/trade/station) + shuttle.docking_controller_tag = "trade_shuttle" + shuttle.dock_target_station = "trade_shuttle_dock_airlock" + shuttle.dock_target_offsite = "trade_shuttle_bay" + shuttles["Trade"] = shuttle + process_shuttles += shuttle + + ////////////////////////////////////////////////////////////// + // Away Mission Shuttle + var/datum/shuttle/multi_shuttle/AM = new/datum/shuttle/multi_shuttle() + AM.legit = 1 + AM.origin = locate(/area/shuttle/awaymission/home) + AM.start_location = "NSS Adephagia (AM)" + + AM.destinations = list( + "Old Engineering Base (AM)" = locate(/area/shuttle/awaymission/oldengbase) + ) + + AM.docking_controller_tag = "awaymission_shuttle" + AM.destination_dock_targets = list( + "NSS Adephagia (AM)" = "d1a2_dock_airlock" + ) + + var/area/awaym_dest = locate(/area/shuttle/awaymission/away) + if(awaym_dest.contents.len) //Otherwise this is an empty imaginary area + AM.destinations["Unknown Location [rand(1000,9999)]"] = awaym_dest + + AM.announcer = "Automated Traffic Control" + //These seem backwards because they are written from the perspective of the merc and vox ships + AM.departure_message = "Attention. The away mission vessel is approaching the colony." + AM.arrival_message = "Attention. The away mission vessel is now leaving from the colony." + AM.interim = locate(/area/shuttle/awaymission/warp) + + AM.move_time = 60 + AM.warmup_time = 8 + shuttles["AwayMission"] = AM + + + // TODO - Not implemented yet on new map + /////////////////////////////////////////////// + //VOREStation Add - Belter Shuttle + // shuttle = new/datum/shuttle/ferry() + // shuttle.location = 0 + // shuttle.warmup_time = 6 + // shuttle.area_station = locate(/area/shuttle/belter/station) + // shuttle.area_offsite = locate(/area/shuttle/belter/belt/zone1) + // shuttle.area_transition = locate(/area/shuttle/belter/transit) + // shuttle.docking_controller_tag = "belter_docking" + // shuttle.dock_target_station = "belter_nodocking" //Fake tags to prevent the shuttle from opening doors. + // shuttle.dock_target_offsite = "belter_nodocking" + // shuttle.transit_direction = EAST + // shuttle.move_time = 60 + rand(10,40) + // process_shuttles += shuttle + // shuttles["Belter"] = shuttle + //VOREStation Add End - Belter Shuttle + + ////////////////////////////////////////////////////////////// + // Tether Shuttle + shuttle = new() + shuttle.location = 1 // At offsite + shuttle.warmup_time = 5 + shuttle.move_time = 20 + shuttle.area_offsite = locate(/area/shuttle/tether/surface) + shuttle.area_station = locate(/area/shuttle/tether/station) + shuttle.area_transition = locate(/area/shuttle/tether/transit) + shuttle.docking_controller_tag = "tether_shuttle" + shuttle.dock_target_station = "tether_dock_airlock" + shuttle.dock_target_offsite = "tether_pad_airlock" + shuttles["Backup Shuttle"] = shuttle + process_shuttles += shuttle diff --git a/code/game/area/Space Station 13 areas_vr.dm b/code/game/area/Space Station 13 areas_vr.dm index c438ca68ea..e65cd78f80 100644 --- a/code/game/area/Space Station 13 areas_vr.dm +++ b/code/game/area/Space Station 13 areas_vr.dm @@ -215,4 +215,19 @@ icon_state = "blue2" /area/houseboat/holodeck/bunking name = "Houseboat Holo - Bunking" - icon_state = "blue2" \ No newline at end of file + icon_state = "blue2" + + +// Tether Map has this shuttle +/area/shuttle/tether/surface + name = "Tether Shuttle Landed" + icon_state = "shuttle" + base_turf = /turf/simulated/floor/reinforced + +/area/shuttle/tether/station + name = "Tether Shuttle Dock" + icon_state = "shuttle2" + +/area/shuttle/tether/transit + name = "Tether Shuttle Transit" + icon_state = "shuttle2" diff --git a/code/modules/shuttles/shuttles_vr.dm b/code/modules/shuttles/shuttles_vr.dm index f353303801..1bb8d9d72c 100644 --- a/code/modules/shuttles/shuttles_vr.dm +++ b/code/modules/shuttles/shuttles_vr.dm @@ -24,4 +24,4 @@ /obj/machinery/computer/shuttle_control/tether_backup name = "tether backup shuttle control console" - shuttle_tag = "tether_backup" + shuttle_tag = "Backup Shuttle" diff --git a/maps/tether/tether-1-surface.dmm b/maps/tether/tether-1-surface.dmm index 54510dec4b..e7b2f0b3d9 100644 --- a/maps/tether/tether-1-surface.dmm +++ b/maps/tether/tether-1-surface.dmm @@ -4427,81 +4427,84 @@ "bHg" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) "bHh" = (/obj/structure/closet/firecloset,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) "bHi" = (/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHj" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) -"bHl" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHm" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHn" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) -"bHp" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHq" = (/turf/simulated/shuttle/wall,/area/tether/surfacebase/todo/_05) -"bHr" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/unsimulated/shuttle/plating,/area/tether/surfacebase/todo/_05) -"bHs" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHt" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHu" = (/obj/structure/closet/firecloset,/turf/simulated/shuttle/floor/black,/area/tether/surfacebase/todo/_05) -"bHv" = (/obj/machinery/computer/shuttle_control/tether_backup,/turf/simulated/shuttle/floor/black,/area/tether/surfacebase/todo/_05) -"bHw" = (/obj/structure/closet/emcloset,/turf/simulated/shuttle/floor/black,/area/tether/surfacebase/todo/_05) -"bHx" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (EAST)"; icon_state = "shuttle_chair"; dir = 4},/turf/simulated/shuttle/floor/black,/area/tether/surfacebase/todo/_05) -"bHy" = (/turf/simulated/shuttle/floor/black,/area/tether/surfacebase/todo/_05) -"bHz" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (WEST)"; icon_state = "shuttle_chair"; dir = 8},/turf/simulated/shuttle/floor/black,/area/tether/surfacebase/todo/_05) -"bHA" = (/obj/machinery/door/airlock/external,/turf/unsimulated/shuttle/plating,/area/tether/surfacebase/todo/_05) -"bHB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) -"bHC" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHD" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (NORTH)"; icon_state = "shuttle_chair"; dir = 1},/turf/simulated/shuttle/floor/black,/area/tether/surfacebase/todo/_05) -"bHE" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) -"bHF" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) -"bHG" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHH" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/shuttle/plating/airless,/area/tether/surfacebase/todo/_05) -"bHI" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) -"bHK" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHL" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/carry,/area/tether/surfacebase/todo/_05) -"bHM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) -"bHN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) -"bHO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHP" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHQ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHR" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) -"bHT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) -"bHU" = (/obj/structure/cable/green{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,/area/tether/surfacebase/todo/_01) -"bHV" = (/obj/structure/cable/green{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,/area/tether/surfacebase/todo/_01) -"bHW" = (/obj/machinery/door/airlock/external,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{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,/area/tether/surfacebase/todo/_05) -"bHX" = (/obj/structure/cable/green{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,/area/tether/surfacebase/todo/_05) -"bHY" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bHZ" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIa" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/internals_required,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) -"bIb" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_05) -"bIc" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/nosmoking_1,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) -"bId" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIe" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIf" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) -"bIg" = (/obj/machinery/door/airlock/external,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_05) -"bIh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_01) -"bIl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) -"bIm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIn" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIo" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIp" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIr" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIt" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIu" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIv" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIx" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIy" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIz" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIA" = (/obj/machinery/light,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) -"bIB" = (/obj/structure/kitchenspike{name = "engine hoist"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIC" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bID" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIE" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) -"bIF" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"bHj" = (/obj/machinery/computer/shuttle_control/tether_backup,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "tether_pad_sensor"; pixel_x = -11; pixel_y = 28},/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "tether_pad_airlock"; pixel_x = 0; pixel_y = 28; tag_door = "tether_pad_hatch"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHk" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHl" = (/obj/structure/frame/computer,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) +"bHn" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHo" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHp" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) +"bHr" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHs" = (/turf/simulated/shuttle/wall,/area/shuttle/tether/surface) +"bHt" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/unsimulated/shuttle/plating,/area/shuttle/tether/surface) +"bHu" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHv" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHw" = (/obj/structure/closet/firecloset,/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHx" = (/obj/machinery/computer/shuttle_control/tether_backup,/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHy" = (/obj/structure/closet/emcloset,/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHz" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (EAST)"; icon_state = "shuttle_chair"; dir = 4},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHA" = (/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHB" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (WEST)"; icon_state = "shuttle_chair"; dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "tether_shuttle"; pixel_x = 25; pixel_y = 0; tag_door = "tether_shuttle_hatch"},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHC" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHD" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_shuttle_hatch"; locked = 1; name = "Shuttle Hatch"; req_access = newlist()},/turf/simulated/floor/plating,/area/shuttle/tether/surface) +"bHE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) +"bHF" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHG" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (NORTH)"; icon_state = "shuttle_chair"; dir = 1},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHH" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) +"bHI" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) +"bHJ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHK" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/shuttle/plating/airless,/area/shuttle/tether/surface) +"bHL" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) +"bHN" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHO" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/carry,/area/shuttle/tether/surface) +"bHP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) +"bHQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) +"bHR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHS" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHT" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHU" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bHV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) +"bHW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) +"bHX" = (/obj/structure/cable/green{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,/area/tether/surfacebase/todo/_01) +"bHY" = (/obj/structure/cable/green{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,/area/tether/surfacebase/todo/_01) +"bHZ" = (/obj/machinery/door/airlock/external,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{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,/area/tether/surfacebase/todo/_05) +"bIa" = (/obj/structure/cable/green{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,/area/tether/surfacebase/todo/_05) +"bIb" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIc" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bId" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/internals_required,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) +"bIe" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_05) +"bIf" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/nosmoking_1,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) +"bIg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIh" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIi" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_01) +"bIj" = (/obj/machinery/door/airlock/external,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/todo/_05) +"bIk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_01) +"bIo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/todo/_05) +"bIp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIq" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIr" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIs" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIu" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIw" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIx" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIy" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIA" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIB" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIC" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bID" = (/obj/machinery/light,/turf/simulated/floor/reinforced,/area/tether/surfacebase/todo/_05) +"bIE" = (/obj/structure/kitchenspike{name = "engine hoist"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIF" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIG" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bIH" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/todo/_05) +"bII" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -4828,25 +4831,25 @@ bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbc bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbFNbGjbGkbGlbFRbGmbEvbGnbDebGobGpbGqbGrbGqbGqbGqbGqbGqbGsbDebDebGtbBXbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbFNbGubGvbFRbFRbGwbEvbGxbDebDebDebDebGybGzbGzbGzbGzbGzbGAbDebGBbGCbBXbcsbcsbcsbtebGDbGEbGFbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbctbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbEubGGbGHbGIbGJbGKbEubGLbGMbGNbGObGPbGQbGRbGSbGTbGUbGVbGWbGXbGYbGZbBXbcsbcsbcsbtebHabucbHbbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHcbHdbHdbHdbHdbHdbHcbHcbHcbHdbHdbHdbHdbHdbHcbHcbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcsbcsbcrbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbEubEubHebHebHebEubEubBXbHfbHfbHfbBXbBXbHfbHfbHfbBXbBXbHfbHfbHfbBXbBXbcsbcsbcsbtebHgbucbCSbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHhbHibHibHibHibHibHibHjbHibHibHibHibHibHibHhbHcbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHkbHlbHmbHmbHmbHmbHmbHnbHibHlbHmbHmbHmbHmbHmbHnbHobcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHkbHpbHqbHrbHrbHrbHqbHsbHibHpbHibHibHibHibHibHsbHobcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHkbHtbHqbHubHvbHwbHqbHsbHibHpbHibHibHibHibHibHsbHobcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHkbHpbHqbHxbHybHzbHqbHsbHibHpbHibHibHibHibHibHsbHobcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHkbHpbHqbHybHybHybHAbHsbHibHpbHibHibHibHibHibHsbHobcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbtebvkbucbHBbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHCbHqbHDbHDbHDbHqbHsbHibHpbHibHibHibHibHibHsbHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbAbbtebHEbucbHFbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHGbHqbHHbHHbHHbHqbHsbHibHpbHibHibHibHibHibHIbHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbtebvkbucbHJbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHKbHqbHLbHLbHLbHqbHsbHibHpbHibHibHibHibHibHsbHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbHMbwqbFLbHdbHdbHdbHdbtebtebtebHdbHdbHdbHdbHNbHObHPbHPbHPbHPbHPbHQbHibHRbHPbHPbHPbHPbHPbHQbHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbHSbHTbHUbHVbHVbHVbHVbHVbHVbHVbHVbHVbHWbHXbHXbHWbHYbHibHibHibHibHibHibHibHibHibHibHibHibHibHZbHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbucbEkbucbucbucbucbucbucbucbucbucbucbIabIbbIbbIcbIdbHibHibHibHibHibHibHibHibHibHibHibIebHibHibHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbwebIfbFmbucbucbucbucbucbucbucbucbucbIgbIbbIbbIgbIhbIibIibIibIibIibIibIibIjbHcbHcbHcbHcbHcbHcbHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbIkbtebtebtebFKbFKbFKbFKbFKbtebtebtebFKbIlbIlbIlbHNbImbHibHibHibHibHibHibHibIdbHcbInbInbIobInbInbHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbIpbHibHibHibHibHibHibHibIqbIrbIsbInbInbInbItbHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbIubHibHibHibHibHibHibHibHibHcbIvbIwbIwbIxbIybHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbIzbHibHibHibIebHibHibIAbHhbHcbIBbICbIDbIDbIEbHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcsbcsbcrbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbEubEubHebHebHebEubEubBXbHfbHfbHfbBXbBXbHfbHfbHfbBXbBXbHfbHfbHfbBXbBXbcsbcsbcsbtebHgbucbCSbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHhbHibHibHibHibHibHjbHkbHlbHibHibHibHibHibHhbHcbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHmbHnbHobHobHobHobHobHpbHibHnbHobHobHobHobHobHpbHqbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHmbHrbHsbHtbHtbHtbHsbHubHibHrbHibHibHibHibHibHubHqbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHmbHvbHsbHwbHxbHybHsbHubHibHrbHibHibHibHibHibHubHqbcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHmbHrbHsbHzbHAbHBbHsbHubHibHrbHibHibHibHibHibHubHqbcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbucbwqbGibcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHmbHrbHsbHCbHAbHAbHDbHubHibHrbHibHibHibHibHibHubHqbcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbtebvkbucbHEbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHFbHsbHGbHGbHGbHsbHubHibHrbHibHibHibHibHibHubHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbAbbtebHHbucbHIbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHJbHsbHKbHKbHKbHsbHubHibHrbHibHibHibHibHibHLbHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbtebvkbucbHMbtebcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHNbHsbHObHObHObHsbHubHibHrbHibHibHibHibHibHubHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbvkbHPbwqbFLbHdbHdbHdbHdbtebtebtebHdbHdbHdbHdbHQbHRbHSbHSbHSbHSbHSbHTbHibHUbHSbHSbHSbHSbHSbHTbHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbHVbHWbHXbHYbHYbHYbHYbHYbHYbHYbHYbHYbHZbIabIabHZbIbbHibHibHibHibHibHibHibHibHibHibHibHibHibIcbHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbucbEkbucbucbucbucbucbucbucbucbucbucbIdbIebIebIfbIgbHibHibHibHibHibHibHibHibHibHibHibIhbHibHibHcbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbGhbwebIibFmbucbucbucbucbucbucbucbucbucbIjbIebIebIjbIkbIlbIlbIlbIlbIlbIlbIlbImbHcbHcbHcbHcbHcbHcbHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbInbtebtebtebFKbFKbFKbFKbFKbtebtebtebFKbIobIobIobHQbIpbHibHibHibHibHibHibHibIgbHcbIqbIqbIrbIqbIqbHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbIsbHibHibHibHibHibHibHibItbIubIvbIqbIqbIqbIwbHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbIxbHibHibHibHibHibHibHibHibHcbIybIzbIzbIAbIBbHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbICbHibHibHibIhbHibHibIDbHhbHcbIEbIFbIGbIGbIHbHcbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbHcbHcbHcbHcbHcbHcbHcbHcbHcbHcbHcbHcbHcbHcbHcbHcbHcbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq -bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbIFbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbIFbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq +bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbIIbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbIIbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq bcqbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcsbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcrbcq diff --git a/maps/tether/tether-3-station.dmm b/maps/tether/tether-3-station.dmm index 34571b4945..2f6feb988a 100644 --- a/maps/tether/tether-3-station.dmm +++ b/maps/tether/tether-3-station.dmm @@ -1593,7 +1593,7 @@ "aEG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) "aEH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) "aEI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"aEJ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/cap/hidden{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aEJ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) "aEK" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/station/dock_two) "aEL" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 0},/obj/machinery/ai_status_display{pixel_x = 0; pixel_y = 32},/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/library_conference_room) "aEM" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/wood,/area/library_conference_room) @@ -1605,7 +1605,7 @@ "aES" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one) "aET" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one) "aEU" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aEV" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aEV" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) "aEW" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two) "aEX" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_two) "aEY" = (/obj/structure/filingcabinet,/turf/simulated/floor/wood,/area/library_conference_room) @@ -1628,2876 +1628,2881 @@ "aFp" = (/obj/structure/table/woodentable,/obj/item/weapon/book/codex,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/library_conference_room) "aFq" = (/obj/structure/table/woodentable,/obj/item/weapon/deck/cards,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/library_conference_room) "aFr" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/wood,/area/library_conference_room) -"aFs" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library_conference_room) -"aFt" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/wood,/area/library_conference_room) -"aFu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFv" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFy" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFz" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/simulated/floor/wood,/area/library_conference_room) -"aFA" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/wood,/area/library_conference_room) -"aFB" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Meeting Room"; dir = 1},/turf/simulated/floor/wood,/area/library_conference_room) -"aFC" = (/obj/machinery/photocopier,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/wood,/area/library_conference_room) -"aFD" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFE" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFF" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/library_conference_room) -"aFG" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFH" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"aFK" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFL" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFM" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFN" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "interior access button"; pixel_x = -28; pixel_y = -26; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFO" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFP" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFQ" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFR" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFS" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFT" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"; req_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFU" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"; tag = "icon-manifold-f (WEST)"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFV" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"; tag = "icon-intact-f (SOUTHWEST)"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "trade_shuttle_dock_airlock"; pixel_x = 28; pixel_y = 0; req_one_access = list(13); tag_airpump = "trade_shuttle_dock_pump"; tag_chamber_sensor = "trade_shuttle_dock_sensor"; tag_exterior_door = "trade_shuttle_dock_outer"; tag_interior_door = "trade_shuttle_dock_inner"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"aFX" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFY" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "trade_shuttle_dock_sensor"; pixel_x = 30; pixel_y = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"aGa" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"; req_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aGb" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "exterior access button"; pixel_x = 28; pixel_y = -6; req_access = list(13)},/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"; req_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aGc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"aGd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"aGe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"aGf" = (/turf/space,/area/shuttle/trade/station) -"aGg" = (/turf/simulated/wall/r_wall,/area/engineering/storage) -"aGh" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/engineering/storage) -"aGi" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor,/area/engineering/storage) -"aGj" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Starboard"; dir = 2},/turf/simulated/floor,/area/engineering/storage) -"aGk" = (/turf/simulated/floor,/area/engineering/storage) -"aGl" = (/obj/structure/dispenser{oxygentanks = 0},/turf/simulated/floor,/area/engineering/storage) -"aGm" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage) -"aGn" = (/turf/simulated/wall/r_wall,/area/security/prison) -"aGo" = (/turf/simulated/wall/r_wall,/area/security/brig/visitation) -"aGp" = (/obj/machinery/shieldgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aGq" = (/obj/machinery/shieldgen,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aGr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/storage) -"aGs" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/security/prison) -"aGt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/prison) -"aGu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/prison) -"aGv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/prison) -"aGw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/security/prison) -"aGx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/prison) -"aGy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/security/prison) -"aGz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/security/prison) -"aGA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/security/prison) -"aGB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/brig/visitation) -"aGC" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aGD" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aGE" = (/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aGF" = (/turf/simulated/wall,/area/maintenance/station/_07) -"aGG" = (/obj/machinery/shieldgen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/engineering/storage) -"aGH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/engineering/storage) -"aGI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/engineering/storage) -"aGJ" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) -"aGK" = (/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aGL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/security/prison) -"aGM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) -"aGN" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) -"aGO" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) -"aGP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/prison) -"aGQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) -"aGR" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) -"aGS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) -"aGT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/prison) -"aGU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aGV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aGW" = (/obj/machinery/door/airlock,/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/wall,/area/security/brig/visitation) -"aGX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aGY" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aGZ" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aHa" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor,/area/maintenance/station/_07) -"aHb" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aHc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/storage) -"aHd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/engineering/storage) -"aHe" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) -"aHf" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) -"aHg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison) -"aHh" = (/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (WEST)"; icon_state = "steel_decals9"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/security/prison) -"aHi" = (/turf/simulated/wall/r_wall,/area/security/brig) -"aHj" = (/obj/machinery/door/window/brigdoor/northleft,/obj/machinery/door/window/brigdoor/southright,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/brig) -"aHk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/security/brig) -"aHl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/security/brig) -"aHm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig) -"aHn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/brig) -"aHo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig/visitation) -"aHp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/brig/visitation) -"aHq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/brig/visitation) -"aHr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/_07) -"aHs" = (/turf/simulated/wall,/area/chapel/chapel_morgue) -"aHt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/storage) -"aHu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/storage) -"aHv" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aHw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (SOUTHEAST)"; icon_state = "steel_decals3"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison) -"aHx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aHy" = (/obj/item/weapon/pen/crayon/blue,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aHz" = (/obj/structure/bed,/obj/item/weapon/paper,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aHA" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aHB" = (/obj/structure/bed,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aHC" = (/obj/machinery/computer/arcade/orion_trail,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aHD" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aHE" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aHF" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aHG" = (/obj/structure/table/steel,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aHH" = (/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aHI" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aHJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aHK" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aHL" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aHM" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aHN" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aHO" = (/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aHP" = (/obj/machinery/shield_gen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aHQ" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aHR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/engineering/storage) -"aHS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/storage) -"aHT" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor,/area/engineering/storage) -"aHU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/security/prison) -"aHV" = (/obj/machinery/cryopod{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aHW" = (/obj/structure/closet/secure_closet/brig,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/security/brig) -"aHX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aHY" = (/obj/structure/closet/secure_closet/brig,/obj/effect/floor_decal/industrial/outline,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aHZ" = (/obj/item/weapon/stool/padded,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIa" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aId" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIe" = (/obj/machinery/door/airlock,/obj/structure/cable/green{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/wall,/area/security/brig/visitation) -"aIf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aIg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aIh" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/security/brig/visitation) -"aIi" = (/obj/structure/morgue,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aIj" = (/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aIk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aIl" = (/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aIm" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) -"aIn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/engineering/storage) -"aIo" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aIp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor,/area/engineering/storage) -"aIq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/prison) -"aIr" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/cryopod{pixel_x = 32},/turf/simulated/floor/tiled,/area/security/prison) -"aIs" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled,/area/security/brig) -"aIt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/brig) -"aIu" = (/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIw" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled,/area/security/brig) -"aIx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIy" = (/obj/machinery/vending/hydronutrients,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig) -"aIz" = (/turf/simulated/wall/r_wall,/area/security/brig/bathroom) -"aIA" = (/obj/machinery/button/remote/driver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = 32; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aIB" = (/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) -"aIC" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/plating,/area/engineering/storage) -"aID" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/storage) -"aIE" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/engineering/storage) -"aIF" = (/obj/structure/closet/crate/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/storage) -"aIG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison) -"aIH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/obj/machinery/door/window/brigdoor/westleft,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aII" = (/obj/machinery/door/blast/regular,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/brig) -"aIJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIL" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIN" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIO" = (/obj/machinery/vending/wallmed1{pixel_y = -32},/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIS" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/brig) -"aIT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aIU" = (/obj/machinery/seed_storage/garden,/obj/machinery/camera/network/prison{c_tag = "SEC - Common Brig Fore"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/brig) -"aIV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aIW" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aIX" = (/obj/structure/mirror{pixel_x = 30},/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aIY" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aIZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJa" = (/obj/machinery/door/window{dir = 8; name = "Mass Driver"; req_access = list(22)},/obj/machinery/mass_driver{dir = 4; id = "chapelgun"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/airlock_sensor{pixel_y = 25},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/chapel/chapel_morgue) -"aJb" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/chapel/chapel_morgue) -"aJc" = (/obj/machinery/door/blast/regular{id = "chapelgun"; name = "Chapel Launcher Door"},/turf/simulated/floor/plating,/area/chapel/chapel_morgue) -"aJd" = (/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/storage) -"aJe" = (/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/storage) -"aJf" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aJg" = (/obj/structure/window/reinforced,/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled,/area/security/prison) -"aJh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/security/brig) -"aJi" = (/obj/structure/table/steel,/obj/machinery/microwave,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aJj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aJk" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aJl" = (/obj/structure/table/steel,/obj/item/clothing/head/greenbandana,/obj/item/weapon/material/minihoe,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aJm" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aJn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aJo" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aJp" = (/turf/simulated/wall,/area/chapel/office) -"aJq" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJr" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJs" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJt" = (/obj/machinery/light{dir = 1},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJu" = (/obj/machinery/door/airlock,/obj/structure/cable/pink{tag = "icon-4-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/dark,/area/chapel/chapel_morgue) -"aJv" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJw" = (/obj/structure/extinguisher_cabinet{pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJx" = (/turf/simulated/floor/holofloor/tiled/dark,/area/engineering/storage) -"aJy" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/storage) -"aJz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/storage) -"aJA" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/engineering/storage) -"aJB" = (/turf/simulated/floor/tiled,/area/engineering/storage) -"aJC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTH)"; icon_state = "steel_decals3"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison) -"aJD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/security/prison) -"aJE" = (/obj/machinery/cryopod{dir = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/brig) -"aJF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aJG" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aJH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aJI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aJJ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aJK" = (/obj/machinery/door/airlock{name = "Brig Restroom"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aJL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aJM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aJN" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aJO" = (/obj/structure/flora/pottedplant{icon_state = "plant-06"; pixel_y = 8; tag = "icon-plant-06"},/obj/structure/table/woodentable,/turf/simulated/floor/lino,/area/chapel/office) -"aJP" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "chapel"; name = "Chapel Office Shutters"; pixel_x = -24; pixel_y = 26},/turf/simulated/floor/lino,/area/chapel/office) -"aJQ" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/pink{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/lino,/area/chapel/office) -"aJR" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/lino,/area/chapel/office) -"aJS" = (/obj/machinery/photocopier,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/lino,/area/chapel/office) -"aJT" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJU" = (/turf/simulated/wall/r_wall,/area/ai_upload) -"aJV" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJX" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJY" = (/obj/structure/table/standard,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aJZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/chapel/chapel_morgue) -"aKa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/storage) -"aKb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/storage) -"aKc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison) -"aKd" = (/obj/item/weapon/pen/crayon,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aKe" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/brig) -"aKf" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aKg" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/obj/item/clothing/suit/storage/apron,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aKh" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aKi" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/clothing/head/soft/orange,/obj/item/clothing/shoes/sandal,/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aKj" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aKk" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/flame/lighter/zippo,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aKl" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) -"aKm" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aKn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aKo" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) -"aKp" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) -"aKq" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Chaplain"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) -"aKr" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/lino,/area/chapel/office) -"aKs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) -"aKt" = (/obj/structure/table/woodentable,/obj/item/weapon/nullrod,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) -"aKu" = (/turf/simulated/floor,/area/chapel/chapel_morgue) -"aKv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aKw" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aKx" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aKy" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aKz" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aKA" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aKB" = (/obj/structure/cable/pink,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aKC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aKD" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aKE" = (/turf/simulated/wall/r_wall,/area/engineering/engine_balcony) -"aKF" = (/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engine_balcony) -"aKG" = (/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/engine_balcony) -"aKH" = (/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (NORTH)"; icon_state = "steel_decals9"; dir = 1},/turf/simulated/floor/tiled,/area/security/prison) -"aKI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/brig) -"aKJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig) -"aKK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/brig) -"aKL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig) -"aKM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig) -"aKN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/brig) -"aKO" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/machinery/camera/network/civilian{c_tag = "CIV - Chapel Office"; dir = 4},/turf/simulated/floor/lino,/area/chapel/office) -"aKP" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/lino,/area/chapel/office) -"aKQ" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/crayons,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/chapel/office) -"aKR" = (/turf/simulated/floor/lino,/area/chapel/office) -"aKS" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/machinery/light{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) -"aKT" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aKU" = (/obj/machinery/computer/aiupload,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aKV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aKW" = (/obj/structure/ladder/up,/obj/structure/cable/cyan{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aKX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aKY" = (/obj/machinery/computer/borgupload,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aKZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aLa" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aLb" = (/obj/structure/catwalk,/turf/simulated/open,/area/engineering/engine_balcony) -"aLc" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/open,/area/engineering/engine_balcony) -"aLd" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/open,/area/engineering/engine_balcony) -"aLe" = (/obj/structure/catwalk,/obj/machinery/light{dir = 1},/obj/structure/cable/green{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/open,/area/engineering/engine_balcony) -"aLf" = (/obj/structure/catwalk,/obj/structure/cable/green{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/open,/area/engineering/engine_balcony) -"aLg" = (/obj/structure/catwalk,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/cable/green{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/open,/area/engineering/engine_balcony) -"aLh" = (/obj/structure/catwalk,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/open,/area/engineering/engine_balcony) -"aLi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/security/prison) -"aLj" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aLk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aLl" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison) -"aLm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/security/prison) -"aLn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aLo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aLp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/prison) -"aLq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison) -"aLr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aLs" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{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,/area/security/evidence_storage) -"aLt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aLu" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aLv" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aLw" = (/turf/simulated/wall/r_wall,/area/security/evidence_storage) -"aLx" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/lino,/area/chapel/office) -"aLy" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/chapel/office) -"aLz" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/lino,/area/chapel/office) -"aLA" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) -"aLB" = (/obj/machinery/door/airlock/gold,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aLC" = (/turf/simulated/wall,/area/chapel/main) -"aLD" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 4},/obj/machinery/camera/motion/security{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aLE" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aLF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aLG" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aLH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aLI" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aLJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aLK" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/engineering/engine_balcony) -"aLL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/security/prison) -"aLM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/security/prison) -"aLN" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/prison) -"aLO" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/prison) -"aLP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/prison) -"aLQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/prison) -"aLR" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/prison) -"aLS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) -"aLT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/prison) -"aLU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/prison) -"aLV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled,/area/security/prison) -"aLW" = (/obj/structure/closet{name = "Evidence Closet"},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aLX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aLY" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aLZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/chapel/office) -"aMa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/gold,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/chapel/office) -"aMb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/chapel/office) -"aMc" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aMd" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth"},/turf/simulated/floor,/area/chapel/main) -"aMe" = (/obj/item/device/radio/intercom{broadcasting = 1; dir = 4; frequency = 1480; name = "Confessional Intercom"; pixel_x = 27; pixel_y = 0},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/bed/chair,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aMf" = (/turf/simulated/floor/bluegrid,/area/ai_upload) -"aMg" = (/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aMh" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aMi" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/engine_balcony) -"aMj" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/engine_balcony) -"aMk" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/engine_balcony) -"aMl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/prison) -"aMm" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/prison) -"aMn" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aMo" = (/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aMp" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aMq" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aMr" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (EAST)"; icon_state = "chapel"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aMs" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"aMt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Chapel"; sortType = "Chapel"},/turf/simulated/floor/carpet,/area/chapel/main) -"aMu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/chapel/main) -"aMv" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aMw" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (EAST)"; icon_state = "chapel"; dir = 4},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aMx" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/plating,/area/chapel/main) -"aMy" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aMz" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aMA" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aMB" = (/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/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aMC" = (/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aMD" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aME" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/engine_balcony) -"aMF" = (/turf/simulated/open,/area/engineering/engine_balcony) -"aMG" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/engine_balcony) -"aMH" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/open,/area/engineering/engine_balcony) -"aMI" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/boots/combat,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/station/_03) -"aMJ" = (/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aMK" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aML" = (/turf/simulated/wall/r_wall,/area/security/security_processing) -"aMM" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/security/security_processing) -"aMN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) -"aMO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) -"aMP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/security_processing) -"aMQ" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/security/security_processing) -"aMR" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aMS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aMT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/lattice,/obj/structure/cable/pink{icon_state = "32-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/open,/area/maintenance/station/_07) -"aMU" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/chapel/main) -"aMV" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aMW" = (/obj/effect/floor_decal/chapel,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aMX" = (/obj/structure/table/woodentable,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/chapel/main) -"aMY" = (/obj/structure/table/woodentable,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/chapel/main) -"aMZ" = (/obj/structure/table/woodentable,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) -"aNa" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNb" = (/obj/effect/floor_decal/chapel,/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNc" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth (Chaplain)"; req_access = list(22)},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNd" = (/obj/item/device/radio/intercom{broadcasting = 1; dir = 4; frequency = 1480; name = "Confessional Intercom"; pixel_x = 27; pixel_y = 0},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNe" = (/obj/machinery/door/airlock/highsecurity,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aNf" = (/obj/structure/catwalk,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/open,/area/engineering/engine_balcony) -"aNg" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/chief) -"aNh" = (/obj/machinery/light{dir = 8},/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/security/security_processing) -"aNi" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled,/area/security/security_processing) -"aNj" = (/turf/simulated/floor/tiled,/area/security/security_processing) -"aNk" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) -"aNl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) -"aNm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_07) -"aNn" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"aNr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNt" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNu" = (/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aNv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (NORTH)"; icon_state = "techfloor_hole_left"; dir = 1},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aNw" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/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/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aNx" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (NORTH)"; icon_state = "techfloor_hole_right"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aNy" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 32; pixel_y = 0},/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aNz" = (/turf/simulated/wall/r_wall,/area/mine/explored/upper_level) -"aNA" = (/obj/machinery/button/remote/driver{id = "enginecore"; name = "Emergency Core Eject"; pixel_x = 0; pixel_y = 21},/obj/structure/window/basic,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/chief) -"aNB" = (/obj/structure/closet/secure_closet/engineering_chief,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aNC" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 27},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aND" = (/obj/machinery/computer/station_alert/all,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aNE" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aNF" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aNG" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"aNH" = (/obj/machinery/computer/secure_data{tag = "icon-computer (EAST)"; icon_state = "computer"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/security/security_processing) -"aNI" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) -"aNJ" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/evidence_storage) -"aNK" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/obj/item/weapon/stool/padded,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNL" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (EAST)"; icon_state = "chapel"; dir = 4},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNN" = (/turf/simulated/floor/carpet,/area/chapel/main) -"aNO" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNP" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aNQ" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/oxygen,/obj/item/weapon/aiModule/oneHuman,/obj/item/weapon/aiModule/purge,/obj/item/weapon/aiModule/antimov,/obj/item/weapon/aiModule/teleporterOffline,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aNR" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aNS" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aNT" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aNU" = (/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 = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aNV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aNW" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_upload) -"aNX" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/reset,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aNY" = (/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the engine core airlock hatch bolts."; id = "engine_access_hatch"; name = "Engine Hatch Bolt Control"; pixel_x = -6; pixel_y = 32; req_access = newlist(); specialfunctions = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for engine core."; id = "EngineVent"; name = "Engine Ventillatory Control"; pixel_x = 6; pixel_y = 32; req_access = newlist()},/obj/structure/table/reinforced,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aNZ" = (/obj/machinery/computer/security/telescreen{desc = "Used to monitor the engine room."; layer = 3.3; name = "Engine Monitor"; network = list("Engine"); pixel_x = 0; pixel_y = 28},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aOa" = (/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aOb" = (/obj/structure/table/reinforced,/obj/item/weapon/stamp/ce,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/flame/lighter/zippo,/obj/item/device/megaphone,/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aOc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aOd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aOe" = (/obj/machinery/telecomms/relay/preset/tether/station_low,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHWEST)"; icon_state = "techfloororange_edges"; dir = 9},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/westleft,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"aOf" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/security/security_processing) -"aOi" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOm" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/evidence,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_07) -"aOo" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/obj/structure/cable/pink,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aOp" = (/obj/effect/floor_decal/chapel,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aOq" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aOr" = (/obj/effect/floor_decal/chapel,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aOs" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aOt" = (/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aOu" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/door/airlock/highsecurity,/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/techfloor,/area/ai_upload) -"aOv" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aOw" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aOx" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aOy" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aOz" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aOA" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/nanotrasen,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aOB" = (/obj/structure/catwalk,/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) -"aOC" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) -"aOD" = (/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) -"aOE" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aOF" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/breath,/obj/item/weapon/rig/ce/equipped,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aOG" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "ceoffice"; name = "Chief Engineer Privacy Shutters"; pixel_x = 26; pixel_y = 18; req_access = list(56)},/obj/effect/landmark/start{name = "Chief Engineer"},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aOH" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = -12; req_access = list(10)},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aOI" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aOJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aOK" = (/obj/machinery/telecomms/relay/preset/tether/base_mid,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/obj/machinery/door/window/brigdoor/westleft,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"aOL" = (/obj/structure/table/steel,/obj/item/device/taperecorder,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOM" = (/obj/structure/table/steel,/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/red{pixel_x = 2; pixel_y = 4},/obj/item/weapon/folder/red,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_processing) -"aON" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOO" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOQ" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOR" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_processing) -"aOT" = (/obj/structure/table/steel,/obj/item/device/camera,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/security/security_processing) -"aOU" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aOV" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aOW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aOX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"aOY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aOZ" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aPa" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aPb" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/asimov,/obj/item/weapon/aiModule/freeformcore,/obj/item/weapon/aiModule/corp,/obj/item/weapon/aiModule/paladin,/obj/item/weapon/aiModule/robocop,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aPc" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aPd" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aPe" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aPf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aPg" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aPh" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aPi" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/freeform,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/bluegrid,/area/ai_upload) -"aPj" = (/obj/structure/catwalk,/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) -"aPk" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 6; name = "Chief Engineer RC"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aPl" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aPm" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/book/manual/supermatter_engine,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aPn" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aPo" = (/obj/machinery/telecomms/relay/preset/tether/base_high,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHWEST)"; icon_state = "techfloororange_edges"; dir = 10},/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/westleft,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"aPp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/security_processing) -"aPq" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/security_processing) -"aPr" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aPs" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (EAST)"; icon_state = "chapel"; dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aPt" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aPu" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aPv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/floor_decal/techfloor/hole,/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) -"aPw" = (/obj/structure/catwalk,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) -"aPx" = (/obj/structure/catwalk,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/engineering/engine_balcony) -"aPy" = (/obj/machinery/disposal,/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aPz" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aPA" = (/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aPB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aPC" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aPD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aPE" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aPF" = (/obj/structure/flora/pottedplant{icon_state = "plant-20"; tag = "icon-plant-22"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"aPG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aPH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aPI" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aPJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_07) -"aPK" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/plating,/area/maintenance/station/_07) -"aPL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_07) -"aPM" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_07) -"aPN" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aPO" = (/obj/effect/floor_decal/chapel,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aPP" = (/turf/simulated/wall/r_wall,/area/ai_server_room) -"aPQ" = (/turf/simulated/wall/r_wall,/area/ai_upload_foyer) -"aPR" = (/obj/machinery/door/airlock/highsecurity,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) -"aPS" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/ai_upload_foyer) -"aPT" = (/turf/simulated/wall/r_wall,/area/ai_cyborg_station) -"aPU" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aPV" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) -"aPW" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) -"aPX" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/crew_quarters/heads/chief) -"aPY" = (/obj/machinery/door/airlock/glass_engineering,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aPZ" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) -"aQa" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) -"aQb" = (/turf/simulated/wall,/area/maintenance/station/_03) -"aQc" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aQd" = (/turf/simulated/wall/r_wall,/area/maintenance/station/_03) -"aQe" = (/turf/simulated/wall/r_wall,/area/maintenance/station/_07) -"aQf" = (/obj/structure/sign/department/chapel,/turf/simulated/wall,/area/chapel/main) -"aQg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/chapel/main) -"aQh" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aQi" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aQj" = (/obj/machinery/message_server,/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) -"aQk" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) -"aQl" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) -"aQm" = (/obj/machinery/turretid/stun{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_x = 0; pixel_y = 30},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) -"aQn" = (/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/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) -"aQo" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) -"aQp" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) -"aQq" = (/obj/structure/table/standard,/obj/item/weapon/phone,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) -"aQr" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) -"aQs" = (/obj/structure/catwalk,/obj/structure/cable/green{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/open,/area/engineering/engine_balcony) -"aQt" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/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/plating,/area/engineering/engine_balcony) -"aQu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aQv" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aQw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aQx" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aQy" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aQz" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{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/open,/area/engineering/foyer_mezzenine) -"aQA" = (/obj/structure/catwalk,/obj/structure/cable/green{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/open,/area/engineering/foyer_mezzenine) -"aQB" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aQC" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aQD" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aQE" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aQF" = (/turf/simulated/wall,/area/engineering/foyer_mezzenine) -"aQG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aQH" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aQI" = (/obj/structure/railing{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aQJ" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/zpipe/down,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/lattice,/obj/structure/cable{tag = "icon-32-2"; icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_03) -"aQK" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/station/_02) -"aQL" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aQM" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aQN" = (/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aQO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aQP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aQQ" = (/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aQR" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) -"aQS" = (/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) -"aQT" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) -"aQU" = (/obj/machinery/door/airlock/highsecurity,/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/techfloor,/area/ai_server_room) -"aQV" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) -"aQW" = (/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/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) -"aQX" = (/obj/machinery/door/airlock/highsecurity,/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/techfloor,/area/ai_cyborg_station) -"aQY" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) -"aQZ" = (/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) -"aRa" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) -"aRb" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/open,/area/engineering/engine_balcony) -"aRc" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring) -"aRd" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRe" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRf" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRg" = (/obj/structure/catwalk,/obj/structure/disposalpipe/sortjunction{dir = 8; name = "CE Office"; sortType = "CE Office"},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRh" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aRj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aRk" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aRl" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/cable{tag = "icon-1-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/plating,/area/maintenance/station/_03) -"aRm" = (/turf/simulated/floor/holofloor/tiled/dark,/area/hallway/station/_02) -"aRn" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aRo" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) -"aRp" = (/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) -"aRq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) -"aRr" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) -"aRs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) -"aRt" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) -"aRu" = (/obj/structure/closet/crate{name = "Camera Assembly Crate"},/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) -"aRv" = (/obj/machinery/recharge_station,/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) -"aRw" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) -"aRx" = (/obj/machinery/computer/atmoscontrol{dir = 4},/obj/effect/floor_decal/corner/yellow/full{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRy" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRz" = (/obj/structure/table/reinforced,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/machinery/alarm{pixel_y = 25},/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = -12; req_access = newlist(); req_one_access = list(10,24)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = -12; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRA" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRB" = (/obj/machinery/computer/power_monitor{dir = 8},/obj/effect/floor_decal/corner/yellow/full{tag = "icon-corner_white_full (WEST)"; icon_state = "corner_white_full"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRC" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) -"aRD" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRE" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRF" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRG" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRH" = (/obj/structure/catwalk,/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRI" = (/obj/structure/catwalk,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/disposalpipe/segment,/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRJ" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down{tag = "icon-pipe-d (NORTH)"; icon_state = "pipe-d"; dir = 1},/turf/simulated/open,/area/maintenance/station/_03) -"aRK" = (/obj/structure/railing{tag = "icon-railing0 (WEST)"; icon_state = "railing0"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aRL" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aRM" = (/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up{dir = 1},/obj/structure/cable{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable,/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aRN" = (/obj/machinery/door/airlock/highsecurity,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/ai_upload_foyer) -"aRO" = (/obj/structure/sign/department/ai,/turf/simulated/wall/r_wall,/area/ai_upload_foyer) -"aRP" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/open,/area/engineering/engine_balcony) -"aRQ" = (/obj/machinery/computer/atmos_alert{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRS" = (/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRU" = (/obj/machinery/computer/station_alert{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aRV" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) -"aRW" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRX" = (/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRY" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aRZ" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aSa" = (/obj/structure/railing{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aSb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aSc" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aSd" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSe" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSh" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSl" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSm" = (/turf/simulated/wall,/area/hallway/station/_02) -"aSn" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/open,/area/engineering/engine_balcony) -"aSo" = (/obj/machinery/computer/security/engineering{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSp" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSq" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSr" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSs" = (/obj/machinery/computer/rcon{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSt" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aSu" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/engineering/foyer_mezzenine) -"aSv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aSw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aSx" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/up{tag = "icon-pipe-u (WEST)"; icon_state = "pipe-u"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aSy" = (/obj/structure/sign/deck2,/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/station/_02) -"aSz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSE" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/engine_balcony) -"aSF" = (/obj/structure/railing,/turf/simulated/open,/area/engineering/engine_balcony) -"aSG" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/engine_balcony) -"aSH" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Engine Waste")},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSK" = (/obj/machinery/computer/security/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSL" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aSM" = (/obj/structure/railing,/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aSN" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aSO" = (/turf/simulated/floor/holofloor/tiled/dark,/area/engineering/foyer_mezzenine) -"aSP" = (/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aSQ" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aSR" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aSS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aST" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSU" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aSV" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1441; name = "Tank Monitor"; sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank")},/obj/effect/floor_decal/corner/yellow/full{tag = "icon-corner_white_full (EAST)"; icon_state = "corner_white_full"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSW" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSY" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aTa" = (/obj/machinery/door/airlock/glass_engineering,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{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},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aTb" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aTc" = (/obj/structure/catwalk,/obj/structure/disposalpipe/junction,/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aTd" = (/obj/structure/catwalk,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aTe" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up,/turf/simulated/floor/plating,/area/maintenance/station/_03) -"aTf" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/station/_01) -"aTg" = (/turf/simulated/wall/r_wall,/area/hallway/station/_01) -"aTh" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aTi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aTj" = (/obj/structure/catwalk,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/open,/area/engineering/engine_balcony) -"aTk" = (/obj/structure/catwalk,/obj/machinery/light,/turf/simulated/open,/area/engineering/engine_balcony) -"aTl" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/open,/area/engineering/engine_balcony) -"aTm" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/open,/area/engineering/engine_balcony) -"aTn" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/open,/area/engineering/engine_balcony) -"aTo" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aTp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aTq" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aTr" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aTs" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aTt" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aTu" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring) -"aTv" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aTw" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aTx" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) -"aTy" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down{dir = 1},/turf/simulated/open,/area/maintenance/station/_03) -"aTz" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{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,/area/hallway/station/_01) -"aTA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aTB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aTC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aTD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aTE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aTF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/glass,/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,/area/hallway/station/_01) -"aTG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aTH" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aTI" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aTJ" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/_02) -"aTK" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) -"aTL" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) -"aTM" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) -"aTN" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/foyer_mezzenine) -"aTO" = (/obj/machinery/door/airlock/glass_engineering,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/foyer_mezzenine) -"aTP" = (/obj/machinery/door/airlock/glass_engineering,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer_mezzenine) -"aTQ" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aTR" = (/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aTS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aTT" = (/turf/simulated/wall/r_wall,/area/medical/virology) -"aTU" = (/turf/simulated/wall/r_wall,/area/medical/virologyisolation) -"aTV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) -"aTW" = (/turf/simulated/wall,/area/maintenance/station/_10) -"aTX" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/station/_01) -"aTY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aTZ" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUa" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUc" = (/obj/machinery/light{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUe" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUg" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUh" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUi" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUl" = (/obj/structure/bed/padded,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUm" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/virology) -"aUo" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/extinguisher,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUp" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUq" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUr" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = 29},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUs" = (/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUt" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUu" = (/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUv" = (/obj/machinery/smartfridge/secure/virology,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUw" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/green,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aUx" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aUy" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aUz" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aUA" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aUB" = (/obj/structure/closet/secure_closet/personal/patient,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aUC" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) -"aUD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUS" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aUW" = (/obj/structure/table/standard,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUX" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUY" = (/obj/machinery/door/window/westright{name = "Virology Isolation Room Two"; req_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aUZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVb" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVe" = (/obj/structure/table/glass,/obj/item/device/antibody_scanner{pixel_x = 2; pixel_y = 2},/obj/item/device/antibody_scanner,/obj/structure/reagent_dispensers/virusfood{pixel_x = 30},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVf" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/green,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVh" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVi" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVk" = (/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVl" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) -"aVm" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVn" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVo" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVp" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVs" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVt" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVv" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVA" = (/obj/machinery/light,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVC" = (/obj/structure/flora/pottedplant{tag = "icon-plant-01"; icon_state = "plant-01"},/turf/simulated/floor/tiled,/area/hallway/station/_01) -"aVD" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVE" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVF" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVG" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVH" = (/obj/machinery/disease2/diseaseanalyser,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aVI" = (/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVK" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVL" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/cups,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aVM" = (/turf/simulated/floor,/area/maintenance/station/_10) -"aVN" = (/turf/simulated/wall,/area/hallway/station/_01) -"aVO" = (/turf/simulated/wall,/area/storage/tech) -"aVP" = (/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access = list(23)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) -"aVQ" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/tech) -"aVR" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/station/_01) -"aVS" = (/turf/simulated/wall,/area/tether/station/stairs_three) -"aVT" = (/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 8},/obj/structure/sign/directions/elevator{dir = 4},/turf/simulated/wall,/area/tether/station/stairs_three) -"aVU" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aVV" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aVW" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aVX" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) -"aVY" = (/turf/simulated/wall,/area/maintenance/substation/medical) -"aVZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/turf/simulated/floor/plating,/area/medical/virology) -"aWa" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWc" = (/obj/machinery/disposal,/obj/effect/floor_decal/industrial/warning/full,/obj/structure/sign/deathsposal{pixel_x = 32; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWd" = (/obj/machinery/computer/diseasesplicer{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWe" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWf" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWg" = (/obj/machinery/door/airlock/glass_medical{name = "Virology Laboratory"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aWi" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aWj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aWk" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Quarantine Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aWl" = (/obj/machinery/vending/assist,/turf/simulated/floor,/area/storage/tech) -"aWm" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/storage/tech) -"aWn" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Starboard"; dir = 2},/turf/simulated/floor,/area/storage/tech) -"aWo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) -"aWp" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/storage/tech) -"aWq" = (/obj/structure/table/steel,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/storage/tech) -"aWr" = (/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/storage/tech) -"aWs" = (/turf/space/cracked_asteroid,/area/mine/explored/upper_level) -"aWt" = (/obj/machinery/light/small{dir = 1},/turf/simulated/open,/area/tether/station/stairs_three) -"aWu" = (/turf/simulated/open,/area/tether/station/stairs_three) -"aWv" = (/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aWw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aWx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aWy" = (/turf/simulated/wall,/area/maintenance/station/_09) -"aWz" = (/turf/simulated/floor/plating,/area/maintenance/station/_09) -"aWA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) -"aWB" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/substation/medical) -"aWC" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/substation/medical) -"aWD" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Medical Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/medical) -"aWE" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWF" = (/obj/machinery/disease2/isolator,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWG" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/centrifuge,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWH" = (/obj/machinery/disease2/incubator,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aWI" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aWJ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aWK" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aWL" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aWM" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating,/area/storage/tech) -"aWN" = (/turf/simulated/floor,/area/storage/tech) -"aWO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) -"aWP" = (/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/storage/tech) -"aWQ" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/storage/tech) -"aWR" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/storage/tech) -"aWS" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"aWT" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aWU" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aWV" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/plating,/area/maintenance/station/_09) -"aWW" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) -"aWX" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/substation/medical) -"aWY" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Medical"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/substation/medical) -"aWZ" = (/obj/machinery/door/window/westright{name = "Virology Isolation Room One"; req_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXb" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXc" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXd" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXe" = (/obj/structure/table/glass,/obj/item/weapon/storage/lockbox/vials,/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/syringe/antiviral,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXf" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/green,/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXk" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXl" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/unary_atmos/heater,/obj/item/weapon/circuitboard/unary_atmos/cooler{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) -"aXm" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/arcade/orion_trail{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/jukebox{pixel_x = 0; pixel_y = 0},/obj/item/weapon/circuitboard/message_monitor{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/arcade/battle{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/plating,/area/storage/tech) -"aXn" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) -"aXo" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/powermonitor{pixel_x = 0; pixel_y = 3},/obj/item/weapon/circuitboard/stationalert_engineering{pixel_x = 2; pixel_y = 1},/obj/item/weapon/circuitboard/security/engineering{pixel_x = 5; pixel_y = -1},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = 6; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) -"aXp" = (/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/storage/tech) -"aXq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/storage/tech) -"aXr" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled/dark,/area/storage/tech) -"aXs" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/robotics{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/mecha_control{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/tiled/dark,/area/storage/tech) -"aXt" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"aXu" = (/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aXv" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aXw" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/station/_09) -"aXx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) -"aXy" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/substation/medical) -"aXz" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/plating,/area/maintenance/substation/medical) -"aXA" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Medbay Subgrid"; name_tag = "Medbay Subgrid"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/substation/medical) -"aXB" = (/obj/item/roller,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXD" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXE" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/vials,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aXF" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/green,/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXG" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXI" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aXJ" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor,/area/storage/tech) -"aXK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/storage/tech) -"aXL" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/security/mining{pixel_x = 1; pixel_y = 3},/obj/item/weapon/circuitboard/autolathe,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/circuitboard/scan_consolenew{pixel_x = 6; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) -"aXM" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) -"aXN" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/secure_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/security{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/skills{pixel_x = 4; pixel_y = -3},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/tech) -"aXO" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access = list(19,23)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/storage/tech) -"aXP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/storage/tech) -"aXQ" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/card{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/communications{pixel_x = 5; pixel_y = -5},/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/storage/tech) -"aXR" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/grille,/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating,/area/storage/tech) -"aXS" = (/obj/structure/sign/deck2,/turf/simulated/wall,/area/tether/station/stairs_three) -"aXT" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aXU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aXV" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aXW" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/station/_09) -"aXX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) -"aXY" = (/turf/simulated/wall/r_wall,/area/medical/chemistry) -"aXZ" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/hand_labeler,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aYa" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 8},/obj/item/device/radio{anchored = 1; broadcasting = 0; canhear_range = 7; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; listening = 1; name = "Virology Emergency Phone"; pixel_x = -6; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aYb" = (/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aYc" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aYd" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/medical/virology) -"aYe" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aYf" = (/obj/item/weapon/storage/box/syringes{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/beakers,/obj/item/weapon/reagent_containers/dropper,/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aYg" = (/turf/simulated/wall/r_wall,/area/medical/virologyaccess) -"aYh" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/wall/r_wall,/area/medical/virologyaccess) -"aYi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aYj" = (/obj/machinery/disposal,/obj/effect/floor_decal/industrial/warning/full,/obj/structure/sign/deathsposal{pixel_x = 32; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) -"aYk" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) -"aYl" = (/obj/machinery/requests_console{department = "Tech storage"; pixel_x = -28; pixel_y = 0},/turf/simulated/floor,/area/storage/tech) -"aYm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/storage/tech) -"aYn" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/weapon/circuitboard/transhuman_synthprinter{pixel_x = -3; pixel_y = 4},/obj/item/weapon/circuitboard/rdconsole{pixel_x = 0; pixel_y = 2},/obj/item/weapon/circuitboard/destructive_analyzer,/obj/item/weapon/circuitboard/protolathe{pixel_x = 3; pixel_y = -2},/obj/item/weapon/circuitboard/rdserver{pixel_x = 6; pixel_y = -4},/turf/simulated/floor/plating,/area/storage/tech) -"aYo" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) -"aYp" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/weapon/circuitboard/transhuman_clonepod{pixel_x = -2; pixel_y = 3},/obj/item/weapon/circuitboard/resleeving_control{pixel_x = 0; pixel_y = 1},/obj/item/weapon/circuitboard/body_designer{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/med_data{pixel_x = 5; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) -"aYq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/storage/tech) -"aYr" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5; pixel_y = 0},/obj/item/device/integrated_electronics/wirer{pixel_x = 5; pixel_y = 0},/turf/simulated/floor/plating,/area/storage/tech) -"aYs" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/storage/tech) -"aYt" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/storage/tech) -"aYu" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/borgupload{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/transhuman_resleever{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/tiled/dark,/area/storage/tech) -"aYv" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYw" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYx" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open"; icon_state = "door_open"; dir = 2},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYy" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYC" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYD" = (/obj/machinery/chemical_dispenser/full,/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aYE" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aYF" = (/obj/structure/table/reinforced,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aYG" = (/obj/machinery/chemical_dispenser/full,/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aYH" = (/obj/machinery/door/airlock/glass_medical{name = "Virology Laboratory"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) -"aYI" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aYJ" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/tvalve/bypass,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plating,/area/medical/virologyaccess) -"aYK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/virologyaccess) -"aYL" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virologyq_airlock_exterior"; locked = 1; name = "Virology Quarantine Airlock"; req_access = list(39)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "virologyq_airlock_control"; name = "Virology Quarantine Access Button"; pixel_x = 24; pixel_y = 0; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aYM" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/catwalk,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_10) -"aYN" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_10) -"aYO" = (/obj/structure/catwalk,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/_10) -"aYP" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/storage/tech) -"aYQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/storage/tech) -"aYR" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/storage/tech) -"aYS" = (/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/turf/simulated/floor/plating,/area/storage/tech) -"aYT" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/tech) -"aYU" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/tech) -"aYV" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"aYW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYX" = (/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open (NORTH)"; icon_state = "door_open"; dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aYZ" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) -"aZa" = (/turf/simulated/wall,/area/medical/medbay_primary_storage) -"aZb" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/medical/medbay_primary_storage) -"aZc" = (/obj/structure/sign/department/chem,/turf/simulated/wall/r_wall,/area/medical/chemistry) -"aZd" = (/obj/machinery/chem_master,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZe" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZf" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZg" = (/obj/machinery/chem_master,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZh" = (/obj/structure/closet/l3closet/virology,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZj" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZl" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZm" = (/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZn" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZo" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZq" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "virologyq_airlock_control"; name = "Virology Quarantine Access Console"; pixel_x = 22; pixel_y = 0; tag_exterior_door = "virologyq_airlock_exterior"; tag_interior_door = "virologyq_airlock_interior"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZr" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "virologyq_airlock_control"; name = "Virology Quarantine Access Button"; pixel_x = -28; pixel_y = 0; req_access = list(39)},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZt" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/closet/l3closet/virology,/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Quarantine Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) -"aZv" = (/turf/simulated/wall/r_wall,/area/bridge/meeting_room) -"aZw" = (/obj/machinery/status_display{layer = 4; pixel_x = -32; pixel_y = 0},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/autolathe,/obj/item/weapon/circuitboard/partslathe,/obj/machinery/light/small,/turf/simulated/floor,/area/storage/tech) -"aZx" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/device/analyzer/plant_analyzer,/obj/item/device/healthanalyzer,/obj/item/device/analyzer,/obj/item/device/analyzer,/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/plating,/area/storage/tech) -"aZy" = (/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flash,/obj/item/device/flash,/obj/structure/table/steel,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/plating,/area/storage/tech) -"aZz" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/clothing/gloves/yellow,/obj/item/device/t_scanner,/obj/item/clothing/glasses/meson,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) -"aZA" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/ai_status_display{pixel_x = 32; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/tech) -"aZB" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"aZC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/standard,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"aZD" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"aZE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"aZF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"aZG" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZH" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZL" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"aZM" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZN" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZO" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZP" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "virologyquar"; name = "Virology Emergency Lockdown Control"; pixel_x = 0; pixel_y = -28; req_access = list(5)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZQ" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZU" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZV" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virologyq_airlock_interior"; locked = 1; name = "Virology Quarantine Airlock"; req_access = list(39)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZX" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZY" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"aZZ" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) -"baa" = (/obj/structure/table/wooden_reinforced,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bab" = (/obj/structure/table/wooden_reinforced,/obj/machinery/chemical_dispenser/bar_soft,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bac" = (/obj/structure/table/wooden_reinforced,/obj/machinery/photocopier/faxmachine,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bad" = (/obj/machinery/light{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bae" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"baf" = (/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bag" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bah" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/bridge/meeting_room) -"bai" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"baj" = (/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bak" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bal" = (/obj/structure/window/basic{tag = "icon-window (EAST)"; icon_state = "window"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bam" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"ban" = (/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bao" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bap" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"baq" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bar" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"bas" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/wall/r_wall,/area/medical/virologyaccess) -"bat" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/structure/closet/l3closet/virology,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"bau" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"bav" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/storage/box/cups,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"baw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bax" = (/obj/machinery/atmospherics/unary/freezer{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) -"bay" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"; tag = "icon-manifold-f (NORTH)"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"baz" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/weapon/storage/toolbox/emergency,/obj/item/bodybag/cryobag{pixel_x = -3},/obj/item/bodybag/cryobag{pixel_x = -3},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"baA" = (/obj/machinery/atmospherics/pipe/zpipe/up{tag = "icon-up (WEST)"; icon_state = "up"; dir = 8},/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"baB" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"baC" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"baD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"baE" = (/obj/structure/closet/secure_closet/chemical,/obj/item/weapon/storage/box/pillbottles,/obj/item/device/radio/headset/headset_med,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"baF" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/closet/wardrobe/virology_white,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 8; pixel_y = 28; req_access = list(39)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"baG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"baH" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -5; pixel_y = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/turf/simulated/floor/tiled/steel,/area/medical/virologyaccess) -"baI" = (/turf/simulated/wall/r_wall,/area/maintenance/station/_04) -"baJ" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/station/_04) -"baK" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/maintenance/station/_04) -"baL" = (/turf/simulated/floor,/area/maintenance/station/_04) -"baM" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/command,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/bridge/meeting_room) -"baN" = (/obj/structure/table/wooden_reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"baO" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"baP" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"baQ" = (/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"baR" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) -"baS" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"; tag = "icon-manifold-f (EAST)"},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"baT" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/adv{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/adv,/obj/effect/floor_decal/corner/red/full{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) -"baU" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 0; pixel_y = 0},/obj/effect/floor_decal/corner/green/full{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) -"baV" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"baW" = (/obj/structure/window/basic{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"baX" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/dropper,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/reinforced,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"baY" = (/obj/structure/closet/secure_closet/medical1,/obj/item/weapon/storage/box/pillbottles,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"baZ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/closet/l3closet/virology,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"bba" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"bbb" = (/obj/structure/table/steel,/obj/machinery/light_switch{pixel_x = 26; pixel_y = 0},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Airlock"; dir = 8},/obj/random/medical,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"bbc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/_04) -"bbd" = (/obj/structure/ladder/up,/turf/simulated/floor,/area/maintenance/station/_04) -"bbe" = (/turf/simulated/open,/area/bridge/meeting_room) -"bbf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/bridge/meeting_room) -"bbg" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/bridge/meeting_room) -"bbh" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/bridge/meeting_room) -"bbi" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge/meeting_room) -"bbj" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bbk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bbl" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start{name = "Command Secretary"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"bbm" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/book/manual/security_space_law,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"bbn" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/folder/red,/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"bbo" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"bbp" = (/obj/machinery/camera/network/command{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9; c_tag = "Gateway Access"},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bbq" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) -"bbr" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 0; pixel_y = 0},/obj/effect/floor_decal/corner/paleblue/full,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) -"bbs" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/fire{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = 0; pixel_y = 0},/obj/effect/floor_decal/corner/yellow/full{tag = "icon-corner_white_full (EAST)"; icon_state = "corner_white_full"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) -"bbt" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bbu" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/dropper,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bbv" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/item/weapon/screwdriver,/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bbw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bbx" = (/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/reinforced,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bby" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bbz" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bbA" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bbB" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/closet/l3closet/virology,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"bbC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"bbD" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) -"bbE" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/station/_04) -"bbF" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/turf/simulated/floor/tiled,/area/bridge/meeting_room) -"bbG" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/bridge/meeting_room) -"bbH" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/meeting_room) -"bbI" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/bridge/meeting_room) -"bbJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bbK" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"bbL" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"bbM" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/folder/blue,/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"bbN" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) -"bbO" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Quarantine Airlock"; dir = 8},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bbP" = (/obj/machinery/door/airlock/glass_medical,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry) -"bbQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/chemistry) -"bbR" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access = list(39)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; pixel_y = 0; req_access = list(39)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/medical/virologyaccess) -"bbS" = (/obj/structure/sign/department/virology,/turf/simulated/wall/r_wall,/area/medical/virologyaccess) -"bbT" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bbU" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bbV" = (/turf/simulated/wall,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bbW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/bridge/meeting_room) -"bbX" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) -"bbY" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/item/weapon/wrench,/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) -"bbZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/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/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bca" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/random/firstaid,/obj/random/firstaid,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bcb" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/syringes{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/syringes,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bcc" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks{pixel_y = 0},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bcd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bce" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/table/standard,/obj/random/medical,/obj/random/medical,/obj/item/device/flashlight,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bcf" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/item/weapon/gun/launcher/syringe,/obj/item/weapon/storage/box/syringegun,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) -"bcg" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bch" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bci" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Chemistry"; sortType = "Chemistry"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcj" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open"; icon_state = "door_open"; dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bck" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcl" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcm" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bco" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcp" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcq" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcr" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcs" = (/obj/machinery/door/airlock/maintenance/medical,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bct" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/bridge/meeting_room) -"bcu" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "32-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/open,/area/bridge/meeting_room) -"bcv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/bridge/meeting_room) -"bcw" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/bridge/meeting_room) -"bcx" = (/obj/structure/flora/pottedplant{icon_state = "plant-09"; name = "Steve"; pixel_y = 15; tag = "icon-plant-09"},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bcy" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bcz" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bcA" = (/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/wood,/area/bridge/meeting_room) -"bcB" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) -"bcC" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcD" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcE" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcF" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcG" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open (NORTH)"; icon_state = "door_open"; dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcH" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcI" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcJ" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (WEST)"; icon_state = "borderfloorcorner_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcK" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcL" = (/turf/simulated/wall,/area/bridge/meeting_room) -"bcM" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcN" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcO" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcP" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcQ" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcR" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (NORTH)"; icon_state = "borderfloorcorner_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcS" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcT" = (/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcU" = (/obj/structure/window/basic{dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcV" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcW" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcX" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcY" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bcZ" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bda" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdb" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdc" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdd" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bde" = (/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) -"bdf" = (/turf/simulated/wall,/area/medical/morgue) -"bdg" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/morgue) -"bdh" = (/obj/structure/sign/department/morgue,/turf/simulated/wall,/area/medical/morgue) -"bdi" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdj" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) -"bdm" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) -"bdn" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/weapon/paper_bin{pixel_y = -6},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = -9},/obj/item/weapon/pen/blue{pixel_x = 3; pixel_y = -5},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdo" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdq" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue) -"bdr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) -"bds" = (/obj/structure/morgue{tag = "icon-morgue1 (WEST)"; icon_state = "morgue1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdt" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdv" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) -"bdw" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 1; pressure_checks_default = 1; use_power = 1},/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) -"bdx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/steel,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdy" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdz" = (/turf/simulated/floor/tiled,/area/medical/morgue) -"bdA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue) -"bdB" = (/obj/structure/morgue{tag = "icon-morgue1 (WEST)"; icon_state = "morgue1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdC" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{frequency = 1380; id_tag = "large_escape_pod_1_berth"; pixel_x = -26; pixel_y = 0; tag_door = "large_escape_pod_1_berth_hatch"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdD" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdE" = (/obj/structure/filingcabinet/chestdrawer{desc = "A large drawer filled with autopsy reports."; name = "Autopsy Reports"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue) -"bdI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdJ" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "large_escape_pod_1_berth_hatch"; locked = 1; name = "Large Escape Pod 1"; req_access = list(13)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdM" = (/obj/machinery/optable,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdN" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdO" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station) -"bdP" = (/turf/simulated/shuttle/wall,/area/shuttle/large_escape_pod1/station) -"bdQ" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "large_escape_pod_1_hatch"; locked = 1; name = "Large Escape Pod Hatch 1"; req_access = list(13)},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bdR" = (/obj/structure/sign/redcross,/turf/simulated/shuttle/wall,/area/shuttle/large_escape_pod1/station) -"bdS" = (/turf/simulated/mineral/floor,/area/hallway/secondary/escape/medical_escape_pod_hallway) -"bdT" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue) -"bdU" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station) -"bdV" = (/obj/structure/shuttle/engine/heater{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/airless,/area/shuttle/large_escape_pod1/station) -"bdW" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 3.3},/obj/structure/window/reinforced{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bdX" = (/obj/structure/bed/roller,/obj/structure/closet/walllocker/emerglocker{pixel_x = 0; pixel_y = 32},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bdY" = (/obj/structure/bed/roller,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bdZ" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "large_escape_pod_1"; pixel_x = -26; pixel_y = 26; tag_door = "large_escape_pod_1_hatch"},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bea" = (/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"beb" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bec" = (/obj/structure/bed/chair,/obj/item/device/radio/intercom{broadcasting = 0; canhear_range = 5; dir = 1; frequency = 1487; icon_state = "intercom"; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = 21},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bed" = (/obj/structure/bed/chair,/obj/machinery/vending/wallmed1{layer = 3.3; name = "Emergency NanoMed"; pixel_x = 28; pixel_y = 0},/obj/structure/closet/walllocker/emerglocker{pixel_x = 0; pixel_y = 32},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bee" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/structure/table/steel,/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled,/area/medical/morgue) -"bef" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/pink/border,/obj/structure/table/steel,/obj/item/weapon/autopsy_scanner,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/cautery,/turf/simulated/floor/tiled,/area/medical/morgue) -"beg" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/pink/border,/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_y = -6},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = -9},/obj/item/weapon/pen/blue{pixel_x = 3; pixel_y = -5},/obj/item/device/camera{name = "Autopsy Camera"; pixel_x = -2; pixel_y = 7},/turf/simulated/floor/tiled,/area/medical/morgue) -"beh" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/pink/border,/obj/structure/table/steel,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/box/bodybags,/obj/machinery/light,/turf/simulated/floor/tiled,/area/medical/morgue) -"bei" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/pink/border,/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/tiled,/area/medical/morgue) -"bej" = (/obj/structure/morgue{tag = "icon-morgue1 (WEST)"; icon_state = "morgue1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/medical/morgue) -"bek" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bel" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bem" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/simulated/shuttle/plating,/area/shuttle/large_escape_pod1/station) -"ben" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/light,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"beo" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4; pixel_y = 0},/obj/item/weapon/wrench,/obj/random/medical/lite,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bep" = (/obj/structure/closet/crate/medical,/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/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = -32},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"beq" = (/obj/machinery/sleeper{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"ber" = (/obj/machinery/sleep_console,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bes" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bet" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"beu" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) -"bev" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station) -"bew" = (/turf/simulated/wall/r_wall,/area/security/tactical) -"bex" = (/turf/simulated/wall/r_wall,/area/security/armoury) -"bey" = (/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bez" = (/obj/machinery/camera/network/security,/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beA" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beB" = (/turf/simulated/floor/tiled/dark,/area/security/armoury) -"beC" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/armoury) -"beD" = (/obj/machinery/camera/network/security,/turf/simulated/floor/tiled/dark,/area/security/armoury) -"beE" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beG" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/armoury) -"beH" = (/turf/simulated/wall,/area/maintenance/substation/security) -"beI" = (/obj/machinery/camera/motion/security{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beL" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beM" = (/obj/machinery/camera/motion/security{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/dark,/area/security/armoury) -"beN" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Security Subgrid"; name_tag = "Security Subgrid"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/security) -"beO" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Security"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/security) -"beP" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Security Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/security) -"beQ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beT" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beU" = (/obj/machinery/door/blast/regular,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/tactical) -"beV" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/security/armoury) -"beW" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/armoury) -"beX" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor,/area/maintenance/substation/security) -"beY" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/security) -"beZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/security) -"bfa" = (/turf/simulated/wall,/area/maintenance/station/_08) -"bfb" = (/turf/simulated/wall/r_wall,/area/ai) -"bfc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bfd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bfe" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/security/armoury) -"bff" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/armoury) -"bfg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/armoury) -"bfh" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/armoury) -"bfi" = (/turf/simulated/floor/tiled,/area/security/armoury) -"bfj" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/armoury) -"bfk" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/security) -"bfl" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/maintenance/substation/security) -"bfm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/security) -"bfn" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_08) -"bfo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_08) -"bfp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall,/area/ai) -"bfq" = (/obj/machinery/porta_turret/ai_defense,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/ai) -"bfr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/command,/turf/simulated/floor/bluegrid,/area/ai) -"bfs" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/bluegrid,/area/ai) -"bft" = (/obj/machinery/power/smes/buildable{charge = 5e+006; input_attempt = 1; input_level = 200000; output_level = 200000},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/bluegrid,/area/ai) -"bfu" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - AI Subgrid"; name_tag = "AI Subgrid"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/bluegrid,/area/ai) -"bfv" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/bluegrid,/area/ai) -"bfw" = (/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai) -"bfx" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bfy" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bfz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bfA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bfB" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bfC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bfD" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/security/armoury) -"bfE" = (/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/dark,/area/security/armoury) -"bfF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/armoury) -"bfG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/armoury) -"bfH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) -"bfI" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/armoury) -"bfJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/armoury) -"bfK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/armoury) -"bfL" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/security/armoury) -"bfM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/security) -"bfN" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/substation/security) -"bfO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/security) -"bfP" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/door/airlock/maintenance/int,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/_08) -"bfQ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai) -"bfR" = (/turf/simulated/floor/bluegrid,/area/ai) -"bfS" = (/turf/simulated/wall/durasteel,/area/ai) -"bfT" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/ai) -"bfU" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai) -"bfV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/tactical) -"bfW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/armoury) -"bfX" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/_08) -"bfY" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "32-4"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_08) -"bfZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_08) -"bga" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/station/_08) -"bgb" = (/turf/simulated/floor,/area/maintenance/station/_08) -"bgc" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/station/_08) -"bgd" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_08) -"bge" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/_08) -"bgf" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/bluegrid,/area/ai) -"bgg" = (/obj/effect/landmark/start{name = "AI"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/obj/item/device/radio/intercom{dir = 8; listening = 0; name = "Custom Channel"; pixel_x = -21; pixel_y = 10},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; frequency = 1343; name = "Private Channel"; pixel_x = 21; pixel_y = 10},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 30; pixel_y = 32},/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 32},/turf/simulated/floor/bluegrid,/area/ai) -"bgh" = (/turf/simulated/wall/r_wall,/area/security/warden) -"bgi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/warden) -"bgj" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bgk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/warden) -"bgl" = (/obj/structure/sign/department/armory,/turf/simulated/wall/r_wall,/area/security/prison) -"bgm" = (/obj/machinery/door/blast/regular,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/armoury) -"bgn" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/armoury) -"bgo" = (/obj/structure/sign/department/armory,/turf/simulated/wall,/area/security/armoury) -"bgp" = (/obj/machinery/door/airlock/maintenance/sec,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/security/breakroom) -"bgq" = (/turf/simulated/wall/r_wall,/area/security/breakroom) -"bgr" = (/turf/simulated/wall/r_wall,/area/security/security_bathroom) -"bgs" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_08) -"bgt" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{dir = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 20},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; frequency = 1343; name = "Private Channel"; pixel_x = 0; pixel_y = -21},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/ai) -"bgu" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bgv" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bgw" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bgx" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; name = "AI Core"; req_access = list(16)},/turf/simulated/floor/tiled/dark,/area/ai) -"bgy" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/machinery/turretid/stun{check_synth = 1; name = "AI Chamber turret control"; pixel_x = 30; pixel_y = 24},/obj/machinery/flasher{id = "AI"; pixel_x = -24; pixel_y = 25},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the AI core maintenance door."; id = "AICore"; name = "AI Maintenance Hatch"; pixel_x = 8; pixel_y = -25; req_access = list(16)},/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/ai) -"bgz" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bgA" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bgB" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bgC" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{dir = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 21},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1343; name = "Private Channel"; pixel_x = 0; pixel_y = -21},/obj/item/device/radio/intercom{broadcasting = 1; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/ai) -"bgD" = (/obj/machinery/vending/security,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHWEST)"; icon_state = "borderfloor_black"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bgE" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 26},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bgF" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (NORTH)"; icon_state = "borderfloorcorner2_black"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bgG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bgH" = (/obj/structure/table/steel,/obj/machinery/photocopier/faxmachine,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHEAST)"; icon_state = "borderfloor_black"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (EAST)"; icon_state = "borderfloorcorner2_black"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bgI" = (/turf/simulated/open,/area/security/prison) -"bgJ" = (/obj/machinery/light{dir = 1},/turf/simulated/open,/area/security/prison) -"bgK" = (/obj/machinery/camera/network/security,/turf/simulated/open,/area/security/prison) -"bgL" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/open,/area/security/prison) -"bgM" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/security/breakroom) -"bgN" = (/turf/simulated/floor/wood,/area/security/breakroom) -"bgO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/security/breakroom) -"bgP" = (/obj/structure/table/steel,/obj/machinery/microwave,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/security/breakroom) -"bgQ" = (/obj/structure/table/steel,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/item/weapon/storage/box/glasses/square,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/wood,/area/security/breakroom) -"bgR" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bgS" = (/obj/structure/toilet,/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bgT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bgU" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bgV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bgW" = (/obj/structure/closet/secure_closet/warden,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHWEST)"; icon_state = "borderfloor_black"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bgX" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/security/warden) -"bgY" = (/obj/effect/floor_decal/borderfloorblack/corner{tag = "icon-borderfloorcorner_black (WEST)"; icon_state = "borderfloorcorner_black"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) -"bgZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bha" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bhb" = (/obj/structure/railing,/turf/simulated/open,/area/security/prison) -"bhc" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/open,/area/security/prison) -"bhd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/security/breakroom) -"bhe" = (/obj/structure/bed/chair,/turf/simulated/floor/wood,/area/security/breakroom) -"bhf" = (/obj/structure/bed/chair,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/security/breakroom) -"bhg" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donkpockets,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/wood,/area/security/breakroom) -"bhh" = (/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bhi" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bhj" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bhk" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bhl" = (/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/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bhm" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bhn" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (WEST)"; icon_state = "steel_decals6"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) -"bho" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bhp" = (/obj/structure/table/steel,/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/device/retail_scanner/security,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (NORTHEAST)"; icon_state = "borderfloorcorner2_black"; dir = 5},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bhq" = (/obj/structure/catwalk,/turf/simulated/open,/area/security/prison) -"bhr" = (/obj/structure/railing{tag = "icon-railing0 (WEST)"; icon_state = "railing0"; dir = 8},/turf/simulated/open,/area/security/prison) -"bhs" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) -"bht" = (/obj/structure/table/glass,/obj/item/weapon/deck/cards,/turf/simulated/floor/wood,/area/security/breakroom) -"bhu" = (/obj/structure/table/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/security/breakroom) -"bhv" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/security/breakroom) -"bhw" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/wood,/area/security/breakroom) -"bhx" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bhy" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/bluegrid,/area/ai) -"bhz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) -"bhA" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bhB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai) -"bhC" = (/turf/simulated/mineral,/area/security/warden) -"bhD" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bhE" = (/turf/simulated/floor/tiled/dark,/area/security/warden) -"bhF" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/prison) -"bhG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/security/breakroom) -"bhH" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/security/breakroom) -"bhI" = (/obj/structure/table/glass,/turf/simulated/floor/wood,/area/security/breakroom) -"bhJ" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/security/breakroom) -"bhK" = (/obj/machinery/camera/network/security{c_tag = "SEC - Equipment Storage"; dir = 9},/turf/simulated/floor/wood,/area/security/breakroom) -"bhL" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bhM" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bhN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bhO" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bhP" = (/obj/machinery/door/airlock/highsecurity,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) -"bhQ" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) -"bhR" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bhS" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (SOUTHEAST)"; icon_state = "borderfloorcorner2_black"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/machinery/computer/security{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bhT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/security/breakroom) -"bhU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) -"bhV" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) -"bhW" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) -"bhX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) -"bhY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) -"bhZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/security,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/security_bathroom) -"bia" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bib" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bic" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bid" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) -"bie" = (/turf/simulated/wall/r_wall,/area/ai/foyer) -"bif" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"big" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bih" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bii" = (/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/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bij" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bik" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bil" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHWEST)"; icon_state = "borderfloor_black"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bim" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bin" = (/obj/effect/floor_decal/borderfloorblack/corner{tag = "icon-borderfloorcorner_black (NORTH)"; icon_state = "borderfloorcorner_black"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bio" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) -"bip" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark,/area/security/warden) -"biq" = (/obj/structure/railing{tag = "icon-railing0 (NORTH)"; icon_state = "railing0"; dir = 1},/turf/simulated/open,/area/security/prison) -"bir" = (/obj/structure/railing{tag = "icon-railing0 (NORTH)"; icon_state = "railing0"; dir = 1},/obj/structure/railing{tag = "icon-railing0 (EAST)"; icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/security/prison) -"bis" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/security/breakroom) -"bit" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) -"biu" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) -"biv" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) -"biw" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/security/breakroom) -"bix" = (/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHWEST)"; icon_state = "steel_decals10"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHWEST)"; icon_state = "steel_decals10"; dir = 10},/turf/simulated/floor/tiled,/area/security/security_bathroom) -"biy" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"biz" = (/turf/simulated/floor/bluegrid,/area/ai/foyer) -"biA" = (/obj/machinery/hologram/holopad,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai/foyer) -"biB" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"biC" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/mine/explored/upper_level) -"biD" = (/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/turf/simulated/wall,/area/mine/explored/upper_level) -"biE" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 8},/turf/simulated/floor,/area/mine/explored/upper_level) -"biF" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor,/area/mine/explored/upper_level) -"biG" = (/obj/structure/table/steel,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/stamp/denied{pixel_x = 5},/obj/item/weapon/stamp/ward,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHWEST)"; icon_state = "borderfloor_black"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) -"biH" = (/obj/structure/table/steel,/obj/item/weapon/clipboard,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/device/binoculars,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/security/warden) -"biI" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (NORTHWEST)"; icon_state = "borderfloorcorner2_black"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/warden) -"biJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/warden) -"biK" = (/obj/machinery/computer/secure_data{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHEAST)"; icon_state = "borderfloor_black"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloorblack/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/security/warden) -"biL" = (/obj/machinery/light,/turf/simulated/open,/area/security/prison) -"biM" = (/obj/structure/railing{tag = "icon-railing0 (EAST)"; icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/security/prison) -"biN" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/breakroom) -"biO" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/breakroom) -"biP" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/_08) -"biQ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"biR" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"biS" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai/foyer) -"biT" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"biU" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor,/area/mine/explored/upper_level) -"biV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/mine/explored/upper_level) -"biW" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/mine/explored/upper_level) -"biX" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/mine/explored/upper_level) -"biY" = (/obj/machinery/door/window/brigdoor/northleft,/obj/structure/table/steel,/obj/machinery/door/window/brigdoor/southleft,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/warden) -"biZ" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/warden) -"bja" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/warden) -"bjb" = (/obj/structure/sign/department/prison,/turf/simulated/wall/r_wall,/area/security/prison) -"bjc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) -"bjd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"bje" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/hallway) -"bjf" = (/turf/simulated/wall/r_wall,/area/security/detectives_office) -"bjg" = (/obj/structure/closet/secure_closet/detective,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/gun/energy/taser,/obj/item/weapon/gun/energy/taser,/obj/item/weapon/reagent_containers/spray/pepper,/turf/simulated/floor/lino,/area/security/detectives_office) -"bjh" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/lino,/area/security/detectives_office) -"bji" = (/obj/item/weapon/storage/secure/safe{pixel_x = 6; pixel_y = 28},/turf/simulated/floor/lino,/area/security/detectives_office) -"bjj" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bjk" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bjl" = (/obj/effect/landmark/start{name = "Detective"},/obj/structure/bed/chair/office/dark,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bjm" = (/obj/machinery/computer/security/wooden_tv,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bjn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bjo" = (/obj/structure/ladder{pixel_y = 16},/obj/structure/cable/cyan{icon_state = "32-1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai/foyer) -"bjp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bjq" = (/obj/structure/disposalpipe/tagger/partial{name = "partial tagger - Sorting Office"; sort_tag = "Sorting Office"},/turf/simulated/floor,/area/mine/explored/upper_level) -"bjr" = (/turf/simulated/floor,/area/mine/explored/upper_level) -"bjs" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor,/area/mine/explored/upper_level) -"bjt" = (/turf/simulated/wall/r_wall,/area/security/range) -"bju" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) -"bjv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) -"bjw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"bjx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHWEST)"; icon_state = "steel_decals6"; dir = 9},/turf/simulated/floor/tiled,/area/security/hallway) -"bjy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/security/hallway) -"bjz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/security/hallway) -"bjA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/hallway) -"bjB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) -"bjC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/hallway) -"bjD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) -"bjE" = (/turf/simulated/floor/tiled,/area/security/hallway) -"bjF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bjG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/hallway) -"bjH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/security/hallway) -"bjI" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/lino,/area/security/detectives_office) -"bjJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/security/detectives_office) -"bjK" = (/turf/simulated/floor/lino,/area/security/detectives_office) -"bjL" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/carpet,/area/security/detectives_office) -"bjM" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/carpet,/area/security/detectives_office) -"bjN" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bjO" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet,/area/security/detectives_office) -"bjP" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bjQ" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bjR" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bjS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai/foyer) -"bjT" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bjU" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bjV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 8},/turf/simulated/floor/bluegrid,/area/ai/foyer) -"bjW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bjX" = (/obj/structure/cable/green{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,/area/security/hallway) -"bjY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"bjZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bka" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) -"bkc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) -"bke" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) -"bkg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) -"bkh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bki" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkj" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/detectives_office) -"bkk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) -"bkl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) -"bkm" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/lino,/area/security/detectives_office) -"bkn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bko" = (/obj/structure/table/woodentable,/obj/item/device/flash,/obj/item/weapon/handcuffs,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/turf/simulated/floor/carpet,/area/security/detectives_office) -"bkp" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bkq" = (/obj/structure/table/woodentable,/obj/machinery/camera/network/security{c_tag = "SEC - Equipment Storage"; dir = 9},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bkr" = (/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/turf/simulated/floor,/area/mine/explored/upper_level) -"bks" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/mine/explored/upper_level) -"bkt" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/target_stake,/turf/simulated/floor/tiled/dark,/area/security/range) -"bku" = (/turf/simulated/floor/tiled/dark,/area/security/range) -"bkv" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/turf/simulated/floor/tiled/dark,/area/security/range) -"bkw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/security/hallway) -"bkx" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) -"bky" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/security/hallway) -"bkz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkB" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkC" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkD" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) -"bkE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/security/hallway) -"bkG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkH" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHEAST)"; icon_state = "steel_decals6"; dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bkI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/hallway) -"bkJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/security/hallway) -"bkK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/turf/simulated/floor/plating,/area/security/detectives_office) -"bkL" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/photo_album{pixel_y = -10},/obj/item/device/camera_film,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30; pixel_x = 2; pixel_y = 3},/turf/simulated/floor/lino,/area/security/detectives_office) -"bkM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/security/detectives_office) -"bkN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/security/detectives_office) -"bkO" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/turf/simulated/floor,/area/mine/explored/upper_level) -"bkP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/hallway) -"bkQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"bkR" = (/turf/simulated/wall/r_wall,/area/security/briefing_room) -"bkS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/briefing_room) -"bkT" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/security/briefing_room) -"bkU" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/hos) -"bkV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/hos) -"bkW" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hos) -"bkX" = (/turf/simulated/wall/r_wall,/area/security/forensics) -"bkY" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/lino,/area/security/detectives_office) -"bkZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/security/detectives_office) -"bla" = (/turf/simulated/floor/carpet,/area/security/detectives_office) -"blb" = (/obj/effect/landmark/start{name = "Detective"},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/carpet,/area/security/detectives_office) -"blc" = (/obj/machinery/computer/security/wooden_tv,/turf/simulated/floor/carpet,/area/security/detectives_office) -"bld" = (/turf/simulated/wall,/area/maintenance/cargo) -"ble" = (/obj/structure/disposalpipe/sortjunction/wildcard{dir = 8},/turf/simulated/floor,/area/mine/explored/upper_level) -"blf" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor,/area/mine/explored/upper_level) -"blg" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/security/range) -"blh" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/security/range) -"bli" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/hallway) -"blj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/security/hallway) -"blk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"bll" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/security/briefing_room) -"blm" = (/obj/structure/table/standard,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/megaphone,/obj/item/weapon/packageWrap,/obj/item/weapon/storage/box,/obj/item/weapon/hand_labeler,/obj/item/device/universal_translator,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bln" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/security/briefing_room) -"blo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) -"blp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHWEST)"; icon_state = "steel_decals6"; dir = 9},/turf/simulated/floor/tiled,/area/security/briefing_room) -"blq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) -"blr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bls" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled,/area/security/briefing_room) -"blt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/briefing_room) -"blu" = (/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTHWEST)"; icon_state = "steel_decals3"; dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) -"blv" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/security/briefing_room) -"blw" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{pixel_x = -4; pixel_y = 8},/obj/item/device/taperecorder{pixel_y = 0},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHWEST)"; icon_state = "borderfloor_black"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"blx" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bly" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (NORTH)"; icon_state = "borderfloorcorner2_black"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"blz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"blA" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (EAST)"; icon_state = "borderfloorcorner2_black"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"blB" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"blC" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHEAST)"; icon_state = "borderfloor_black"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"blD" = (/obj/effect/floor_decal/borderfloorwhite/cee{tag = "icon-borderfloorcee_white (NORTH)"; icon_state = "borderfloorcee_white"; dir = 1},/obj/effect/floor_decal/corner/red/bordercee,/obj/structure/closet{name = "Evidence Closet"},/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/briefcase/crimekit,/obj/item/weapon/storage/briefcase/crimekit,/turf/simulated/floor/tiled/white,/area/security/forensics) -"blE" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/forensics) -"blF" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/turf/simulated/floor/plating,/area/security/forensics) -"blG" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/cargo) -"blH" = (/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/obj/structure/railing,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/maintenance/cargo) -"blI" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/cargo) -"blJ" = (/turf/simulated/floor,/area/maintenance/cargo) -"blK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/mine/explored/upper_level) -"blL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/range) -"blM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"blN" = (/obj/structure/table/standard,/obj/item/clothing/accessory/badge/holo,/obj/item/clothing/accessory/badge/holo,/obj/item/clothing/accessory/badge/holo/cord,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) -"blO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/briefing_room) -"blP" = (/turf/simulated/floor/tiled,/area/security/briefing_room) -"blQ" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/security/briefing_room) -"blR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) -"blS" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) -"blT" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled,/area/security/briefing_room) -"blU" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/red_hos,/obj/item/weapon/pen/multi,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"blV" = (/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"blW" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) -"blX" = (/obj/structure/bed/chair,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) -"blY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) -"blZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bma" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bmb" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmc" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmd" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/disposal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/trunk,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bme" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmf" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmg" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/dnaforensics,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmh" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/reinforced,/obj/machinery/microscope,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmi" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmj" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/structure/railing{dir = 4},/turf/simulated/floor,/area/maintenance/cargo) -"bmk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) -"bml" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/floor,/area/maintenance/cargo) -"bmm" = (/obj/structure/railing,/turf/simulated/floor,/area/maintenance/cargo) -"bmn" = (/obj/structure/railing,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/cargo) -"bmo" = (/obj/structure/railing,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/cargo) -"bmp" = (/obj/structure/railing,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/cargo) -"bmq" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/range) -"bmr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bms" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) -"bmt" = (/obj/structure/table/standard,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/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/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bmu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bmv" = (/obj/structure/table/glass,/obj/item/weapon/folder/red,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bmw" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bmx" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Head of Security"},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bmy" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{dir = 2; pixel_x = 10; pixel_y = 12},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) -"bmz" = (/obj/structure/table/woodentable,/obj/item/weapon/stamp/hos,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) -"bmA" = (/obj/structure/table/woodentable,/obj/machinery/computer/skills{pixel_y = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) -"bmB" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bmC" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/closet{name = "Evidence Closet"},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmD" = (/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmG" = (/obj/machinery/door/window/westright,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmI" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit/powder,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bmJ" = (/turf/simulated/wall,/area/security/forensics) -"bmK" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/_08) -"bmL" = (/obj/structure/disposalpipe/tagger/partial{name = "partial tagger - Sorting Office"; sort_tag = "Sorting Office"},/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor,/area/maintenance/cargo) -"bmM" = (/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) -"bmN" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) -"bmO" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) -"bmP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/cargo) -"bmQ" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/security/range) -"bmR" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/range) -"bmS" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/range) -"bmT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"bmU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bmV" = (/obj/structure/table/glass,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bmW" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bmX" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Forensics Lab"; sortType = "Forensics Lab"},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bmY" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bmZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/heads/hos) -"bna" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bnb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bnc" = (/obj/machinery/computer/security{tag = "icon-computer (EAST)"; icon_state = "computer"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) -"bnd" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/effect/landmark/start{name = "Head of Security"},/obj/machinery/button/remote/airlock{id = "HoSdoor"; name = "Office Door"; pixel_x = -36; pixel_y = 29},/obj/machinery/button/windowtint{pixel_x = -26; pixel_y = 30; req_access = list(58)},/obj/machinery/button/remote/blast_door{id = "security_lockdown"; name = "Brig Lockdown"; pixel_x = -36; pixel_y = 39; req_access = list(2)},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) -"bne" = (/obj/machinery/computer/secure_data{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) -"bnf" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bng" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/closet{name = "Evidence Closet"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bni" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnk" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnl" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/swabs{layer = 5},/obj/item/weapon/folder/yellow{pixel_y = -5},/obj/item/weapon/folder/blue{pixel_y = -3},/obj/item/weapon/folder/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnm" = (/obj/machinery/computer/secure_data{tag = "icon-computer (NORTH)"; icon_state = "computer"; dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnn" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/luminol,/obj/item/device/uv_light,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bno" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/_08) -"bnp" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) -"bnq" = (/turf/simulated/wall,/area/quartermaster/delivery) -"bnr" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor,/area/quartermaster/delivery) -"bns" = (/obj/machinery/door/airlock/maintenance/cargo,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/quartermaster/delivery) -"bnt" = (/turf/simulated/wall,/area/quartermaster/office) -"bnu" = (/obj/machinery/door/window/northright,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/range) -"bnv" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice,/obj/item/ammo_magazine/clip/a762/practice,/obj/item/ammo_magazine/clip/a762/practice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/range) -"bnw" = (/obj/machinery/door/window/northright,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/security/range) -"bnx" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/energy/laser/practice,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/range) -"bny" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/energy/laser/practice,/turf/simulated/floor/tiled/dark,/area/security/range) -"bnz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/hallway) -"bnA" = (/obj/structure/disposalpipe/sortjunction/flipped{name = "Security"; sortType = "Security"},/turf/simulated/floor/tiled,/area/security/hallway) -"bnB" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bnC" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bnD" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bnE" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bnF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bnG" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bnH" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bnI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnJ" = (/obj/machinery/door/window/westleft,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnL" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/reinforced,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bnM" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/_08) -"bnN" = (/obj/machinery/door/airlock/maintenance/cargo,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/cargo) -"bnO" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor,/area/quartermaster/delivery) -"bnP" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bnQ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/sortjunction/untagged/flipped{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bnR" = (/obj/machinery/photocopier,/turf/simulated/floor/tiled,/area/quartermaster/office) -"bnS" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/quartermaster/office) -"bnT" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled,/area/security/range) -"bnU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/security/range) -"bnV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/range) -"bnW" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/range) -"bnX" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/range) -"bnY" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/range) -"bnZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"boa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) -"bob" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/security/hallway) -"boc" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bod" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) -"boe" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bof" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bog" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/security/briefing_room) -"boh" = (/obj/structure/filingcabinet,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHWEST)"; icon_state = "borderfloor_black"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"boi" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"boj" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 4},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bok" = (/obj/structure/table/woodentable,/obj/item/device/radio/off,/obj/item/device/megaphone,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bol" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bom" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"bon" = (/obj/structure/closet/secure_closet/hos,/obj/item/clothing/suit/space/void/security/fluff/hos{armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10); species_restricted = null},/obj/item/clothing/head/helmet/space/void/security/fluff/hos{armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10); species_restricted = null},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHEAST)"; icon_state = "borderfloor_black"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) -"boo" = (/turf/simulated/wall,/area/crew_quarters/heads/hos) -"bop" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/structure/closet{name = "Evidence Closet"},/turf/simulated/floor/tiled/white,/area/security/forensics) -"boq" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bor" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bos" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/structure/closet{name = "Evidence Closet"},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bot" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/structure/table/reinforced,/obj/item/weapon/hand_labeler,/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) -"bou" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/machinery/dnaforensics,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bov" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/machinery/chem_master,/turf/simulated/floor/tiled/white,/area/security/forensics) -"bow" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/table/reinforced,/obj/item/device/mass_spectrometer/adv,/obj/item/device/reagent_scanner,/turf/simulated/floor/tiled/white,/area/security/forensics) -"box" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_08) -"boy" = (/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor,/area/quartermaster/delivery) -"boz" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"boA" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Sorting Office"; sortType = "Sorting Office"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"boB" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"boC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"boD" = (/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"boE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/quartermaster/office) -"boF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/quartermaster/office) -"boG" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"boH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"boI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/quartermaster/office) -"boJ" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"boK" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"boL" = (/turf/simulated/floor/tiled,/area/quartermaster/office) -"boM" = (/obj/structure/flora/pottedplant{tag = "icon-plant-21"; icon_state = "plant-21"},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled,/area/quartermaster/office) -"boN" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/range) -"boO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/range) -"boP" = (/turf/simulated/floor/tiled,/area/security/range) -"boQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/range) -"boR" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/range) -"boS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/hallway) -"boT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"boU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/security/briefing_room) -"boV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) -"boW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) -"boX" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) -"boY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/station/_08) -"boZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/_08) -"bpa" = (/obj/item/weapon/stool,/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bpb" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bpc" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bpd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bpe" = (/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bpf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bpg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bph" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bpi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Dock"; dir = 1; name = "security camera"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bpj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bpk" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bpl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bpm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bpn" = (/obj/structure/bed/chair/comfy/brown,/obj/structure/noticeboard{pixel_y = 27},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bpo" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/turf/simulated/floor/tiled,/area/security/range) -"bpp" = (/obj/structure/table/reinforced,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/turf/simulated/floor/tiled,/area/security/range) -"bpq" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/blanks{pixel_x = 2; pixel_y = -2},/obj/item/weapon/storage/box/blanks,/obj/item/ammo_magazine/clip/a762/practice,/turf/simulated/floor/tiled,/area/security/range) -"bpr" = (/obj/structure/table/reinforced,/obj/item/ammo_magazine/mc9mmt/practice,/obj/item/ammo_magazine/mc9mmt/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/turf/simulated/floor/tiled,/area/security/range) -"bps" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/tiled,/area/security/range) -"bpt" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/security/range) -"bpu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/hallway) -"bpv" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"bpw" = (/obj/structure/closet/wardrobe/red,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpx" = (/obj/structure/closet/wardrobe/red,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpy" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpz" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donut,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpA" = (/obj/structure/table/steel,/obj/item/weapon/book/codex,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpB" = (/obj/machinery/vending/security,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpC" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpD" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpE" = (/obj/structure/table/steel,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpF" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpG" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpH" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTH)"; icon_state = "steel_decals3"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpI" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) -"bpJ" = (/obj/machinery/door/airlock/maintenance/sec,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/security/briefing_room) -"bpK" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_06) -"bpL" = (/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_06) -"bpM" = (/turf/simulated/wall/r_wall,/area/maintenance/station/_06) -"bpN" = (/obj/machinery/atmospherics/pipe/cap/hidden,/turf/simulated/floor/plating,/area/maintenance/station/_06) -"bpO" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/station/_03) -"bpP" = (/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bpQ" = (/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bpR" = (/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bpS" = (/turf/simulated/wall,/area/storage/emergency_storage/emergency3) -"bpT" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/plating,/area/quartermaster/delivery) -"bpU" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bpV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bpW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bpX" = (/obj/structure/table/steel,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bpY" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/office) -"bpZ" = (/obj/structure/sign/department/cargo,/turf/simulated/wall,/area/quartermaster/office) -"bqa" = (/obj/structure/sign/poster{pixel_x = 0; pixel_y = 0},/turf/simulated/wall,/area/quartermaster/office) -"bqb" = (/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table/standard,/obj/item/weapon/stamp/cargo,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bqc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bqd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bqe" = (/obj/structure/table/standard,/obj/item/weapon/material/ashtray/glass,/obj/machinery/newscaster{pixel_x = 28; pixel_y = 0},/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled,/area/quartermaster/office) -"bqf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/hallway) -"bqg" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/hallway) -"bqh" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) -"bqi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/briefing_room) -"bqj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/briefing_room) -"bqk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/briefing_room) -"bql" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) -"bqm" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) -"bqn" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_06) -"bqo" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable{tag = "icon-4-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,/area/maintenance/station/_06) -"bqp" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/station/_06) -"bqq" = (/turf/simulated/floor/holofloor/tiled/dark,/area/hallway/station/_03) -"bqr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bqs" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bqt" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/storage/emergency_storage/emergency3) -"bqu" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) -"bqv" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) -"bqw" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_08) -"bqx" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_08) -"bqy" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bqz" = (/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bqA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bqB" = (/obj/structure/table/steel,/obj/item/weapon/wrapping_paper,/obj/item/weapon/wrapping_paper,/obj/item/weapon/wrapping_paper,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bqC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/delivery) -"bqD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"bqE" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"bqF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"bqG" = (/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"bqH" = (/obj/machinery/computer/ordercomp,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"bqI" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/structure/table/standard,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bqJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) -"bqK" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bqL" = (/turf/simulated/wall/r_wall,/area/security/lobby) -"bqM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/lobby) -"bqN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/lobby) -"bqO" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby) -"bqP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/vending/cola,/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/lobby) -"bqQ" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) -"bqR" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) -"bqS" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/security/lobby) -"bqT" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/security/lobby) -"bqU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/lobby) -"bqV" = (/obj/structure/table/steel,/obj/structure/flora/pottedplant{tag = "icon-plant-01"; icon_state = "plant-01"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/security/lobby) -"bqW" = (/obj/structure/bed/chair/office/dark,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) -"bqX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/lobby) -"bqY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) -"bqZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/security/lobby) -"bra" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/security/lobby) -"brb" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_06) -"brc" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/structure/cable{tag = "icon-32-1"; icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_06) -"brd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bre" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/storage/emergency_storage/emergency3) -"brf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/storage/emergency_storage/emergency3) -"brg" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/storage/emergency_storage/emergency3) -"brh" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_08) -"bri" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/quartermaster/delivery) -"brj" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30; pixel_y = -1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"brk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"brl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"brm" = (/obj/structure/table/steel,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"brn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"bro" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"brp" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/noticeboard{pixel_y = 27},/obj/machinery/door/window/brigdoor/eastright,/turf/simulated/floor/tiled,/area/quartermaster/office) -"brq" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"brr" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; name = "QM Office"; sortType = "QM Office"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) -"brs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) -"brt" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bru" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled,/area/security/lobby) -"brv" = (/turf/simulated/floor/tiled,/area/security/lobby) -"brw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/lobby) -"brx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/security/lobby) -"bry" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/lobby) -"brz" = (/obj/machinery/computer/secure_data,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/security/lobby) -"brA" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/security/lobby) -"brB" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/security/lobby) -"brC" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/lobby) -"brD" = (/obj/structure/table/steel,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) -"brE" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) -"brF" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_06) -"brG" = (/turf/simulated/floor/plating,/area/maintenance/station/_06) -"brH" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) -"brI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) -"brJ" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/delivery) -"brK" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/light,/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"brL" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Cargo Technician"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"brM" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Dock"; dir = 1; name = "security camera"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"brN" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"brO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/office) -"brP" = (/obj/machinery/computer/supplycomp{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"brQ" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled,/area/quartermaster/office) -"brR" = (/obj/structure/catwalk,/turf/simulated/floor,/area/mine/explored/upper_level) -"brS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/lobby) -"brT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/security/lobby) -"brU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby) -"brV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) -"brW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) -"brX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/lobby) -"brY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) -"brZ" = (/obj/machinery/door/window/brigdoor/westleft,/obj/machinery/door/window/brigdoor/eastleft,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) -"bsa" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) -"bsb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) -"bsc" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/lobby) -"bsd" = (/obj/structure/table/steel,/obj/item/weapon/book/manual/security_space_law,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) -"bse" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_06) -"bsf" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/railing{tag = "icon-railing0 (EAST)"; icon_state = "railing0"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_06) -"bsg" = (/obj/structure/disposalpipe/down{tag = "icon-pipe-d (WEST)"; icon_state = "pipe-d"; dir = 8},/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_06) -"bsh" = (/obj/structure/sign/deck2,/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/station/_03) -"bsi" = (/obj/structure/sign/directions/cargo{dir = 4},/obj/structure/sign/directions/security{dir = 8; pixel_y = 8},/obj/structure/sign/directions/medical{pixel_y = -8},/turf/simulated/wall,/area/storage/emergency_storage/emergency3) -"bsj" = (/obj/machinery/door/airlock{name = "Cargo Emergency Storage"},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) -"bsk" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_08) -"bsl" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/delivery) -"bsm" = (/obj/structure/sign/poster{pixel_x = 0; pixel_y = 0},/obj/structure/sign/department/mail,/turf/simulated/wall,/area/quartermaster/delivery) -"bsn" = (/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bso" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/delivery) -"bsp" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/machinery/door/window/northright{name = "Mailing Room"; req_access = list(50)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/delivery) -"bsq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"bsr" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bss" = (/obj/structure/table/standard,/obj/fiftyspawner/steel,/obj/item/device/multitool,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bst" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/lobby) -"bsu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) -"bsv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/security/lobby) -"bsw" = (/obj/machinery/computer/security{tag = "icon-computer (NORTH)"; icon_state = "computer"; dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/security/lobby) -"bsx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) -"bsy" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donut,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) -"bsz" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/railing,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) -"bsA" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) -"bsB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bsC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bsD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bsE" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bsF" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bsG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bsH" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bsI" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bsJ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bsK" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/quartermaster/office) -"bsL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bsM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) -"bsN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bsO" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bsP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/lobby) -"bsQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/security/lobby) -"bsR" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/security/lobby) -"bsS" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby) -"bsT" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby) -"bsU" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/security/lobby) -"bsV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/security/lobby) -"bsW" = (/obj/structure/table/steel,/obj/structure/flora/pottedplant{tag = "icon-plant-01"; icon_state = "plant-01"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/security/lobby) -"bsX" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby) -"bsY" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby) -"bsZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/security/lobby) -"bta" = (/obj/structure/table/steel,/obj/machinery/photocopier/faxmachine,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/security/lobby) -"btb" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/down{dir = 1},/turf/simulated/open,/area/maintenance/station/_06) -"btc" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/structure/railing{tag = "icon-railing0 (WEST)"; icon_state = "railing0"; dir = 8},/turf/simulated/floor,/area/maintenance/station/_06) -"btd" = (/turf/simulated/wall/r_wall,/area/hallway/station/_03) -"bte" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bth" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bti" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btj" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"btm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"btn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"bto" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"btp" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"btq" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) -"btr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) -"bts" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/quartermaster/office) -"btt" = (/obj/structure/table/standard,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/quartermaster/office) -"btu" = (/turf/simulated/wall,/area/hallway/station/_03) -"btv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/lobby) -"btw" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/lobby) -"btx" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby) -"bty" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/lobby) -"btz" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/railing{dir = 1},/turf/simulated/floor,/area/maintenance/station/_06) -"btA" = (/turf/simulated/wall,/area/maintenance/station/_06) -"btB" = (/turf/simulated/mineral,/area/hallway/station/_03) -"btC" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btI" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"btK" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"btL" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"btM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/camera/network/cargo{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5; c_tag = "CRG - Mining Airlock"},/turf/simulated/floor/tiled,/area/quartermaster/office) -"btN" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/office) -"btO" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = -24},/obj/item/device/retail_scanner/civilian{tag = "icon-retail_idle (NORTH)"; icon_state = "retail_idle"; dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) -"btP" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/quartermaster/office) -"btQ" = (/obj/structure/table/standard,/obj/item/weapon/tape_roll,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/tiled,/area/quartermaster/office) -"btR" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btU" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btV" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btX" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btY" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"btZ" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bua" = (/obj/structure/flora/pottedplant/tropical,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bub" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) -"buc" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bud" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bue" = (/obj/structure/closet/emcloset,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buf" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bug" = (/turf/simulated/wall,/area/medical/psych) -"buh" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) -"bui" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) -"buj" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) -"buk" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) -"bul" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) -"bum" = (/turf/simulated/wall,/area/quartermaster/qm) -"bun" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/qm) -"buo" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access = list(41)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bup" = (/turf/simulated/wall,/area/quartermaster/storage) -"buq" = (/obj/structure/symbol/pr,/turf/simulated/wall,/area/quartermaster/office) -"bur" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access = list(31)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) -"bus" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access = list(31)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/office) -"but" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/office) -"buu" = (/obj/machinery/disposal,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bux" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/sortjunction/untagged{tag = "icon-pipe-j1s (WEST)"; icon_state = "pipe-j1s"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buK" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buM" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"buN" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 10; icon_state = "fwindow"; id = "psych-tint"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/psych) -"buO" = (/obj/structure/table/woodentable,/obj/structure/plushie/ian{dir = 8; icon_state = "ianplushie"; pixel_y = 6; tag = "icon-ianplushie (WEST)"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/medical/psych) -"buP" = (/obj/structure/table/woodentable,/obj/item/toy/therapy_blue,/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = 28},/turf/simulated/floor/wood,/area/medical/psych) -"buQ" = (/obj/structure/bookcase,/turf/simulated/floor/wood,/area/medical/psych) -"buR" = (/obj/structure/flora/pottedplant/fern,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/wood,/area/medical/psych) -"buS" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/maintenance/station/_05) -"buT" = (/turf/simulated/wall,/area/maintenance/station/_05) -"buU" = (/obj/structure/filingcabinet,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"buV" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32; pixel_y = 30},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"buW" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"buX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"buY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"buZ" = (/obj/machinery/status_display/supply_display,/turf/simulated/wall,/area/quartermaster/qm) -"bva" = (/obj/machinery/navbeacon/delivery/south{location = "QM #1"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/mob/living/bot/mulebot,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvb" = (/obj/machinery/navbeacon/delivery/south{location = "QM #2"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/mob/living/bot/mulebot,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvc" = (/obj/machinery/navbeacon/delivery/south{location = "QM #3"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bve" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvf" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/item/weapon/stamp/cargo,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvg" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/storage/backpack/dufflebag,/obj/item/weapon/stamp/cargo,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvh" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvi" = (/obj/structure/closet/emcloset,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bvk" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvy" = (/obj/machinery/door/airlock/medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/psych) -"bvz" = (/turf/simulated/floor/wood,/area/medical/psych) -"bvA" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/wood,/area/medical/psych) -"bvB" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/station/_05) -"bvC" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_05) -"bvD" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_05) -"bvE" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/_05) -"bvF" = (/turf/simulated/floor,/area/maintenance/station/_05) -"bvG" = (/obj/machinery/computer/supplycomp{dir = 4},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Airlock"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bvH" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Quartermaster"},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bvI" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bvJ" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bvK" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bvL" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Airlock"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvM" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvO" = (/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bvP" = (/turf/simulated/wall,/area/teleporter/departing) -"bvQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/teleporter/departing) -"bvR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/glass{name = "Long-Range Teleporter Access"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/teleporter/departing) -"bvS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/sign/directions/medical{dir = 4; pixel_x = 32; pixel_y = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/teleporter/departing) -"bvT" = (/obj/structure/sign/directions/cargo{dir = 4; pixel_y = -8},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = 8; tag = "icon-direction_sec (WEST)"},/turf/simulated/wall,/area/teleporter/departing) -"bvU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvV" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvY" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) -"bvZ" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/wood,/area/medical/psych) -"bwa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/_05) -"bwb" = (/obj/machinery/computer/security/mining{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bwc" = (/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bwd" = (/obj/structure/table/standard,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bwe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/mob/living/simple_animal/fluffy,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bwf" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bwg" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access = list(41)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bwh" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwj" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwk" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; sortType = "Cargo Bay"; name = "Cargo Bay"},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwl" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwm" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "QMLoad2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/storage) -"bwo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bwp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bwq" = (/turf/space,/area/supply/station) -"bwr" = (/obj/structure/table/standard,/obj/item/weapon/storage/fancy/cigarettes{pixel_y = 2},/obj/item/weapon/deck/cards,/obj/item/weapon/book/codex,/obj/machinery/atm{pixel_y = 30},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"},/obj/effect/floor_decal/corner_steel_grid,/turf/simulated/floor/tiled,/area/teleporter/departing) -"bws" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/teleporter/departing) -"bwt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled,/area/teleporter/departing) -"bwu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled,/area/teleporter/departing) -"bwv" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled,/area/teleporter/departing) -"bww" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 26},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled,/area/teleporter/departing) -"bwx" = (/turf/simulated/wall,/area/tether/station/stairs_two) -"bwy" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bwz" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/sign/directions/medical{dir = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bwA" = (/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = 8; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/cargo{dir = 4; pixel_y = -8},/turf/simulated/wall,/area/medical/reception) -"bwB" = (/obj/structure/sign/department/medbay,/turf/simulated/wall,/area/medical/reception) -"bwC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/reception) -"bwD" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/reception) -"bwE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/medical/reception) -"bwF" = (/turf/simulated/wall,/area/medical/reception) -"bwG" = (/obj/structure/sign/department/operational,/turf/simulated/wall,/area/medical/surgery_hallway) -"bwH" = (/obj/machinery/door/airlock/medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bwI" = (/obj/structure/sign/department/medbay,/turf/simulated/wall,/area/medical/surgery_hallway) -"bwJ" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Quarantine Airlock"; dir = 8},/turf/simulated/floor/wood,/area/medical/psych) -"bwK" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_05) -"bwL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/_05) -"bwM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/_05) -"bwN" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_05) -"bwO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bwP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bwQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwX" = (/obj/effect/floor_decal/industrial/loading{tag = "icon-loadingarea (WEST)"; icon_state = "loadingarea"; dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bwY" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/simulated/floor,/area/quartermaster/storage) -"bwZ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"; req_access = list(13)},/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bxa" = (/obj/structure/closet/wardrobe/xenos,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/turf/simulated/floor/tiled,/area/teleporter/departing) -"bxb" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHWEST)"; icon_state = "techfloororange_edges"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"bxc" = (/obj/effect/landmark{name = "JoinLateGateway"},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTH)"; icon_state = "techfloororange_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"bxd" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHEAST)"; icon_state = "techfloororange_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"bxe" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bxf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bxg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bxh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bxi" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bxj" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxk" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxl" = (/obj/structure/flora/pottedplant/minitree,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxm" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxo" = (/obj/structure/flora/pottedplant/minitree,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxp" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxq" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/weapon/backup_implanter{pixel_y = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxr" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxs" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxt" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/cups,/obj/item/weapon/storage/box/cups,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bxu" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bxv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bxw" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bxx" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/carpet/blue,/area/medical/psych) -"bxy" = (/obj/structure/bed/psych,/turf/simulated/floor/carpet/blue,/area/medical/psych) -"bxz" = (/obj/item/weapon/clipboard,/obj/structure/table/woodentable,/turf/simulated/floor/carpet/blue,/area/medical/psych) -"bxA" = (/turf/simulated/floor/carpet/blue,/area/medical/psych) -"bxB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"bxC" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/pen{pixel_y = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"bxD" = (/obj/structure/table/woodentable,/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/carpet/blue,/area/medical/psych) -"bxE" = (/obj/machinery/button/windowtint{id = "psych-tint"; pixel_x = 24},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"bxF" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_05) -"bxG" = (/obj/structure/table/standard,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bxH" = (/obj/structure/table/standard,/obj/item/weapon/coin/silver{pixel_x = -3; pixel_y = 3},/obj/item/weapon/coin/silver,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bxI" = (/obj/structure/closet/secure_closet/quartermaster,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bxJ" = (/obj/structure/closet,/obj/item/weapon/storage/backpack/dufflebag,/turf/simulated/floor/tiled,/area/quartermaster/qm) -"bxK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/cargo/engine,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bxL" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bxM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bxN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bxO" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bxP" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"; req_access = list(13)},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bxQ" = (/turf/simulated/floor,/area/quartermaster/storage) -"bxR" = (/obj/structure/closet/wardrobe/black,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/turf/simulated/floor/tiled,/area/teleporter/departing) -"bxS" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"bxT" = (/obj/machinery/cryopod/robot/door/gateway,/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"bxU" = (/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"bxV" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"bxW" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bxX" = (/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bxY" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bxZ" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bya" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"byb" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byc" = (/turf/simulated/floor/tiled/white,/area/medical/reception) -"byd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bye" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/reception) -"byf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byg" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byh" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/crew{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byi" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (NORTH)"; icon_state = "borderfloorcorner_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byl" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/random/medical,/obj/random/medical,/turf/simulated/floor/tiled/white,/area/medical/reception) -"bym" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"byn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"byo" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"byp" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/psych) -"byq" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"bys" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byt" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/white,/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byu" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byv" = (/obj/machinery/door/airlock/maintenance/medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/medical/psych) -"byw" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_05) -"byx" = (/turf/simulated/wall,/area/quartermaster/warehouse) -"byy" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/cargo/trolley,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"byz" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "cargo_bay"; layer = 3.3; name = "cargo bay hatch controller"; pixel_x = 30; pixel_y = 0; req_one_access = list(13,31); tag_door = "cargo_bay_door"},/obj/machinery/camera/network/cargo{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9; c_tag = "CRG - Mining Airlock"},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"byA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) -"byB" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHWEST)"; icon_state = "techfloororange_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"byC" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/hole,/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"byD" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"byE" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"byF" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHEAST)"; icon_state = "techfloororange_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) -"byG" = (/obj/machinery/door/airlock/maintenance,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"byH" = (/obj/structure/sign/deck3,/turf/simulated/wall,/area/tether/station/stairs_two) -"byI" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"byJ" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byK" = (/obj/structure/table/glass,/obj/machinery/door/window/westright,/turf/simulated/floor/tiled/white,/area/medical/reception) -"byL" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byM" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/glass,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"byN" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"byO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"byP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"byQ" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byR" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byS" = (/obj/machinery/light,/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byU" = (/obj/structure/table/woodentable,/obj/structure/sign/poster{pixel_x = 0; pixel_y = -32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byV" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byW" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/turf/simulated/floor/carpet/blue,/area/medical/psych) -"byX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/station/_05) -"byY" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_05) -"byZ" = (/obj/machinery/door/airlock/maintenance/cargo,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/quartermaster/warehouse) -"bza" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bzb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bzc" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bzd" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/module/power_control,/obj/item/weapon/cell{maxcharge = 2000},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) -"bze" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/cobweb,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera/network/cargo{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9; c_tag = "CRG - Mining Airlock"},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bzf" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/cargo/trolley,/obj/machinery/light{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bzg" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bzh" = (/turf/simulated/floor,/area/teleporter/departing) -"bzi" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bzj" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzk" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzn" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/crew{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzo" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzp" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/weapon/storage/box/body_record_disk,/obj/item/weapon/paper{desc = ""; info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; name = "Body Designer Note"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzq" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bzr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bzs" = (/turf/simulated/wall,/area/maintenance/substation/cargo) -"bzt" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/cargo) -"bzu" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/cargo) -"bzv" = (/obj/structure/closet/crate,/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bzw" = (/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bzx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bzy" = (/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) -"bzz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bzA" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/cargo/trolley,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bzB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bzC" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bzD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bzE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bzF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bzG" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bzH" = (/obj/machinery/conveyor{dir = 10; icon_state = "conveyor0"; id = "QMLoad"; tag = "icon-conveyor0 (SOUTHWEST)"},/turf/simulated/floor,/area/quartermaster/storage) -"bzI" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"; req_access = list(13)},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor/plating,/area/quartermaster/storage) -"bzJ" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) -"bzK" = (/turf/simulated/open,/area/tether/station/stairs_two) -"bzL" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzQ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/glass,/obj/structure/flora/pottedplant/smallcactus{pixel_y = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzR" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzT" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bzU" = (/turf/simulated/wall,/area/medical/surgery_hallway) -"bzV" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bzW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/surgery) -"bzX" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bzY" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bzZ" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery,/obj/item/weapon/surgical/FixOVein,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bAa" = (/obj/structure/table/standard,/obj/item/weapon/surgical/retractor,/obj/item/weapon/surgical/bonesetter,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bAb" = (/obj/structure/table/standard,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/hemostat,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bAc" = (/turf/simulated/wall,/area/medical/surgery) -"bAd" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/substation/cargo) -"bAe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) -"bAf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) -"bAg" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bAh" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bAi" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bAj" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bAk" = (/obj/machinery/door/blast/shutters{dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bAl" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bAm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bAn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bAo" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bAp" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) -"bAq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/storage) -"bAr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/storage) -"bAs" = (/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bAt" = (/obj/structure/janitorialcart,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) -"bAu" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/computer/transhuman/designer{tag = "icon-computer (EAST)"; icon_state = "computer"; dir = 4},/obj/item/weapon/paper{desc = ""; info = "Bodies designed on the design console must be saved to a disk to be used. The disks are kept by medical reception."; name = "Body Designer Note"},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bAv" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/reception) -"bAw" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bAx" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/machinery/disposal,/turf/simulated/floor/tiled/white,/area/medical/reception) -"bAy" = (/obj/machinery/door/window/westright,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/reception) -"bAz" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/reception) -"bAA" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bAB" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bAC" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/medical/reception) -"bAD" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bAE" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bAF" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bAG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bAH" = (/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bAI" = (/obj/structure/table/standard,/obj/item/weapon/surgical/circular_saw,/obj/item/weapon/surgical/surgicaldrill,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bAJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/substation/cargo) -"bAK" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/substation/cargo) -"bAL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/cargo) -"bAM" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) -"bAN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bAO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bAP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/blast/shutters{dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters"},/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,/area/quartermaster/warehouse) -"bAQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bAR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bAS" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bAT" = (/obj/machinery/conveyor_switch/oneway{convdir = 1; id = "QMLoad"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bAU" = (/turf/simulated/wall,/area/medical/resleeving) -"bAV" = (/turf/simulated/wall,/area/medical/sleeper) -"bAW" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bAX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bAY" = (/turf/simulated/wall,/area/medical/medbay_emt_bay) -"bAZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/medbay_emt_bay) -"bBa" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bBb" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bBc" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bBd" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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/white,/area/medical/surgery) -"bBe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bBf" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bBg" = (/obj/machinery/computer/operating{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bBh" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bBi" = (/obj/item/stack/medical/advanced/bruise_pack{pixel_x = 2; pixel_y = 2},/obj/item/stack/medical/advanced/bruise_pack,/obj/structure/table/standard,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bBj" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Cargo Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/cargo) -"bBk" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Cargo"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) -"bBl" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Cargo Subgrid"; name_tag = "Cargo Subgrid"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/maintenance/substation/cargo) -"bBm" = (/obj/structure/closet/crate,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) -"bBn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) -"bBo" = (/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = 26; pixel_y = 0; req_access = list(31)},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bBp" = (/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -26; pixel_y = 0; req_access = list(31)},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Airlock"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bBq" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bBr" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bBs" = (/obj/machinery/status_display/supply_display{pixel_y = -32},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) -"bBt" = (/obj/machinery/conveyor{dir = 5; icon_state = "conveyor0"; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) -"bBu" = (/obj/structure/table/glass,/obj/item/device/flashlight/pen{pixel_x = 3; pixel_y = 3},/obj/item/device/flashlight/pen{pixel_x = -3; pixel_y = -3},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bBv" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bBw" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bBx" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/medical/resleeving) -"bBy" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bBz" = (/obj/structure/closet{name = "spare clothes"},/obj/item/clothing/under/color/black,/obj/item/clothing/under/color/black,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/blue,/obj/item/clothing/under/color/green,/obj/item/clothing/under/color/lightpurple,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bBA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/resleeving) -"bBB" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bBC" = (/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4; pixel_y = 0},/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bBD" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/medical/sleeper) -"bBE" = (/obj/structure/table/glass,/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 0; pixel_y = 32},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bBF" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bBG" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bBH" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bBI" = (/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bBJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bBK" = (/obj/structure/flora/pottedplant/minitree,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bBL" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bBM" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bBN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bBO" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bBP" = (/obj/structure/sign/goldenplaque{desc = "Done No Harm."; name = "Best Doctor 2552"; pixel_y = 32},/turf/simulated/floor/tiled,/area/medical/medbay_emt_bay) -"bBQ" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bBR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bBS" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bBT" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bBU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bBV" = (/turf/simulated/wall,/area/maintenance/station/_04) -"bBW" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_04) -"bBX" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) -"bBY" = (/obj/structure/closet/crate/internals,/obj/machinery/light/small,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) -"bBZ" = (/obj/structure/closet/crate/medical,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) -"bCa" = (/obj/machinery/status_display/supply_display,/turf/simulated/wall,/area/quartermaster/warehouse) -"bCb" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bCc" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bCd" = (/obj/structure/table/standard,/obj/item/clothing/head/soft,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/clothing/head/soft,/turf/simulated/floor/tiled,/area/quartermaster/storage) -"bCe" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/simulated/wall,/area/quartermaster/storage) -"bCf" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCh" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCi" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"; tag = "icon-intact-f (NORTHEAST)"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCj" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCk" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/resleeving) -"bCm" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCn" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCo" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCp" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCq" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCr" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCs" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCt" = (/obj/machinery/door/airlock/glass_medical,/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bCu" = (/obj/machinery/atmospherics/pipe/zpipe/down{tag = "icon-down (WEST)"; icon_state = "down"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bCv" = (/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bCw" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bCx" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/medical/medbay_emt_bay) -"bCy" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/masks,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bCz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bCA" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bCB" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bCC" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bCD" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery,/obj/item/weapon/surgical/FixOVein,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bCE" = (/obj/structure/table/standard,/obj/item/weapon/surgical/retractor,/obj/item/weapon/surgical/bonesetter,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bCF" = (/obj/structure/table/standard,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/hemostat,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery) -"bCG" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_04) -"bCH" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_04) -"bCI" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_04) -"bCJ" = (/obj/structure/lattice,/turf/simulated/mineral/floor/ignore_mapgen,/area/mine/explored/upper_level) -"bCK" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCN" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bCP" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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/white,/area/medical/resleeving) -"bCQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCR" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCW" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -2; pixel_y = -2},/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 2; pixel_y = 2},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bCX" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/iv_drip,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bCY" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/wall,/area/medical/medbay_emt_bay) -"bCZ" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bDa" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bDb" = (/turf/simulated/wall,/area/medical/surgery2) -"bDc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/_04) -"bDd" = (/obj/structure/ladder,/turf/simulated/floor,/area/maintenance/station/_04) -"bDe" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_04) -"bDf" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDh" = (/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDi" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDj" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDm" = (/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDn" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDo" = (/obj/machinery/sleeper{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDp" = (/obj/machinery/sleep_console,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDq" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (WEST)"; icon_state = "steel_decals10"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDt" = (/obj/structure/table/glass,/obj/item/device/defib_kit,/obj/item/device/defib_kit,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDu" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bDv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bDw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bDx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bDy" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/bed/chair/wheelchair,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bDz" = (/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/structure/table/standard,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bDA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/surgery2) -"bDB" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bDC" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bDD" = (/obj/structure/table/standard,/obj/item/weapon/surgical/retractor,/obj/item/weapon/surgical/bonesetter,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bDE" = (/obj/structure/table/standard,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/hemostat,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bDF" = (/obj/structure/table/standard,/obj/item/weapon/surgical/circular_saw,/obj/item/weapon/surgical/surgicaldrill,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bDG" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/station/_04) -"bDH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_04) -"bDI" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_04) -"bDJ" = (/obj/machinery/computer/transhuman/resleeving{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDK" = (/obj/item/weapon/book/manual/resleeving,/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDL" = (/obj/machinery/clonepod/transhuman,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDM" = (/obj/machinery/transhuman/resleever,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDN" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDO" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/resleeving) -"bDP" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/roller,/obj/item/roller{pixel_y = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDQ" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDR" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (NORTHEAST)"; icon_state = "steel_grid"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDS" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDU" = (/obj/structure/table/glass,/obj/item/weapon/screwdriver,/obj/item/weapon/storage/pill_bottle/tramadol,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bDV" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bDW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bDX" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/bed/chair/wheelchair,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bDY" = (/obj/structure/table/standard,/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/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bDZ" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bEa" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEc" = (/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEd" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery,/obj/item/weapon/surgical/FixOVein,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_04) -"bEf" = (/turf/simulated/wall,/area/crew_quarters/heads/cmo) -"bEg" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/recharger,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEh" = (/obj/machinery/bodyscanner{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEi" = (/obj/machinery/body_scanconsole,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEj" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/recharger,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEk" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/item/weapon/hand_labeler,/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bEl" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bEm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bEn" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/table/glass,/obj/random/medical,/obj/random/medical,/obj/item/device/flashlight/pen,/obj/item/device/flashlight/pen,/obj/item/device/flashlight/pen,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bEo" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/random/medical,/obj/random/medical,/obj/item/device/glasses_kit,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bEp" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bEq" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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/white,/area/medical/surgery2) -"bEr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEs" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEt" = (/obj/machinery/computer/operating{tag = "icon-computer (NORTH)"; icon_state = "computer"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEu" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEv" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/table/standard,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEw" = (/turf/simulated/open,/area/medical/surgery_hallway) -"bEx" = (/obj/machinery/light{dir = 1},/turf/simulated/open,/area/medical/surgery_hallway) -"bEy" = (/obj/structure/flora/pottedplant{tag = "icon-plant-01"; icon_state = "plant-01"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bEz" = (/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bEA" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop{pixel_x = 3; pixel_y = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bEB" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bEC" = (/obj/structure/closet/secure_closet/CMO,/obj/item/weapon/cmo_disk_holder,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bED" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bEE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) -"bEF" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEG" = (/obj/structure/filingcabinet/chestdrawer{name = "scan records"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEH" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) -"bEI" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bEJ" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEL" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bEM" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bEN" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bEO" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bEP" = (/obj/structure/bed/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bEQ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bER" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bES" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bET" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEX" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/structure/table/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEY" = (/obj/machinery/sleeper{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bEZ" = (/obj/machinery/sleep_console,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFa" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (WEST)"; icon_state = "steel_decals10"; dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{name = "CMO Office"; sortType = "CMO Office"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFd" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFe" = (/obj/structure/sink{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFf" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFg" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFi" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFk" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bFl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bFm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bFn" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bFo" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bFp" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bFq" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bFr" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bFs" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2) -"bFt" = (/turf/simulated/floor/tiled,/area/medical/surgery_hallway) -"bFu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) -"bFv" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFw" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "CMO's Office"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_animal/cat/fluff/Runtime,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFz" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFF" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/medical/surgery_hallway) -"bFG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bFH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bFI" = (/obj/structure/railing,/turf/simulated/open,/area/medical/surgery_hallway) -"bFJ" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFK" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFL" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFM" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFN" = (/obj/machinery/computer/crew{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) -"bFO" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFP" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFQ" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFR" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFS" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFT" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFU" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFW" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFX" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFY" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bFZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bGa" = (/obj/machinery/door/airlock/glass_medical,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGd" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGe" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open"; icon_state = "door_open"; dir = 2},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGf" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGg" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGh" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGi" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGj" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGk" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGl" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) -"bGn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/sleeper) -"bGo" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) -"bGp" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGr" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGs" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open (NORTH)"; icon_state = "door_open"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGt" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGv" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGw" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGx" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGy" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGz" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/closet/l3closet/medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) -"bGA" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/medical/surgery_hallway) -"bGB" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_04) -"bGC" = (/turf/simulated/wall,/area/crew_quarters/medical_restroom) -"bGD" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{pixel_y = 10},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bGE" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bGF" = (/obj/structure/toilet{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bGG" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/medical_restroom) -"bGH" = (/turf/simulated/wall,/area/crew_quarters/medbreak) -"bGI" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bGJ" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bGK" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bGL" = (/obj/structure/sink{pixel_y = 24},/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bGM" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bGN" = (/obj/machinery/vending/fitness,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bGO" = (/turf/simulated/wall,/area/medical/patient_a) -"bGP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_a) -"bGQ" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bGR" = (/turf/simulated/wall,/area/medical/patient_b) -"bGS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_b) -"bGT" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bGU" = (/turf/simulated/wall,/area/medical/patient_c) -"bGV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_c) -"bGW" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bGX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/surgery_hallway) -"bGY" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bGZ" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bHa" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bHb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/medical_restroom) -"bHc" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHd" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHe" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHf" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHg" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHh" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHi" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bHj" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bHk" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bHl" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bHm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bHn" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bHo" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bHp" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bHq" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bHr" = (/obj/machinery/door/airlock/medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bHs" = (/obj/machinery/door/airlock/medical,/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bHt" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHu" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHv" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHw" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHx" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHy" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHz" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bHA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bHB" = (/obj/item/weapon/bedsheet/medical,/obj/structure/bed,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bHC" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bHD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bHE" = (/obj/item/weapon/bedsheet/medical,/obj/structure/bed,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bHF" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bHG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bHH" = (/obj/item/weapon/bedsheet/medical,/obj/structure/bed,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bHI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/medical_restroom) -"bHJ" = (/obj/structure/mirror{pixel_y = 30},/obj/structure/sink{pixel_y = 24},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bHK" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bHL" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bHM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bHN" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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/white,/area/crew_quarters/medbreak) -"bHO" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHP" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHQ" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHR" = (/obj/structure/table/glass,/obj/item/weapon/deck/cards,/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHS" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHT" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHU" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bHV" = (/obj/structure/table/glass,/obj/item/weapon/clipboard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bHW" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bHX" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_a) -"bHY" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/clipboard,/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bHZ" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bIa" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_b) -"bIb" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/clipboard,/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bIc" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bId" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_c) -"bIe" = (/obj/machinery/light/small,/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bIf" = (/obj/structure/table/standard,/obj/random/soap,/obj/random/soap,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bIg" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) -"bIh" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIi" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIj" = (/obj/structure/table/glass,/obj/item/device/universal_translator,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIk" = (/obj/structure/table/glass,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIl" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIm" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_a) -"bIo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_b) -"bIp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_c) -"bIq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/medical_restroom) -"bIr" = (/obj/structure/flora/skeleton{name = "\proper Wilhelm"},/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIs" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIt" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIu" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIv" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIw" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIx" = (/obj/structure/bookcase/manuals/medical,/obj/item/weapon/book/manual/medical_diagnostics_manual{pixel_y = 7},/obj/item/weapon/book/manual/stasis,/obj/item/weapon/book/manual/resleeving,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIy" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIz" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIA" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) -"bIB" = (/obj/effect/landmark/map_data/virgo3b,/turf/space,/area/space) +"aFs" = (/turf/space,/area/shuttle/tether/station) +"aFt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/station/dock_two) +"aFu" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library_conference_room) +"aFv" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/wood,/area/library_conference_room) +"aFw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFx" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFy" = (/obj/machinery/computer/shuttle_control/tether_backup{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFA" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFB" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/simulated/floor/wood,/area/library_conference_room) +"aFC" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/wood,/area/library_conference_room) +"aFD" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Meeting Room"; dir = 1},/turf/simulated/floor/wood,/area/library_conference_room) +"aFE" = (/obj/machinery/photocopier,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/wood,/area/library_conference_room) +"aFF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/wall,/area/tether/station/dock_two) +"aFG" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/library_conference_room) +"aFI" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFJ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFK" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "tether_dock_airlock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_outer"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFL" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "tether_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "tether_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "tether_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "tether_dock_pump"; tag_chamber_sensor = "tether_dock_sensor"; tag_exterior_door = "tether_dock_outer"; tag_interior_door = "tether_dock_inner"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFM" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_inner"; locked = 1; name = "Docking Port Airlock"; req_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFN" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tether_dock_airlock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"; tag = "icon-manifold-f (EAST)"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"aFP" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFQ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/cap/hidden{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFR" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFS" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "interior access button"; pixel_x = -28; pixel_y = -26; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFT" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFU" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFV" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFW" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFX" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFY" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"; req_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFZ" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"; tag = "icon-manifold-f (WEST)"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aGa" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"; tag = "icon-intact-f (SOUTHWEST)"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "trade_shuttle_dock_airlock"; pixel_x = 28; pixel_y = 0; req_one_access = list(13); tag_airpump = "trade_shuttle_dock_pump"; tag_chamber_sensor = "trade_shuttle_dock_sensor"; tag_exterior_door = "trade_shuttle_dock_outer"; tag_interior_door = "trade_shuttle_dock_inner"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aGb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"aGc" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aGd" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "trade_shuttle_dock_sensor"; pixel_x = 30; pixel_y = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aGe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"aGf" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"; req_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aGg" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "exterior access button"; pixel_x = 28; pixel_y = -6; req_access = list(13)},/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"; req_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aGh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"aGi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"aGj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"aGk" = (/turf/space,/area/shuttle/trade/station) +"aGl" = (/turf/simulated/wall/r_wall,/area/engineering/storage) +"aGm" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/engineering/storage) +"aGn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor,/area/engineering/storage) +"aGo" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Starboard"; dir = 2},/turf/simulated/floor,/area/engineering/storage) +"aGp" = (/turf/simulated/floor,/area/engineering/storage) +"aGq" = (/obj/structure/dispenser{oxygentanks = 0},/turf/simulated/floor,/area/engineering/storage) +"aGr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage) +"aGs" = (/turf/simulated/wall/r_wall,/area/security/prison) +"aGt" = (/turf/simulated/wall/r_wall,/area/security/brig/visitation) +"aGu" = (/obj/machinery/shieldgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aGv" = (/obj/machinery/shieldgen,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aGw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/storage) +"aGx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/security/prison) +"aGy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aGz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/prison) +"aGA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/prison) +"aGB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/security/prison) +"aGC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/prison) +"aGD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/security/prison) +"aGE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/security/prison) +"aGF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/security/prison) +"aGG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/brig/visitation) +"aGH" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aGI" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aGJ" = (/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aGK" = (/turf/simulated/wall,/area/maintenance/station/_07) +"aGL" = (/obj/machinery/shieldgen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/engineering/storage) +"aGM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/engineering/storage) +"aGN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/engineering/storage) +"aGO" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) +"aGP" = (/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aGQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/security/prison) +"aGR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aGS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aGT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aGU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aGV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aGW" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aGX" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aGY" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/prison) +"aGZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aHa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aHb" = (/obj/machinery/door/airlock,/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/wall,/area/security/brig/visitation) +"aHc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aHd" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aHe" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aHf" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor,/area/maintenance/station/_07) +"aHg" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aHh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/storage) +"aHi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/engineering/storage) +"aHj" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) +"aHk" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) +"aHl" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison) +"aHm" = (/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (WEST)"; icon_state = "steel_decals9"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/security/prison) +"aHn" = (/turf/simulated/wall/r_wall,/area/security/brig) +"aHo" = (/obj/machinery/door/window/brigdoor/northleft,/obj/machinery/door/window/brigdoor/southright,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/brig) +"aHp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/security/brig) +"aHq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/security/brig) +"aHr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig) +"aHs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/brig) +"aHt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig/visitation) +"aHu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/brig/visitation) +"aHv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/brig/visitation) +"aHw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/_07) +"aHx" = (/turf/simulated/wall,/area/chapel/chapel_morgue) +"aHy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/storage) +"aHz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/storage) +"aHA" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aHB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (SOUTHEAST)"; icon_state = "steel_decals3"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison) +"aHC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aHD" = (/obj/item/weapon/pen/crayon/blue,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aHE" = (/obj/structure/bed,/obj/item/weapon/paper,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aHF" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aHG" = (/obj/structure/bed,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aHH" = (/obj/machinery/computer/arcade/orion_trail,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aHI" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aHJ" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aHK" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aHL" = (/obj/structure/table/steel,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aHM" = (/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aHN" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aHO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aHP" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aHQ" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aHR" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aHS" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aHT" = (/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aHU" = (/obj/machinery/shield_gen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aHV" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aHW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/engineering/storage) +"aHX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/storage) +"aHY" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor,/area/engineering/storage) +"aHZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/security/prison) +"aIa" = (/obj/machinery/cryopod{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aIb" = (/obj/structure/closet/secure_closet/brig,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/security/brig) +"aIc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aId" = (/obj/structure/closet/secure_closet/brig,/obj/effect/floor_decal/industrial/outline,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aIe" = (/obj/item/weapon/stool/padded,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIf" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIi" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIj" = (/obj/machinery/door/airlock,/obj/structure/cable/green{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/wall,/area/security/brig/visitation) +"aIk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aIl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aIm" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/security/brig/visitation) +"aIn" = (/obj/structure/morgue,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aIo" = (/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aIp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aIq" = (/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aIr" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) +"aIs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/engineering/storage) +"aIt" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aIu" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor,/area/engineering/storage) +"aIv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/prison) +"aIw" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/cryopod{pixel_x = 32},/turf/simulated/floor/tiled,/area/security/prison) +"aIx" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled,/area/security/brig) +"aIy" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/brig) +"aIz" = (/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIB" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled,/area/security/brig) +"aIC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aID" = (/obj/machinery/vending/hydronutrients,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/brig) +"aIE" = (/turf/simulated/wall/r_wall,/area/security/brig/bathroom) +"aIF" = (/obj/machinery/button/remote/driver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = 32; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aIG" = (/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) +"aIH" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/plating,/area/engineering/storage) +"aII" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/storage) +"aIJ" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/engineering/storage) +"aIK" = (/obj/structure/closet/crate/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/storage) +"aIL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison) +"aIM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/obj/machinery/door/window/brigdoor/westleft,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aIN" = (/obj/machinery/door/blast/regular,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/brig) +"aIO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIQ" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIS" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIT" = (/obj/machinery/vending/wallmed1{pixel_y = -32},/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/brig) +"aIY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aIZ" = (/obj/machinery/seed_storage/garden,/obj/machinery/camera/network/prison{c_tag = "SEC - Common Brig Fore"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/security/brig) +"aJa" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJc" = (/obj/structure/mirror{pixel_x = 30},/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJd" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aJe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aJf" = (/obj/machinery/door/window{dir = 8; name = "Mass Driver"; req_access = list(22)},/obj/machinery/mass_driver{dir = 4; id = "chapelgun"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/airlock_sensor{pixel_y = 25},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/chapel/chapel_morgue) +"aJg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/chapel/chapel_morgue) +"aJh" = (/obj/machinery/door/blast/regular{id = "chapelgun"; name = "Chapel Launcher Door"},/turf/simulated/floor/plating,/area/chapel/chapel_morgue) +"aJi" = (/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/storage) +"aJj" = (/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/engineering/storage) +"aJk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aJl" = (/obj/structure/window/reinforced,/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled,/area/security/prison) +"aJm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/security/brig) +"aJn" = (/obj/structure/table/steel,/obj/machinery/microwave,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aJo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aJp" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aJq" = (/obj/structure/table/steel,/obj/item/clothing/head/greenbandana,/obj/item/weapon/material/minihoe,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aJr" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower/security,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJt" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJu" = (/turf/simulated/wall,/area/chapel/office) +"aJv" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/cable/pink{tag = "icon-2-4"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aJw" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aJx" = (/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aJy" = (/obj/machinery/light{dir = 1},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aJz" = (/obj/machinery/door/airlock,/obj/structure/cable/pink{tag = "icon-4-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/dark,/area/chapel/chapel_morgue) +"aJA" = (/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aJB" = (/obj/structure/extinguisher_cabinet{pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aJC" = (/turf/simulated/floor/holofloor/tiled/dark,/area/engineering/storage) +"aJD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/storage) +"aJE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/storage) +"aJF" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/engineering/storage) +"aJG" = (/turf/simulated/floor/tiled,/area/engineering/storage) +"aJH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTH)"; icon_state = "steel_decals3"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison) +"aJI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/security/prison) +"aJJ" = (/obj/machinery/cryopod{dir = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/brig) +"aJK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aJL" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aJM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aJN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aJO" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aJP" = (/obj/machinery/door/airlock{name = "Brig Restroom"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJS" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aJT" = (/obj/structure/flora/pottedplant{icon_state = "plant-06"; pixel_y = 8; tag = "icon-plant-06"},/obj/structure/table/woodentable,/turf/simulated/floor/lino,/area/chapel/office) +"aJU" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "chapel"; name = "Chapel Office Shutters"; pixel_x = -24; pixel_y = 26},/turf/simulated/floor/lino,/area/chapel/office) +"aJV" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/pink{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/lino,/area/chapel/office) +"aJW" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/lino,/area/chapel/office) +"aJX" = (/obj/machinery/photocopier,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/lino,/area/chapel/office) +"aJY" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aJZ" = (/turf/simulated/wall/r_wall,/area/ai_upload) +"aKa" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aKb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aKc" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aKd" = (/obj/structure/table/standard,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aKe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/chapel/chapel_morgue) +"aKf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/storage) +"aKg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/storage) +"aKh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison) +"aKi" = (/obj/item/weapon/pen/crayon,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aKj" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/brig) +"aKk" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aKl" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/obj/item/clothing/suit/storage/apron,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aKm" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aKn" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/clothing/head/soft/orange,/obj/item/clothing/shoes/sandal,/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aKo" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aKp" = (/obj/structure/closet{name = "Prisoner's Locker"},/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/flame/lighter/zippo,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aKq" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/steel_dirty,/area/security/brig) +"aKr" = (/obj/structure/toilet{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aKs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aKt" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/freezer,/area/security/brig/bathroom) +"aKu" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) +"aKv" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Chaplain"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) +"aKw" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/lino,/area/chapel/office) +"aKx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) +"aKy" = (/obj/structure/table/woodentable,/obj/item/weapon/nullrod,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"aKz" = (/turf/simulated/floor,/area/chapel/chapel_morgue) +"aKA" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aKB" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aKC" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aKD" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aKE" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aKF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aKG" = (/obj/structure/cable/pink,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aKH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aKI" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aKJ" = (/turf/simulated/wall/r_wall,/area/engineering/engine_balcony) +"aKK" = (/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engine_balcony) +"aKL" = (/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/engine_balcony) +"aKM" = (/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (NORTH)"; icon_state = "steel_decals9"; dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aKN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/brig) +"aKO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig) +"aKP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/brig) +"aKQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig) +"aKR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/brig) +"aKS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/brig) +"aKT" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/machinery/camera/network/civilian{c_tag = "CIV - Chapel Office"; dir = 4},/turf/simulated/floor/lino,/area/chapel/office) +"aKU" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/lino,/area/chapel/office) +"aKV" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/crayons,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/chapel/office) +"aKW" = (/turf/simulated/floor/lino,/area/chapel/office) +"aKX" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/machinery/light{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) +"aKY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aKZ" = (/obj/machinery/computer/aiupload,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aLa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aLb" = (/obj/structure/ladder/up,/obj/structure/cable/cyan{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aLc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aLd" = (/obj/machinery/computer/borgupload,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aLe" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aLf" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"aLg" = (/obj/structure/catwalk,/turf/simulated/open,/area/engineering/engine_balcony) +"aLh" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/open,/area/engineering/engine_balcony) +"aLi" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/open,/area/engineering/engine_balcony) +"aLj" = (/obj/structure/catwalk,/obj/machinery/light{dir = 1},/obj/structure/cable/green{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/open,/area/engineering/engine_balcony) +"aLk" = (/obj/structure/catwalk,/obj/structure/cable/green{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/open,/area/engineering/engine_balcony) +"aLl" = (/obj/structure/catwalk,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/cable/green{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/open,/area/engineering/engine_balcony) +"aLm" = (/obj/structure/catwalk,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/open,/area/engineering/engine_balcony) +"aLn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/security/prison) +"aLo" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aLp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aLq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/prison) +"aLr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/security/prison) +"aLs" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aLt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aLu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/prison) +"aLv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/prison) +"aLw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aLx" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{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,/area/security/evidence_storage) +"aLy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aLz" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aLA" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aLB" = (/turf/simulated/wall/r_wall,/area/security/evidence_storage) +"aLC" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/lino,/area/chapel/office) +"aLD" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/chapel/office) +"aLE" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/lino,/area/chapel/office) +"aLF" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"aLG" = (/obj/machinery/door/airlock/gold,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aLH" = (/turf/simulated/wall,/area/chapel/main) +"aLI" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 4},/obj/machinery/camera/motion/security{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aLJ" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aLK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aLL" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aLM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aLN" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aLO" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aLP" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/engineering/engine_balcony) +"aLQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/security/prison) +"aLR" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/security/prison) +"aLS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aLT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/prison) +"aLU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aLV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aLW" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/prison) +"aLX" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/prison) +"aLY" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/prison) +"aLZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/prison) +"aMa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled,/area/security/prison) +"aMb" = (/obj/structure/closet{name = "Evidence Closet"},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aMc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aMd" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aMe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/chapel/office) +"aMf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/gold,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/chapel/office) +"aMg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/chapel/office) +"aMh" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aMi" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth"},/turf/simulated/floor,/area/chapel/main) +"aMj" = (/obj/item/device/radio/intercom{broadcasting = 1; dir = 4; frequency = 1480; name = "Confessional Intercom"; pixel_x = 27; pixel_y = 0},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/bed/chair,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aMk" = (/turf/simulated/floor/bluegrid,/area/ai_upload) +"aMl" = (/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aMm" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aMn" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/engine_balcony) +"aMo" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/engine_balcony) +"aMp" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/engine_balcony) +"aMq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/prison) +"aMr" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/prison) +"aMs" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aMt" = (/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aMu" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aMv" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aMw" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (EAST)"; icon_state = "chapel"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aMx" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"aMy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Chapel"; sortType = "Chapel"},/turf/simulated/floor/carpet,/area/chapel/main) +"aMz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/chapel/main) +"aMA" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aMB" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (EAST)"; icon_state = "chapel"; dir = 4},/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aMC" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/plating,/area/chapel/main) +"aMD" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aME" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aMF" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aMG" = (/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/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aMH" = (/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aMI" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aMJ" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/engine_balcony) +"aMK" = (/turf/simulated/open,/area/engineering/engine_balcony) +"aML" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/engine_balcony) +"aMM" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/open,/area/engineering/engine_balcony) +"aMN" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/boots/combat,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/station/_03) +"aMO" = (/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aMP" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aMQ" = (/turf/simulated/wall/r_wall,/area/security/security_processing) +"aMR" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/security/security_processing) +"aMS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) +"aMT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) +"aMU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/security_processing) +"aMV" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/security/security_processing) +"aMW" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aMX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aMY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/lattice,/obj/structure/cable/pink{icon_state = "32-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/open,/area/maintenance/station/_07) +"aMZ" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/chapel/main) +"aNa" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNb" = (/obj/effect/floor_decal/chapel,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNc" = (/obj/structure/table/woodentable,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/chapel/main) +"aNd" = (/obj/structure/table/woodentable,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/chapel/main) +"aNe" = (/obj/structure/table/woodentable,/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) +"aNf" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/obj/structure/cable/pink{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNg" = (/obj/effect/floor_decal/chapel,/obj/structure/cable/pink{tag = "icon-1-8"; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNh" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth (Chaplain)"; req_access = list(22)},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNi" = (/obj/item/device/radio/intercom{broadcasting = 1; dir = 4; frequency = 1480; name = "Confessional Intercom"; pixel_x = 27; pixel_y = 0},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNj" = (/obj/machinery/door/airlock/highsecurity,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aNk" = (/obj/structure/catwalk,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/open,/area/engineering/engine_balcony) +"aNl" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/chief) +"aNm" = (/obj/machinery/light{dir = 8},/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/security/security_processing) +"aNn" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled,/area/security/security_processing) +"aNo" = (/turf/simulated/floor/tiled,/area/security/security_processing) +"aNp" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) +"aNq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/evidence_storage) +"aNr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_07) +"aNs" = (/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"aNw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNz" = (/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aNA" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (NORTH)"; icon_state = "techfloor_hole_left"; dir = 1},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aNB" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/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/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aNC" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (NORTH)"; icon_state = "techfloor_hole_right"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aND" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 32; pixel_y = 0},/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aNE" = (/turf/simulated/wall/r_wall,/area/mine/explored/upper_level) +"aNF" = (/obj/machinery/button/remote/driver{id = "enginecore"; name = "Emergency Core Eject"; pixel_x = 0; pixel_y = 21},/obj/structure/window/basic,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/chief) +"aNG" = (/obj/structure/closet/secure_closet/engineering_chief,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aNH" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 27},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aNI" = (/obj/machinery/computer/station_alert/all,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aNJ" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aNK" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aNL" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"aNM" = (/obj/machinery/computer/secure_data{tag = "icon-computer (EAST)"; icon_state = "computer"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/security/security_processing) +"aNN" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) +"aNO" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/evidence_storage) +"aNP" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/obj/item/weapon/stool/padded,/obj/structure/cable/pink{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNQ" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (EAST)"; icon_state = "chapel"; dir = 4},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNS" = (/turf/simulated/floor/carpet,/area/chapel/main) +"aNT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNU" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aNV" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/oxygen,/obj/item/weapon/aiModule/oneHuman,/obj/item/weapon/aiModule/purge,/obj/item/weapon/aiModule/antimov,/obj/item/weapon/aiModule/teleporterOffline,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aNW" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aNX" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aNY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aNZ" = (/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 = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aOa" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aOb" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_upload) +"aOc" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/reset,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aOd" = (/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the engine core airlock hatch bolts."; id = "engine_access_hatch"; name = "Engine Hatch Bolt Control"; pixel_x = -6; pixel_y = 32; req_access = newlist(); specialfunctions = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for engine core."; id = "EngineVent"; name = "Engine Ventillatory Control"; pixel_x = 6; pixel_y = 32; req_access = newlist()},/obj/structure/table/reinforced,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aOe" = (/obj/machinery/computer/security/telescreen{desc = "Used to monitor the engine room."; layer = 3.3; name = "Engine Monitor"; network = list("Engine"); pixel_x = 0; pixel_y = 28},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aOf" = (/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aOg" = (/obj/structure/table/reinforced,/obj/item/weapon/stamp/ce,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/flame/lighter/zippo,/obj/item/device/megaphone,/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aOh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aOi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aOj" = (/obj/machinery/telecomms/relay/preset/tether/station_low,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHWEST)"; icon_state = "techfloororange_edges"; dir = 9},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/westleft,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"aOk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/security/security_processing) +"aOn" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOr" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/evidence,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_07) +"aOt" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/obj/structure/cable/pink,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aOu" = (/obj/effect/floor_decal/chapel,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aOv" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aOw" = (/obj/effect/floor_decal/chapel,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aOx" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aOy" = (/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aOz" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/door/airlock/highsecurity,/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/techfloor,/area/ai_upload) +"aOA" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aOB" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aOC" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aOD" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aOE" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aOF" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/nanotrasen,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aOG" = (/obj/structure/catwalk,/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) +"aOH" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) +"aOI" = (/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) +"aOJ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aOK" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/breath,/obj/item/weapon/rig/ce/equipped,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aOL" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "ceoffice"; name = "Chief Engineer Privacy Shutters"; pixel_x = 26; pixel_y = 18; req_access = list(56)},/obj/effect/landmark/start{name = "Chief Engineer"},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aOM" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = -12; req_access = list(10)},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aON" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aOO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aOP" = (/obj/machinery/telecomms/relay/preset/tether/base_mid,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/obj/machinery/door/window/brigdoor/westleft,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"aOQ" = (/obj/structure/table/steel,/obj/item/device/taperecorder,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOR" = (/obj/structure/table/steel,/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/red{pixel_x = 2; pixel_y = 4},/obj/item/weapon/folder/red,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_processing) +"aOS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOV" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOW" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOX" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/security_processing) +"aOY" = (/obj/structure/table/steel,/obj/item/device/camera,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/security/security_processing) +"aOZ" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPa" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) +"aPd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPe" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPf" = (/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPg" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/asimov,/obj/item/weapon/aiModule/freeformcore,/obj/item/weapon/aiModule/corp,/obj/item/weapon/aiModule/paladin,/obj/item/weapon/aiModule/robocop,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aPh" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aPi" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aPj" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aPk" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aPl" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aPm" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aPn" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/freeform,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/bluegrid,/area/ai_upload) +"aPo" = (/obj/structure/catwalk,/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) +"aPp" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 6; name = "Chief Engineer RC"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aPq" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aPr" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/book/manual/supermatter_engine,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aPs" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aPt" = (/obj/machinery/telecomms/relay/preset/tether/base_high,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHWEST)"; icon_state = "techfloororange_edges"; dir = 10},/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/westleft,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"aPu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/security_processing) +"aPv" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/security_processing) +"aPw" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (NORTH)"; icon_state = "chapel"; dir = 1},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPx" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (EAST)"; icon_state = "chapel"; dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPy" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aPz" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aPA" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/floor_decal/techfloor/hole,/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_upload) +"aPB" = (/obj/structure/catwalk,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/reinforced,/area/engineering/engine_balcony) +"aPC" = (/obj/structure/catwalk,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/engineering/engine_balcony) +"aPD" = (/obj/machinery/disposal,/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aPE" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aPF" = (/obj/machinery/light_switch{pixel_x = 12; pixel_y = -24},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aPG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aPH" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aPI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aPJ" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aPK" = (/obj/structure/flora/pottedplant{icon_state = "plant-20"; tag = "icon-plant-22"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"aPL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aPM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aPN" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aPO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_07) +"aPP" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/plating,/area/maintenance/station/_07) +"aPQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_07) +"aPR" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_07) +"aPS" = (/obj/effect/floor_decal/chapel{tag = "icon-chapel (WEST)"; icon_state = "chapel"; dir = 8},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPT" = (/obj/effect/floor_decal/chapel,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aPU" = (/turf/simulated/wall/r_wall,/area/ai_server_room) +"aPV" = (/turf/simulated/wall/r_wall,/area/ai_upload_foyer) +"aPW" = (/obj/machinery/door/airlock/highsecurity,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aPX" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/ai_upload_foyer) +"aPY" = (/turf/simulated/wall/r_wall,/area/ai_cyborg_station) +"aPZ" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aQa" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"aQb" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"aQc" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/crew_quarters/heads/chief) +"aQd" = (/obj/machinery/door/airlock/glass_engineering,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aQe" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"aQf" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/chief) +"aQg" = (/turf/simulated/wall,/area/maintenance/station/_03) +"aQh" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aQi" = (/turf/simulated/wall/r_wall,/area/maintenance/station/_03) +"aQj" = (/turf/simulated/wall/r_wall,/area/maintenance/station/_07) +"aQk" = (/obj/structure/sign/department/chapel,/turf/simulated/wall,/area/chapel/main) +"aQl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/chapel/main) +"aQm" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aQn" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aQo" = (/obj/machinery/message_server,/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) +"aQp" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) +"aQq" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) +"aQr" = (/obj/machinery/turretid/stun{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_x = 0; pixel_y = 30},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aQs" = (/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/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aQt" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aQu" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"aQv" = (/obj/structure/table/standard,/obj/item/weapon/phone,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"aQw" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"aQx" = (/obj/structure/catwalk,/obj/structure/cable/green{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/open,/area/engineering/engine_balcony) +"aQy" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/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/plating,/area/engineering/engine_balcony) +"aQz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aQA" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aQB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aQC" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aQD" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aQE" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{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/open,/area/engineering/foyer_mezzenine) +"aQF" = (/obj/structure/catwalk,/obj/structure/cable/green{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/open,/area/engineering/foyer_mezzenine) +"aQG" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aQH" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aQI" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aQJ" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aQK" = (/turf/simulated/wall,/area/engineering/foyer_mezzenine) +"aQL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aQM" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aQN" = (/obj/structure/railing{dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aQO" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/zpipe/down,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/lattice,/obj/structure/cable{tag = "icon-32-2"; icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_03) +"aQP" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/station/_02) +"aQQ" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aQR" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aQS" = (/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aQT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aQU" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aQV" = (/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aQW" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) +"aQX" = (/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) +"aQY" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) +"aQZ" = (/obj/machinery/door/airlock/highsecurity,/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/techfloor,/area/ai_server_room) +"aRa" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aRb" = (/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/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aRc" = (/obj/machinery/door/airlock/highsecurity,/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/techfloor,/area/ai_cyborg_station) +"aRd" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"aRe" = (/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"aRf" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"aRg" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/open,/area/engineering/engine_balcony) +"aRh" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring) +"aRi" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRj" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRk" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRl" = (/obj/structure/catwalk,/obj/structure/disposalpipe/sortjunction{dir = 8; name = "CE Office"; sortType = "CE Office"},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRm" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aRo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aRp" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aRq" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/cable{tag = "icon-1-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/plating,/area/maintenance/station/_03) +"aRr" = (/turf/simulated/floor/holofloor/tiled/dark,/area/hallway/station/_02) +"aRs" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aRt" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) +"aRu" = (/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) +"aRv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_server_room) +"aRw" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aRx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aRy" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/ai_upload_foyer) +"aRz" = (/obj/structure/closet/crate{name = "Camera Assembly Crate"},/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"aRA" = (/obj/machinery/recharge_station,/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"aRB" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"aRC" = (/obj/machinery/computer/atmoscontrol{dir = 4},/obj/effect/floor_decal/corner/yellow/full{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aRD" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aRE" = (/obj/structure/table/reinforced,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/machinery/alarm{pixel_y = 25},/obj/effect/floor_decal/corner/yellow{dir = 5},/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = -12; req_access = newlist(); req_one_access = list(10,24)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = -12; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aRF" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aRG" = (/obj/machinery/computer/power_monitor{dir = 8},/obj/effect/floor_decal/corner/yellow/full{tag = "icon-corner_white_full (WEST)"; icon_state = "corner_white_full"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aRH" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) +"aRI" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRJ" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRK" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRL" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRM" = (/obj/structure/catwalk,/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRN" = (/obj/structure/catwalk,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/disposalpipe/segment,/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aRO" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down{tag = "icon-pipe-d (NORTH)"; icon_state = "pipe-d"; dir = 1},/turf/simulated/open,/area/maintenance/station/_03) +"aRP" = (/obj/structure/railing{tag = "icon-railing0 (WEST)"; icon_state = "railing0"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aRQ" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aRR" = (/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up{dir = 1},/obj/structure/cable{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable,/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aRS" = (/obj/machinery/door/airlock/highsecurity,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/ai_upload_foyer) +"aRT" = (/obj/structure/sign/department/ai,/turf/simulated/wall/r_wall,/area/ai_upload_foyer) +"aRU" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/open,/area/engineering/engine_balcony) +"aRV" = (/obj/machinery/computer/atmos_alert{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aRW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aRX" = (/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aRY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aRZ" = (/obj/machinery/computer/station_alert{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSa" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) +"aSb" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aSc" = (/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aSd" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aSe" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aSf" = (/obj/structure/railing{dir = 1},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aSg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aSh" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aSi" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSm" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSq" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSr" = (/turf/simulated/wall,/area/hallway/station/_02) +"aSs" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/open,/area/engineering/engine_balcony) +"aSt" = (/obj/machinery/computer/security/engineering{dir = 4},/obj/effect/floor_decal/corner/yellow{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSu" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSv" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSw" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSx" = (/obj/machinery/computer/rcon{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSy" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aSz" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/engineering/foyer_mezzenine) +"aSA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aSB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aSC" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/up{tag = "icon-pipe-u (WEST)"; icon_state = "pipe-u"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aSD" = (/obj/structure/sign/deck2,/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/station/_02) +"aSE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSJ" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/engine_balcony) +"aSK" = (/obj/structure/railing,/turf/simulated/open,/area/engineering/engine_balcony) +"aSL" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/engine_balcony) +"aSM" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Engine Waste")},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSP" = (/obj/machinery/computer/security/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSQ" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aSR" = (/obj/structure/railing,/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aSS" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aST" = (/turf/simulated/floor/holofloor/tiled/dark,/area/engineering/foyer_mezzenine) +"aSU" = (/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aSV" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aSW" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aSX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSY" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aSZ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aTa" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1441; name = "Tank Monitor"; sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank")},/obj/effect/floor_decal/corner/yellow/full{tag = "icon-corner_white_full (EAST)"; icon_state = "corner_white_full"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTb" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTd" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTf" = (/obj/machinery/door/airlock/glass_engineering,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{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},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTg" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aTh" = (/obj/structure/catwalk,/obj/structure/disposalpipe/junction,/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aTi" = (/obj/structure/catwalk,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aTj" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up,/turf/simulated/floor/plating,/area/maintenance/station/_03) +"aTk" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/station/_01) +"aTl" = (/turf/simulated/wall/r_wall,/area/hallway/station/_01) +"aTm" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aTn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aTo" = (/obj/structure/catwalk,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/open,/area/engineering/engine_balcony) +"aTp" = (/obj/structure/catwalk,/obj/machinery/light,/turf/simulated/open,/area/engineering/engine_balcony) +"aTq" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/open,/area/engineering/engine_balcony) +"aTr" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/open,/area/engineering/engine_balcony) +"aTs" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/open,/area/engineering/engine_balcony) +"aTt" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTw" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTx" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTy" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aTz" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring) +"aTA" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aTB" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aTC" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/open,/area/engineering/foyer_mezzenine) +"aTD" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down{dir = 1},/turf/simulated/open,/area/maintenance/station/_03) +"aTE" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{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,/area/hallway/station/_01) +"aTF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aTG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aTH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aTI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aTJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aTK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/glass,/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,/area/hallway/station/_01) +"aTL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aTM" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aTN" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aTO" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/_02) +"aTP" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) +"aTQ" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) +"aTR" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/engineering/engineering_monitoring) +"aTS" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/foyer_mezzenine) +"aTT" = (/obj/machinery/door/airlock/glass_engineering,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/foyer_mezzenine) +"aTU" = (/obj/machinery/door/airlock/glass_engineering,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer_mezzenine) +"aTV" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aTW" = (/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aTX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aTY" = (/turf/simulated/wall/r_wall,/area/medical/virology) +"aTZ" = (/turf/simulated/wall/r_wall,/area/medical/virologyisolation) +"aUa" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) +"aUb" = (/turf/simulated/wall,/area/maintenance/station/_10) +"aUc" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/station/_01) +"aUd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUe" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUh" = (/obj/machinery/light{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUi" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUj" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUk" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUl" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUm" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUn" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUq" = (/obj/structure/bed/padded,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUr" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/virology) +"aUt" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/extinguisher,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUu" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUv" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUw" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = 29},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUx" = (/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUy" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUz" = (/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUA" = (/obj/machinery/smartfridge/secure/virology,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aUB" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/green,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aUC" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aUD" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aUE" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aUF" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aUG" = (/obj/structure/closet/secure_closet/personal/patient,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/obj/item/clothing/shoes/white,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aUH" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) +"aUI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUX" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aUZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVb" = (/obj/structure/table/standard,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVc" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVd" = (/obj/machinery/door/window/westright{name = "Virology Isolation Room Two"; req_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVe" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVg" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVj" = (/obj/structure/table/glass,/obj/item/device/antibody_scanner{pixel_x = 2; pixel_y = 2},/obj/item/device/antibody_scanner,/obj/structure/reagent_dispensers/virusfood{pixel_x = 30},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVk" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/green,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVm" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVn" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVp" = (/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVq" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) +"aVr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVs" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVt" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVu" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVx" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVy" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVA" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVE" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVF" = (/obj/machinery/light,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVH" = (/obj/structure/flora/pottedplant{tag = "icon-plant-01"; icon_state = "plant-01"},/turf/simulated/floor/tiled,/area/hallway/station/_01) +"aVI" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVK" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVL" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVM" = (/obj/machinery/disease2/diseaseanalyser,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aVN" = (/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVO" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVP" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVQ" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/cups,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aVR" = (/turf/simulated/floor,/area/maintenance/station/_10) +"aVS" = (/turf/simulated/wall,/area/hallway/station/_01) +"aVT" = (/turf/simulated/wall,/area/storage/tech) +"aVU" = (/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access = list(23)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) +"aVV" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/tech) +"aVW" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/station/_01) +"aVX" = (/turf/simulated/wall,/area/tether/station/stairs_three) +"aVY" = (/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 8},/obj/structure/sign/directions/elevator{dir = 4},/turf/simulated/wall,/area/tether/station/stairs_three) +"aVZ" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aWa" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aWb" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aWc" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) +"aWd" = (/turf/simulated/wall,/area/maintenance/substation/medical) +"aWe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/turf/simulated/floor/plating,/area/medical/virology) +"aWf" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWh" = (/obj/machinery/disposal,/obj/effect/floor_decal/industrial/warning/full,/obj/structure/sign/deathsposal{pixel_x = 32; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWi" = (/obj/machinery/computer/diseasesplicer{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWj" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWk" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWl" = (/obj/machinery/door/airlock/glass_medical{name = "Virology Laboratory"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aWn" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aWo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aWp" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Quarantine Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aWq" = (/obj/machinery/vending/assist,/turf/simulated/floor,/area/storage/tech) +"aWr" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/storage/tech) +"aWs" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Starboard"; dir = 2},/turf/simulated/floor,/area/storage/tech) +"aWt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) +"aWu" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/storage/tech) +"aWv" = (/obj/structure/table/steel,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/storage/tech) +"aWw" = (/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/storage/tech) +"aWx" = (/turf/space/cracked_asteroid,/area/mine/explored/upper_level) +"aWy" = (/obj/machinery/light/small{dir = 1},/turf/simulated/open,/area/tether/station/stairs_three) +"aWz" = (/turf/simulated/open,/area/tether/station/stairs_three) +"aWA" = (/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aWB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aWC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aWD" = (/turf/simulated/wall,/area/maintenance/station/_09) +"aWE" = (/turf/simulated/floor/plating,/area/maintenance/station/_09) +"aWF" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) +"aWG" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/substation/medical) +"aWH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/substation/medical) +"aWI" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Medical Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/medical) +"aWJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWK" = (/obj/machinery/disease2/isolator,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWL" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/centrifuge,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWM" = (/obj/machinery/disease2/incubator,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aWN" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aWO" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aWP" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aWQ" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aWR" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating,/area/storage/tech) +"aWS" = (/turf/simulated/floor,/area/storage/tech) +"aWT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) +"aWU" = (/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/storage/tech) +"aWV" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/storage/tech) +"aWW" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/storage/tech) +"aWX" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) +"aWY" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aWZ" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aXa" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/plating,/area/maintenance/station/_09) +"aXb" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) +"aXc" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/substation/medical) +"aXd" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Medical"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/substation/medical) +"aXe" = (/obj/machinery/door/window/westright{name = "Virology Isolation Room One"; req_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXg" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXh" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXi" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXj" = (/obj/structure/table/glass,/obj/item/weapon/storage/lockbox/vials,/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/syringe/antiviral,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXk" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/green,/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXp" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXq" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/unary_atmos/heater,/obj/item/weapon/circuitboard/unary_atmos/cooler{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) +"aXr" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/arcade/orion_trail{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/jukebox{pixel_x = 0; pixel_y = 0},/obj/item/weapon/circuitboard/message_monitor{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/arcade/battle{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/plating,/area/storage/tech) +"aXs" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) +"aXt" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/powermonitor{pixel_x = 0; pixel_y = 3},/obj/item/weapon/circuitboard/stationalert_engineering{pixel_x = 2; pixel_y = 1},/obj/item/weapon/circuitboard/security/engineering{pixel_x = 5; pixel_y = -1},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = 6; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) +"aXu" = (/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/storage/tech) +"aXv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/storage/tech) +"aXw" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled/dark,/area/storage/tech) +"aXx" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/robotics{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/mecha_control{pixel_x = 1; pixel_y = -1},/turf/simulated/floor/tiled/dark,/area/storage/tech) +"aXy" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) +"aXz" = (/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aXA" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aXB" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/station/_09) +"aXC" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) +"aXD" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/substation/medical) +"aXE" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/plating,/area/maintenance/substation/medical) +"aXF" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Medbay Subgrid"; name_tag = "Medbay Subgrid"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/substation/medical) +"aXG" = (/obj/item/roller,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXI" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXJ" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/vials,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aXK" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/green,/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXL" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXN" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aXO" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor,/area/storage/tech) +"aXP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/storage/tech) +"aXQ" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/security/mining{pixel_x = 1; pixel_y = 3},/obj/item/weapon/circuitboard/autolathe,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/circuitboard/scan_consolenew{pixel_x = 6; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) +"aXR" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) +"aXS" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/secure_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/security{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/skills{pixel_x = 4; pixel_y = -3},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/tech) +"aXT" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access = list(19,23)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/storage/tech) +"aXU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/storage/tech) +"aXV" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/card{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/communications{pixel_x = 5; pixel_y = -5},/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/storage/tech) +"aXW" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/grille,/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/plating,/area/storage/tech) +"aXX" = (/obj/structure/sign/deck2,/turf/simulated/wall,/area/tether/station/stairs_three) +"aXY" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aXZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYa" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYb" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/station/_09) +"aYc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/station/_09) +"aYd" = (/turf/simulated/wall/r_wall,/area/medical/chemistry) +"aYe" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/hand_labeler,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aYf" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 8},/obj/item/device/radio{anchored = 1; broadcasting = 0; canhear_range = 7; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; listening = 1; name = "Virology Emergency Phone"; pixel_x = -6; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aYg" = (/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aYh" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aYi" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/medical/virology) +"aYj" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aYk" = (/obj/item/weapon/storage/box/syringes{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/beakers,/obj/item/weapon/reagent_containers/dropper,/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aYl" = (/turf/simulated/wall/r_wall,/area/medical/virologyaccess) +"aYm" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/wall/r_wall,/area/medical/virologyaccess) +"aYn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aYo" = (/obj/machinery/disposal,/obj/effect/floor_decal/industrial/warning/full,/obj/structure/sign/deathsposal{pixel_x = 32; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyisolation) +"aYp" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) +"aYq" = (/obj/machinery/requests_console{department = "Tech storage"; pixel_x = -28; pixel_y = 0},/turf/simulated/floor,/area/storage/tech) +"aYr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/storage/tech) +"aYs" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/weapon/circuitboard/transhuman_synthprinter{pixel_x = -3; pixel_y = 4},/obj/item/weapon/circuitboard/rdconsole{pixel_x = 0; pixel_y = 2},/obj/item/weapon/circuitboard/destructive_analyzer,/obj/item/weapon/circuitboard/protolathe{pixel_x = 3; pixel_y = -2},/obj/item/weapon/circuitboard/rdserver{pixel_x = 6; pixel_y = -4},/turf/simulated/floor/plating,/area/storage/tech) +"aYt" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/storage/tech) +"aYu" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/weapon/circuitboard/transhuman_clonepod{pixel_x = -2; pixel_y = 3},/obj/item/weapon/circuitboard/resleeving_control{pixel_x = 0; pixel_y = 1},/obj/item/weapon/circuitboard/body_designer{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/med_data{pixel_x = 5; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) +"aYv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/storage/tech) +"aYw" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5; pixel_y = 0},/obj/item/device/integrated_electronics/wirer{pixel_x = 5; pixel_y = 0},/turf/simulated/floor/plating,/area/storage/tech) +"aYx" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/storage/tech) +"aYy" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/storage/tech) +"aYz" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/borgupload{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/transhuman_resleever{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/tiled/dark,/area/storage/tech) +"aYA" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYB" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYC" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open"; icon_state = "door_open"; dir = 2},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYD" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYH" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aYI" = (/obj/machinery/chemical_dispenser/full,/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aYJ" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aYK" = (/obj/structure/table/reinforced,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aYL" = (/obj/machinery/chemical_dispenser/full,/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aYM" = (/obj/machinery/door/airlock/glass_medical{name = "Virology Laboratory"; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virology) +"aYN" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aYO" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/tvalve/bypass,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plating,/area/medical/virologyaccess) +"aYP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/virologyaccess) +"aYQ" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virologyq_airlock_exterior"; locked = 1; name = "Virology Quarantine Airlock"; req_access = list(39)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "virologyq_airlock_control"; name = "Virology Quarantine Access Button"; pixel_x = 24; pixel_y = 0; req_access = list(39)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aYR" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/catwalk,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_10) +"aYS" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_10) +"aYT" = (/obj/structure/catwalk,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/_10) +"aYU" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/storage/tech) +"aYV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/storage/tech) +"aYW" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/storage/tech) +"aYX" = (/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/turf/simulated/floor/plating,/area/storage/tech) +"aYY" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/tech) +"aYZ" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/tech) +"aZa" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) +"aZb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aZc" = (/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open (NORTH)"; icon_state = "door_open"; dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aZd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aZe" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/tether/station/stairs_three) +"aZf" = (/turf/simulated/wall,/area/medical/medbay_primary_storage) +"aZg" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/medical/medbay_primary_storage) +"aZh" = (/obj/structure/sign/department/chem,/turf/simulated/wall/r_wall,/area/medical/chemistry) +"aZi" = (/obj/machinery/chem_master,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZj" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZk" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZl" = (/obj/machinery/chem_master,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZm" = (/obj/structure/closet/l3closet/virology,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZo" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZq" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZr" = (/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZs" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZt" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZv" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "virologyq_airlock_control"; name = "Virology Quarantine Access Console"; pixel_x = 22; pixel_y = 0; tag_exterior_door = "virologyq_airlock_exterior"; tag_interior_door = "virologyq_airlock_interior"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZw" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "virologyq_airlock_control"; name = "Virology Quarantine Access Button"; pixel_x = -28; pixel_y = 0; req_access = list(39)},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZy" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/closet/l3closet/virology,/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Quarantine Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) +"aZA" = (/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"aZB" = (/obj/machinery/status_display{layer = 4; pixel_x = -32; pixel_y = 0},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/autolathe,/obj/item/weapon/circuitboard/partslathe,/obj/machinery/light/small,/turf/simulated/floor,/area/storage/tech) +"aZC" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/device/analyzer/plant_analyzer,/obj/item/device/healthanalyzer,/obj/item/device/analyzer,/obj/item/device/analyzer,/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/plating,/area/storage/tech) +"aZD" = (/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flash,/obj/item/device/flash,/obj/structure/table/steel,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/plating,/area/storage/tech) +"aZE" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/clothing/gloves/yellow,/obj/item/device/t_scanner,/obj/item/clothing/glasses/meson,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) +"aZF" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/ai_status_display{pixel_x = 32; pixel_y = 0},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/tech) +"aZG" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"aZH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/standard,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"aZI" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"aZJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"aZK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"aZL" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZM" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZQ" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"aZR" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZS" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZT" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZU" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "virologyquar"; name = "Virology Emergency Lockdown Control"; pixel_x = 0; pixel_y = -28; req_access = list(5)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZV" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"aZZ" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"baa" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virologyq_airlock_interior"; locked = 1; name = "Virology Quarantine Airlock"; req_access = list(39)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bab" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bac" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bad" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bae" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_10) +"baf" = (/obj/structure/table/wooden_reinforced,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bag" = (/obj/structure/table/wooden_reinforced,/obj/machinery/chemical_dispenser/bar_soft,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bah" = (/obj/structure/table/wooden_reinforced,/obj/machinery/photocopier/faxmachine,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bai" = (/obj/machinery/light{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"baj" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bak" = (/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bal" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bam" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/bridge/meeting_room) +"ban" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bao" = (/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bap" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"baq" = (/obj/structure/window/basic{tag = "icon-window (EAST)"; icon_state = "window"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bar" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bas" = (/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bat" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bau" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bav" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"baw" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bax" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/wall/r_wall,/area/medical/virologyaccess) +"bay" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/structure/closet/l3closet/virology,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"baz" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"baA" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/storage/box/cups,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"baB" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"baC" = (/obj/machinery/atmospherics/unary/freezer{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) +"baD" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"; tag = "icon-manifold-f (NORTH)"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"baE" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/weapon/storage/toolbox/emergency,/obj/item/bodybag/cryobag{pixel_x = -3},/obj/item/bodybag/cryobag{pixel_x = -3},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"baF" = (/obj/machinery/atmospherics/pipe/zpipe/up{tag = "icon-up (WEST)"; icon_state = "up"; dir = 8},/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"baG" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"baH" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"baI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"baJ" = (/obj/structure/closet/secure_closet/chemical,/obj/item/weapon/storage/box/pillbottles,/obj/item/device/radio/headset/headset_med,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"baK" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/closet/wardrobe/virology_white,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 8; pixel_y = 28; req_access = list(39)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"baL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"baM" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -5; pixel_y = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/turf/simulated/floor/tiled/steel,/area/medical/virologyaccess) +"baN" = (/turf/simulated/wall/r_wall,/area/maintenance/station/_04) +"baO" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/station/_04) +"baP" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/maintenance/station/_04) +"baQ" = (/turf/simulated/floor,/area/maintenance/station/_04) +"baR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/command,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/bridge/meeting_room) +"baS" = (/obj/structure/table/wooden_reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"baT" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"baU" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"baV" = (/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"baW" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) +"baX" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"; tag = "icon-manifold-f (EAST)"},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"baY" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/adv{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/adv,/obj/effect/floor_decal/corner/red/full{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"baZ" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 0; pixel_y = 0},/obj/effect/floor_decal/corner/green/full{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"bba" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bbb" = (/obj/structure/window/basic{tag = "icon-window (NORTH)"; icon_state = "window"; dir = 1},/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bbc" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/dropper,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/reinforced,/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbd" = (/obj/structure/closet/secure_closet/medical1,/obj/item/weapon/storage/box/pillbottles,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbe" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/closet/l3closet/virology,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bbf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bbg" = (/obj/structure/table/steel,/obj/machinery/light_switch{pixel_x = 26; pixel_y = 0},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Airlock"; dir = 8},/obj/random/medical,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bbh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/_04) +"bbi" = (/obj/structure/ladder/up,/turf/simulated/floor,/area/maintenance/station/_04) +"bbj" = (/turf/simulated/open,/area/bridge/meeting_room) +"bbk" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/bridge/meeting_room) +"bbl" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/bridge/meeting_room) +"bbm" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/bridge/meeting_room) +"bbn" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge/meeting_room) +"bbo" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bbp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bbq" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start{name = "Command Secretary"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"bbr" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/book/manual/security_space_law,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"bbs" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/folder/red,/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"bbt" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"bbu" = (/obj/machinery/camera/network/command{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9; c_tag = "Gateway Access"},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bbv" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) +"bbw" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 0; pixel_y = 0},/obj/effect/floor_decal/corner/paleblue/full,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"bbx" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/fire{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = 0; pixel_y = 0},/obj/effect/floor_decal/corner/yellow/full{tag = "icon-corner_white_full (EAST)"; icon_state = "corner_white_full"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"bby" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bbz" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/dropper,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbA" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/item/weapon/screwdriver,/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbC" = (/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/reinforced,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbD" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbE" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbF" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbG" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/structure/closet/l3closet/virology,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bbH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bbI" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/virologyaccess) +"bbJ" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/station/_04) +"bbK" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/turf/simulated/floor/tiled,/area/bridge/meeting_room) +"bbL" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/bridge/meeting_room) +"bbM" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/meeting_room) +"bbN" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/bridge/meeting_room) +"bbO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bbP" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"bbQ" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"bbR" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/folder/blue,/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"bbS" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) +"bbT" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Quarantine Airlock"; dir = 8},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bbU" = (/obj/machinery/door/airlock/glass_medical,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"bbV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/chemistry) +"bbW" = (/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access = list(39)},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; pixel_y = 0; req_access = list(39)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/medical/virologyaccess) +"bbX" = (/obj/structure/sign/department/virology,/turf/simulated/wall/r_wall,/area/medical/virologyaccess) +"bbY" = (/turf/simulated/wall/r_wall,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bbZ" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bca" = (/turf/simulated/wall,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/bridge/meeting_room) +"bcc" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/bridge/meeting_room) +"bcd" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/item/weapon/wrench,/turf/simulated/floor/tiled/steel,/area/medical/medbay_primary_storage) +"bce" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/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/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bcf" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/random/firstaid,/obj/random/firstaid,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bcg" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/syringes{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/syringes,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bch" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks{pixel_y = 0},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bci" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bcj" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/table/standard,/obj/random/medical,/obj/random/medical,/obj/item/device/flashlight,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bck" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/item/weapon/gun/launcher/syringe,/obj/item/weapon/storage/box/syringegun,/turf/simulated/floor/tiled,/area/medical/medbay_primary_storage) +"bcl" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcm" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcn" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Chemistry"; sortType = "Chemistry"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bco" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open"; icon_state = "door_open"; dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcp" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcq" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcr" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcs" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bct" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcu" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcv" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcw" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcx" = (/obj/machinery/door/airlock/maintenance/medical,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/bridge/meeting_room) +"bcz" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "32-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/open,/area/bridge/meeting_room) +"bcA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/bridge/meeting_room) +"bcB" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/bridge/meeting_room) +"bcC" = (/obj/structure/flora/pottedplant{icon_state = "plant-09"; name = "Steve"; pixel_y = 15; tag = "icon-plant-09"},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bcD" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bcE" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bcF" = (/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/wood,/area/bridge/meeting_room) +"bcG" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) +"bcH" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcI" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcJ" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcK" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcL" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open (NORTH)"; icon_state = "door_open"; dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcM" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcN" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcO" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (WEST)"; icon_state = "borderfloorcorner_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcP" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcQ" = (/turf/simulated/wall,/area/bridge/meeting_room) +"bcR" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcS" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcT" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcU" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcV" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcW" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (NORTH)"; icon_state = "borderfloorcorner_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcX" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcY" = (/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bcZ" = (/obj/structure/window/basic{dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bda" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdb" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdc" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdd" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bde" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdg" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdh" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdi" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdj" = (/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) +"bdk" = (/turf/simulated/wall,/area/medical/morgue) +"bdl" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/morgue) +"bdm" = (/obj/structure/sign/department/morgue,/turf/simulated/wall,/area/medical/morgue) +"bdn" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdo" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) +"bdr" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) +"bds" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/weapon/paper_bin{pixel_y = -6},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = -9},/obj/item/weapon/pen/blue{pixel_x = 3; pixel_y = -5},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdt" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue) +"bdw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdx" = (/obj/structure/morgue{tag = "icon-morgue1 (WEST)"; icon_state = "morgue1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdy" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdA" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) +"bdB" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 1; pressure_checks_default = 1; use_power = 1},/turf/simulated/floor/airless{icon_state = "asteroidplating2"},/area/medical/virologyaccess) +"bdC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/steel,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdD" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdE" = (/turf/simulated/floor/tiled,/area/medical/morgue) +"bdF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue) +"bdG" = (/obj/structure/morgue{tag = "icon-morgue1 (WEST)"; icon_state = "morgue1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdH" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{frequency = 1380; id_tag = "large_escape_pod_1_berth"; pixel_x = -26; pixel_y = 0; tag_door = "large_escape_pod_1_berth_hatch"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdI" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdJ" = (/obj/structure/filingcabinet/chestdrawer{desc = "A large drawer filled with autopsy reports."; name = "Autopsy Reports"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/morgue) +"bdN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdO" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "large_escape_pod_1_berth_hatch"; locked = 1; name = "Large Escape Pod 1"; req_access = list(13)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdR" = (/obj/machinery/optable,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdS" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdT" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station) +"bdU" = (/turf/simulated/shuttle/wall,/area/shuttle/large_escape_pod1/station) +"bdV" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "large_escape_pod_1_hatch"; locked = 1; name = "Large Escape Pod Hatch 1"; req_access = list(13)},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bdW" = (/obj/structure/sign/redcross,/turf/simulated/shuttle/wall,/area/shuttle/large_escape_pod1/station) +"bdX" = (/turf/simulated/mineral/floor,/area/hallway/secondary/escape/medical_escape_pod_hallway) +"bdY" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/medical/morgue) +"bdZ" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station) +"bea" = (/obj/structure/shuttle/engine/heater{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/airless,/area/shuttle/large_escape_pod1/station) +"beb" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 3.3},/obj/structure/window/reinforced{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bec" = (/obj/structure/bed/roller,/obj/structure/closet/walllocker/emerglocker{pixel_x = 0; pixel_y = 32},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bed" = (/obj/structure/bed/roller,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bee" = (/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "large_escape_pod_1"; pixel_x = -26; pixel_y = 26; tag_door = "large_escape_pod_1_hatch"},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bef" = (/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"beg" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"beh" = (/obj/structure/bed/chair,/obj/item/device/radio/intercom{broadcasting = 0; canhear_range = 5; dir = 1; frequency = 1487; icon_state = "intercom"; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = 21},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bei" = (/obj/structure/bed/chair,/obj/machinery/vending/wallmed1{layer = 3.3; name = "Emergency NanoMed"; pixel_x = 28; pixel_y = 0},/obj/structure/closet/walllocker/emerglocker{pixel_x = 0; pixel_y = 32},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bej" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/structure/table/steel,/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled,/area/medical/morgue) +"bek" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/pink/border,/obj/structure/table/steel,/obj/item/weapon/autopsy_scanner,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/cautery,/turf/simulated/floor/tiled,/area/medical/morgue) +"bel" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/pink/border,/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_y = -6},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = -9},/obj/item/weapon/pen/blue{pixel_x = 3; pixel_y = -5},/obj/item/device/camera{name = "Autopsy Camera"; pixel_x = -2; pixel_y = 7},/turf/simulated/floor/tiled,/area/medical/morgue) +"bem" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/pink/border,/obj/structure/table/steel,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/box/bodybags,/obj/machinery/light,/turf/simulated/floor/tiled,/area/medical/morgue) +"ben" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/pink/border,/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/tiled,/area/medical/morgue) +"beo" = (/obj/structure/morgue{tag = "icon-morgue1 (WEST)"; icon_state = "morgue1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/medical/morgue) +"bep" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"beq" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"ber" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/simulated/shuttle/plating,/area/shuttle/large_escape_pod1/station) +"bes" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/light,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bet" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4; pixel_y = 0},/obj/item/weapon/wrench,/obj/random/medical/lite,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"beu" = (/obj/structure/closet/crate/medical,/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/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = -32},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bev" = (/obj/machinery/sleeper{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bew" = (/obj/machinery/sleep_console,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bex" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light,/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bey" = (/obj/structure/bed/chair{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"bez" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/large_escape_pod1/station) +"beA" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/large_escape_pod1/station) +"beB" = (/turf/simulated/wall/r_wall,/area/security/tactical) +"beC" = (/turf/simulated/wall/r_wall,/area/security/armoury) +"beD" = (/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beE" = (/obj/machinery/camera/network/security,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beF" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beG" = (/turf/simulated/floor/tiled/dark,/area/security/armoury) +"beH" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"beI" = (/obj/machinery/camera/network/security,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"beJ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beK" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beL" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"beM" = (/turf/simulated/wall,/area/maintenance/substation/security) +"beN" = (/obj/machinery/camera/motion/security{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beQ" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beR" = (/obj/machinery/camera/motion/security{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"beS" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Security Subgrid"; name_tag = "Security Subgrid"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/security) +"beT" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Security"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/security) +"beU" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Security Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/security) +"beV" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beY" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"beZ" = (/obj/machinery/door/blast/regular,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bfa" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfc" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor,/area/maintenance/substation/security) +"bfd" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/security) +"bfe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/security) +"bff" = (/turf/simulated/wall,/area/maintenance/station/_08) +"bfg" = (/turf/simulated/wall/r_wall,/area/ai) +"bfh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bfi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bfj" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfm" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/armoury) +"bfn" = (/turf/simulated/floor/tiled,/area/security/armoury) +"bfo" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/armoury) +"bfp" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/security) +"bfq" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor,/area/maintenance/substation/security) +"bfr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/security) +"bfs" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_08) +"bft" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_08) +"bfu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall,/area/ai) +"bfv" = (/obj/machinery/porta_turret/ai_defense,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid,/area/ai) +"bfw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/command,/turf/simulated/floor/bluegrid,/area/ai) +"bfx" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/bluegrid,/area/ai) +"bfy" = (/obj/machinery/power/smes/buildable{charge = 5e+006; input_attempt = 1; input_level = 200000; output_level = 200000},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/bluegrid,/area/ai) +"bfz" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - AI Subgrid"; name_tag = "AI Subgrid"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/bluegrid,/area/ai) +"bfA" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/bluegrid,/area/ai) +"bfB" = (/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai) +"bfC" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bfD" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bfE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bfF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bfG" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bfH" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bfI" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfJ" = (/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bfN" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/armoury) +"bfO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/armoury) +"bfP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/armoury) +"bfQ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/security/armoury) +"bfR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/security) +"bfS" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/substation/security) +"bfT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/security) +"bfU" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/door/airlock/maintenance/int,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/_08) +"bfV" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai) +"bfW" = (/turf/simulated/floor/bluegrid,/area/ai) +"bfX" = (/turf/simulated/wall/durasteel,/area/ai) +"bfY" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/ai) +"bfZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"bga" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"bgb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/armoury) +"bgc" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/_08) +"bgd" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "32-4"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_08) +"bge" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_08) +"bgf" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/station/_08) +"bgg" = (/turf/simulated/floor,/area/maintenance/station/_08) +"bgh" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/station/_08) +"bgi" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_08) +"bgj" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/_08) +"bgk" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/bluegrid,/area/ai) +"bgl" = (/obj/effect/landmark/start{name = "AI"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/obj/item/device/radio/intercom{dir = 8; listening = 0; name = "Custom Channel"; pixel_x = -21; pixel_y = 10},/obj/item/device/radio/intercom{broadcasting = 0; dir = 4; frequency = 1343; name = "Private Channel"; pixel_x = 21; pixel_y = 10},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 30; pixel_y = 32},/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 32},/turf/simulated/floor/bluegrid,/area/ai) +"bgm" = (/turf/simulated/wall/r_wall,/area/security/warden) +"bgn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/security/warden) +"bgo" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bgp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/warden) +"bgq" = (/obj/structure/sign/department/armory,/turf/simulated/wall/r_wall,/area/security/prison) +"bgr" = (/obj/machinery/door/blast/regular,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/armoury) +"bgs" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/armoury) +"bgt" = (/obj/structure/sign/department/armory,/turf/simulated/wall,/area/security/armoury) +"bgu" = (/obj/machinery/door/airlock/maintenance/sec,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/security/breakroom) +"bgv" = (/turf/simulated/wall/r_wall,/area/security/breakroom) +"bgw" = (/turf/simulated/wall/r_wall,/area/security/security_bathroom) +"bgx" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_08) +"bgy" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{dir = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 20},/obj/item/device/radio/intercom{broadcasting = 0; dir = 2; frequency = 1343; name = "Private Channel"; pixel_x = 0; pixel_y = -21},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/ai) +"bgz" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bgA" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bgB" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bgC" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; name = "AI Core"; req_access = list(16)},/turf/simulated/floor/tiled/dark,/area/ai) +"bgD" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/machinery/turretid/stun{check_synth = 1; name = "AI Chamber turret control"; pixel_x = 30; pixel_y = 24},/obj/machinery/flasher{id = "AI"; pixel_x = -24; pixel_y = 25},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the AI core maintenance door."; id = "AICore"; name = "AI Maintenance Hatch"; pixel_x = 8; pixel_y = -25; req_access = list(16)},/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/ai) +"bgE" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bgF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bgG" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bgH" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{dir = 1; listening = 0; name = "Custom Channel"; pixel_x = 0; pixel_y = 21},/obj/item/device/radio/intercom{broadcasting = 0; frequency = 1343; name = "Private Channel"; pixel_x = 0; pixel_y = -21},/obj/item/device/radio/intercom{broadcasting = 1; dir = 4; listening = 1; name = "Common Channel"; pixel_x = 21; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/ai) +"bgI" = (/obj/machinery/vending/security,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHWEST)"; icon_state = "borderfloor_black"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bgJ" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 26},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bgK" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (NORTH)"; icon_state = "borderfloorcorner2_black"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bgL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bgM" = (/obj/structure/table/steel,/obj/machinery/photocopier/faxmachine,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHEAST)"; icon_state = "borderfloor_black"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (EAST)"; icon_state = "borderfloorcorner2_black"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bgN" = (/turf/simulated/open,/area/security/prison) +"bgO" = (/obj/machinery/light{dir = 1},/turf/simulated/open,/area/security/prison) +"bgP" = (/obj/machinery/camera/network/security,/turf/simulated/open,/area/security/prison) +"bgQ" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/open,/area/security/prison) +"bgR" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/security/breakroom) +"bgS" = (/turf/simulated/floor/wood,/area/security/breakroom) +"bgT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/security/breakroom) +"bgU" = (/obj/structure/table/steel,/obj/machinery/microwave,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/security/breakroom) +"bgV" = (/obj/structure/table/steel,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/item/weapon/storage/box/glasses/square,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/wood,/area/security/breakroom) +"bgW" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bgX" = (/obj/structure/toilet,/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bgY" = (/obj/machinery/light/small{dir = 1},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bgZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bha" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bhb" = (/obj/structure/closet/secure_closet/warden,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHWEST)"; icon_state = "borderfloor_black"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhc" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhd" = (/obj/effect/floor_decal/borderfloorblack/corner{tag = "icon-borderfloorcorner_black (WEST)"; icon_state = "borderfloorcorner_black"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhf" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhg" = (/obj/structure/railing,/turf/simulated/open,/area/security/prison) +"bhh" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/open,/area/security/prison) +"bhi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/security/breakroom) +"bhj" = (/obj/structure/bed/chair,/turf/simulated/floor/wood,/area/security/breakroom) +"bhk" = (/obj/structure/bed/chair,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/security/breakroom) +"bhl" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donkpockets,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/wood,/area/security/breakroom) +"bhm" = (/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bhn" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bho" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bhp" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bhq" = (/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/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bhr" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bhs" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (WEST)"; icon_state = "steel_decals6"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) +"bht" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhu" = (/obj/structure/table/steel,/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/device/retail_scanner/security,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (NORTHEAST)"; icon_state = "borderfloorcorner2_black"; dir = 5},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhv" = (/obj/structure/catwalk,/turf/simulated/open,/area/security/prison) +"bhw" = (/obj/structure/railing{tag = "icon-railing0 (WEST)"; icon_state = "railing0"; dir = 8},/turf/simulated/open,/area/security/prison) +"bhx" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"bhy" = (/obj/structure/table/glass,/obj/item/weapon/deck/cards,/turf/simulated/floor/wood,/area/security/breakroom) +"bhz" = (/obj/structure/table/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/security/breakroom) +"bhA" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/security/breakroom) +"bhB" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/wood,/area/security/breakroom) +"bhC" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bhD" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/bluegrid,/area/ai) +"bhE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"bhF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bhG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai) +"bhH" = (/turf/simulated/mineral,/area/security/warden) +"bhI" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhJ" = (/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhK" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/prison) +"bhL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/security/breakroom) +"bhM" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/security/breakroom) +"bhN" = (/obj/structure/table/glass,/turf/simulated/floor/wood,/area/security/breakroom) +"bhO" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/security/breakroom) +"bhP" = (/obj/machinery/camera/network/security{c_tag = "SEC - Equipment Storage"; dir = 9},/turf/simulated/floor/wood,/area/security/breakroom) +"bhQ" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bhR" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bhS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bhT" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bhU" = (/obj/machinery/door/airlock/highsecurity,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bhV" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhW" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhX" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (SOUTHEAST)"; icon_state = "borderfloorcorner2_black"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/machinery/computer/security{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bhY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/security/breakroom) +"bhZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"bia" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"bib" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"bic" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"bid" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"bie" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/security,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/security_bathroom) +"bif" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"big" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bih" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bii" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/security/security_bathroom) +"bij" = (/turf/simulated/wall/r_wall,/area/ai/foyer) +"bik" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bil" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bim" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bin" = (/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/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bio" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bip" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"biq" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHWEST)"; icon_state = "borderfloor_black"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bir" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bis" = (/obj/effect/floor_decal/borderfloorblack/corner{tag = "icon-borderfloorcorner_black (NORTH)"; icon_state = "borderfloorcorner_black"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) +"bit" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) +"biu" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/dark,/area/security/warden) +"biv" = (/obj/structure/railing{tag = "icon-railing0 (NORTH)"; icon_state = "railing0"; dir = 1},/turf/simulated/open,/area/security/prison) +"biw" = (/obj/structure/railing{tag = "icon-railing0 (NORTH)"; icon_state = "railing0"; dir = 1},/obj/structure/railing{tag = "icon-railing0 (EAST)"; icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/security/prison) +"bix" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/security/breakroom) +"biy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"biz" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"biA" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/security/breakroom) +"biB" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/security/breakroom) +"biC" = (/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHWEST)"; icon_state = "steel_decals10"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHWEST)"; icon_state = "steel_decals10"; dir = 10},/turf/simulated/floor/tiled,/area/security/security_bathroom) +"biD" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"biE" = (/turf/simulated/floor/bluegrid,/area/ai/foyer) +"biF" = (/obj/machinery/hologram/holopad,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai/foyer) +"biG" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"biH" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/mine/explored/upper_level) +"biI" = (/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/turf/simulated/wall,/area/mine/explored/upper_level) +"biJ" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 8},/turf/simulated/floor,/area/mine/explored/upper_level) +"biK" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor,/area/mine/explored/upper_level) +"biL" = (/obj/structure/table/steel,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/stamp/denied{pixel_x = 5},/obj/item/weapon/stamp/ward,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHWEST)"; icon_state = "borderfloor_black"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"biM" = (/obj/structure/table/steel,/obj/item/weapon/clipboard,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/device/binoculars,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/security/warden) +"biN" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (NORTHWEST)"; icon_state = "borderfloorcorner2_black"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/warden) +"biO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/warden) +"biP" = (/obj/machinery/computer/secure_data{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHEAST)"; icon_state = "borderfloor_black"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloorblack/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/security/warden) +"biQ" = (/obj/machinery/light,/turf/simulated/open,/area/security/prison) +"biR" = (/obj/structure/railing{tag = "icon-railing0 (EAST)"; icon_state = "railing0"; dir = 4},/turf/simulated/open,/area/security/prison) +"biS" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/breakroom) +"biT" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/breakroom) +"biU" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/_08) +"biV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"biW" = (/obj/machinery/ai_slipper{icon_state = "motion0"},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"biX" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai/foyer) +"biY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"biZ" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor,/area/mine/explored/upper_level) +"bja" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/mine/explored/upper_level) +"bjb" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/mine/explored/upper_level) +"bjc" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/mine/explored/upper_level) +"bjd" = (/obj/machinery/door/window/brigdoor/northleft,/obj/structure/table/steel,/obj/machinery/door/window/brigdoor/southleft,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/warden) +"bje" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/warden) +"bjf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/warden) +"bjg" = (/obj/structure/sign/department/prison,/turf/simulated/wall/r_wall,/area/security/prison) +"bjh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) +"bji" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"bjj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/hallway) +"bjk" = (/turf/simulated/wall/r_wall,/area/security/detectives_office) +"bjl" = (/obj/structure/closet/secure_closet/detective,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/gun/energy/taser,/obj/item/weapon/gun/energy/taser,/obj/item/weapon/reagent_containers/spray/pepper,/turf/simulated/floor/lino,/area/security/detectives_office) +"bjm" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/lino,/area/security/detectives_office) +"bjn" = (/obj/item/weapon/storage/secure/safe{pixel_x = 6; pixel_y = 28},/turf/simulated/floor/lino,/area/security/detectives_office) +"bjo" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bjp" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bjq" = (/obj/effect/landmark/start{name = "Detective"},/obj/structure/bed/chair/office/dark,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bjr" = (/obj/machinery/computer/security/wooden_tv,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bjs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bjt" = (/obj/structure/ladder{pixel_y = 16},/obj/structure/cable/cyan{icon_state = "32-1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/ai/foyer) +"bju" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bjv" = (/obj/structure/disposalpipe/tagger/partial{name = "partial tagger - Sorting Office"; sort_tag = "Sorting Office"},/turf/simulated/floor,/area/mine/explored/upper_level) +"bjw" = (/turf/simulated/floor,/area/mine/explored/upper_level) +"bjx" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor,/area/mine/explored/upper_level) +"bjy" = (/turf/simulated/wall/r_wall,/area/security/range) +"bjz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) +"bjA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) +"bjB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"bjC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHWEST)"; icon_state = "steel_decals6"; dir = 9},/turf/simulated/floor/tiled,/area/security/hallway) +"bjD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/security/hallway) +"bjE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/security/hallway) +"bjF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/hallway) +"bjG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) +"bjH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/hallway) +"bjI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) +"bjJ" = (/turf/simulated/floor/tiled,/area/security/hallway) +"bjK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bjL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/hallway) +"bjM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/security/hallway) +"bjN" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/lino,/area/security/detectives_office) +"bjO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/security/detectives_office) +"bjP" = (/turf/simulated/floor/lino,/area/security/detectives_office) +"bjQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/carpet,/area/security/detectives_office) +"bjR" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/carpet,/area/security/detectives_office) +"bjS" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bjT" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet,/area/security/detectives_office) +"bjU" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bjV" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bjW" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bjX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/command{c_tag = "AI - Cyborg Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/ai/foyer) +"bjY" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bjZ" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bka" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 8},/turf/simulated/floor/bluegrid,/area/ai/foyer) +"bkb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkc" = (/obj/structure/cable/green{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,/area/security/hallway) +"bkd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"bke" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkf" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) +"bkh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bki" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) +"bkj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) +"bkl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) +"bkm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bko" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/detectives_office) +"bkp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) +"bkq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/security/detectives_office) +"bkr" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/lino,/area/security/detectives_office) +"bks" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bkt" = (/obj/structure/table/woodentable,/obj/item/device/flash,/obj/item/weapon/handcuffs,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/turf/simulated/floor/carpet,/area/security/detectives_office) +"bku" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bkv" = (/obj/structure/table/woodentable,/obj/machinery/camera/network/security{c_tag = "SEC - Equipment Storage"; dir = 9},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bkw" = (/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/turf/simulated/floor,/area/mine/explored/upper_level) +"bkx" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/mine/explored/upper_level) +"bky" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/target_stake,/turf/simulated/floor/tiled/dark,/area/security/range) +"bkz" = (/turf/simulated/floor/tiled/dark,/area/security/range) +"bkA" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/turf/simulated/floor/tiled/dark,/area/security/range) +"bkB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/security/hallway) +"bkC" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) +"bkD" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/red/bordercorner,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/security/hallway) +"bkE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkF" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkH" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/hallway) +"bkJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/security/hallway) +"bkL" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHEAST)"; icon_state = "steel_decals6"; dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bkN" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/hallway) +"bkO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/security/hallway) +"bkP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/turf/simulated/floor/plating,/area/security/detectives_office) +"bkQ" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/photo_album{pixel_y = -10},/obj/item/device/camera_film,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30; pixel_x = 2; pixel_y = 3},/turf/simulated/floor/lino,/area/security/detectives_office) +"bkR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/security/detectives_office) +"bkS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/security/detectives_office) +"bkT" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/turf/simulated/floor,/area/mine/explored/upper_level) +"bkU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/hallway) +"bkV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"bkW" = (/turf/simulated/wall/r_wall,/area/security/briefing_room) +"bkX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/briefing_room) +"bkY" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/security/briefing_room) +"bkZ" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/hos) +"bla" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/hos) +"blb" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hos) +"blc" = (/turf/simulated/wall/r_wall,/area/security/forensics) +"bld" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/lino,/area/security/detectives_office) +"ble" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/security/detectives_office) +"blf" = (/turf/simulated/floor/carpet,/area/security/detectives_office) +"blg" = (/obj/effect/landmark/start{name = "Detective"},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/carpet,/area/security/detectives_office) +"blh" = (/obj/machinery/computer/security/wooden_tv,/turf/simulated/floor/carpet,/area/security/detectives_office) +"bli" = (/turf/simulated/wall,/area/maintenance/cargo) +"blj" = (/obj/structure/disposalpipe/sortjunction/wildcard{dir = 8},/turf/simulated/floor,/area/mine/explored/upper_level) +"blk" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor,/area/mine/explored/upper_level) +"bll" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/security/range) +"blm" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/security/range) +"bln" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/hallway) +"blo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/security/hallway) +"blp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"blq" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/security/briefing_room) +"blr" = (/obj/structure/table/standard,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/megaphone,/obj/item/weapon/packageWrap,/obj/item/weapon/storage/box,/obj/item/weapon/hand_labeler,/obj/item/device/universal_translator,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bls" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/security/briefing_room) +"blt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) +"blu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHWEST)"; icon_state = "steel_decals6"; dir = 9},/turf/simulated/floor/tiled,/area/security/briefing_room) +"blv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) +"blw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/security/briefing_room) +"blx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bly" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"blz" = (/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTHWEST)"; icon_state = "steel_decals3"; dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"blA" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/security/briefing_room) +"blB" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{pixel_x = -4; pixel_y = 8},/obj/item/device/taperecorder{pixel_y = 0},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHWEST)"; icon_state = "borderfloor_black"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"blC" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"blD" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (NORTH)"; icon_state = "borderfloorcorner2_black"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"blE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"blF" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorblack/corner2{tag = "icon-borderfloorcorner2_black (EAST)"; icon_state = "borderfloorcorner2_black"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"blG" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTH)"; icon_state = "borderfloor_black"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"blH" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (NORTHEAST)"; icon_state = "borderfloor_black"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"blI" = (/obj/effect/floor_decal/borderfloorwhite/cee{tag = "icon-borderfloorcee_white (NORTH)"; icon_state = "borderfloorcee_white"; dir = 1},/obj/effect/floor_decal/corner/red/bordercee,/obj/structure/closet{name = "Evidence Closet"},/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/briefcase/crimekit,/obj/item/weapon/storage/briefcase/crimekit,/turf/simulated/floor/tiled/white,/area/security/forensics) +"blJ" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/forensics) +"blK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/turf/simulated/floor/plating,/area/security/forensics) +"blL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/cargo) +"blM" = (/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/obj/structure/railing,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/maintenance/cargo) +"blN" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/cargo) +"blO" = (/turf/simulated/floor,/area/maintenance/cargo) +"blP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/mine/explored/upper_level) +"blQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/range) +"blR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"blS" = (/obj/structure/table/standard,/obj/item/clothing/accessory/badge/holo,/obj/item/clothing/accessory/badge/holo,/obj/item/clothing/accessory/badge/holo/cord,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"blT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/briefing_room) +"blU" = (/turf/simulated/floor/tiled,/area/security/briefing_room) +"blV" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/security/briefing_room) +"blW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) +"blX" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"blY" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled,/area/security/briefing_room) +"blZ" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/red_hos,/obj/item/weapon/pen/multi,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bma" = (/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bmb" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bmc" = (/obj/structure/bed/chair,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bmd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bme" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bmf" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bmg" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmh" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmi" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/disposal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/trunk,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmj" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmk" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bml" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/dnaforensics,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmm" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/reinforced,/obj/machinery/microscope,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmn" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmo" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/structure/railing{dir = 4},/turf/simulated/floor,/area/maintenance/cargo) +"bmp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) +"bmq" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/floor,/area/maintenance/cargo) +"bmr" = (/obj/structure/railing,/turf/simulated/floor,/area/maintenance/cargo) +"bms" = (/obj/structure/railing,/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/cargo) +"bmt" = (/obj/structure/railing,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/cargo) +"bmu" = (/obj/structure/railing,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/cargo) +"bmv" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/security/range) +"bmw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bmx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/hallway) +"bmy" = (/obj/structure/table/standard,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/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/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bmz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bmA" = (/obj/structure/table/glass,/obj/item/weapon/folder/red,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bmB" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bmC" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Head of Security"},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bmD" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{dir = 2; pixel_x = 10; pixel_y = 12},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bmE" = (/obj/structure/table/woodentable,/obj/item/weapon/stamp/hos,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bmF" = (/obj/structure/table/woodentable,/obj/machinery/computer/skills{pixel_y = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bmG" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bmH" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/closet{name = "Evidence Closet"},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmI" = (/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmL" = (/obj/machinery/door/window/westright,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmN" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit/powder,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bmO" = (/turf/simulated/wall,/area/security/forensics) +"bmP" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/_08) +"bmQ" = (/obj/structure/disposalpipe/tagger/partial{name = "partial tagger - Sorting Office"; sort_tag = "Sorting Office"},/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor,/area/maintenance/cargo) +"bmR" = (/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) +"bmS" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) +"bmT" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) +"bmU" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/cargo) +"bmV" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/security/range) +"bmW" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/range) +"bmX" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/range) +"bmY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"bmZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bna" = (/obj/structure/table/glass,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bnb" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bnc" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Forensics Lab"; sortType = "Forensics Lab"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bnd" = (/obj/structure/closet/secure_closet/security,/obj/effect/floor_decal/industrial/outline,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bne" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/heads/hos) +"bnf" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bng" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bnh" = (/obj/machinery/computer/security{tag = "icon-computer (EAST)"; icon_state = "computer"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bni" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/effect/landmark/start{name = "Head of Security"},/obj/machinery/button/remote/airlock{id = "HoSdoor"; name = "Office Door"; pixel_x = -36; pixel_y = 29},/obj/machinery/button/windowtint{pixel_x = -26; pixel_y = 30; req_access = list(58)},/obj/machinery/button/remote/blast_door{id = "security_lockdown"; name = "Brig Lockdown"; pixel_x = -36; pixel_y = 39; req_access = list(2)},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bnj" = (/obj/machinery/computer/secure_data{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"bnk" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bnl" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/closet{name = "Evidence Closet"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bno" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnp" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnq" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/swabs{layer = 5},/obj/item/weapon/folder/yellow{pixel_y = -5},/obj/item/weapon/folder/blue{pixel_y = -3},/obj/item/weapon/folder/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnr" = (/obj/machinery/computer/secure_data{tag = "icon-computer (NORTH)"; icon_state = "computer"; dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bns" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/luminol,/obj/item/device/uv_light,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnt" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/_08) +"bnu" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/cargo) +"bnv" = (/turf/simulated/wall,/area/quartermaster/delivery) +"bnw" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor,/area/quartermaster/delivery) +"bnx" = (/obj/machinery/door/airlock/maintenance/cargo,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/quartermaster/delivery) +"bny" = (/turf/simulated/wall,/area/quartermaster/office) +"bnz" = (/obj/machinery/door/window/northright,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled/dark,/area/security/range) +"bnA" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/projectile/shotgun/pump/rifle/practice,/obj/item/ammo_magazine/clip/a762/practice,/obj/item/ammo_magazine/clip/a762/practice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/range) +"bnB" = (/obj/machinery/door/window/northright,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/security/range) +"bnC" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/energy/laser/practice,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/range) +"bnD" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/gun/energy/laser/practice,/turf/simulated/floor/tiled/dark,/area/security/range) +"bnE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/hallway) +"bnF" = (/obj/structure/disposalpipe/sortjunction/flipped{name = "Security"; sortType = "Security"},/turf/simulated/floor/tiled,/area/security/hallway) +"bnG" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bnH" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bnI" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bnJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bnK" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bnL" = (/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (WEST)"; icon_state = "borderfloor_black"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bnM" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (EAST)"; icon_state = "borderfloor_black"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bnN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnO" = (/obj/machinery/door/window/westleft,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnQ" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/reinforced,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bnR" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/_08) +"bnS" = (/obj/machinery/door/airlock/maintenance/cargo,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/cargo) +"bnT" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor,/area/quartermaster/delivery) +"bnU" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bnV" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/sortjunction/untagged/flipped{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bnW" = (/obj/machinery/photocopier,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bnX" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bnY" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled,/area/security/range) +"bnZ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/security/range) +"boa" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/range) +"bob" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/security/range) +"boc" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/range) +"bod" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/range) +"boe" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bof" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/hallway) +"bog" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/security/hallway) +"boh" = (/obj/machinery/door/airlock/glass_security,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/briefing_room) +"boi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) +"boj" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bok" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bol" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bom" = (/obj/structure/filingcabinet,/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHWEST)"; icon_state = "borderfloor_black"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bon" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"boo" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 4},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bop" = (/obj/structure/table/woodentable,/obj/item/device/radio/off,/obj/item/device/megaphone,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"boq" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bor" = (/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bos" = (/obj/structure/closet/secure_closet/hos,/obj/item/clothing/suit/space/void/security/fluff/hos{armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10); species_restricted = null},/obj/item/clothing/head/helmet/space/void/security/fluff/hos{armor = list("melee" = 70, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 10); species_restricted = null},/obj/effect/floor_decal/borderfloorblack{tag = "icon-borderfloor_black (SOUTHEAST)"; icon_state = "borderfloor_black"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"bot" = (/turf/simulated/wall,/area/crew_quarters/heads/hos) +"bou" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/structure/closet{name = "Evidence Closet"},/turf/simulated/floor/tiled/white,/area/security/forensics) +"bov" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled/white,/area/security/forensics) +"bow" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/security/forensics) +"box" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/structure/closet{name = "Evidence Closet"},/turf/simulated/floor/tiled/white,/area/security/forensics) +"boy" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/structure/table/reinforced,/obj/item/weapon/hand_labeler,/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/white,/area/security/forensics) +"boz" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/machinery/dnaforensics,/turf/simulated/floor/tiled/white,/area/security/forensics) +"boA" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/red/border,/obj/machinery/chem_master,/turf/simulated/floor/tiled/white,/area/security/forensics) +"boB" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/table/reinforced,/obj/item/device/mass_spectrometer/adv,/obj/item/device/reagent_scanner,/turf/simulated/floor/tiled/white,/area/security/forensics) +"boC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_08) +"boD" = (/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor,/area/quartermaster/delivery) +"boE" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"boF" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Sorting Office"; sortType = "Sorting Office"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"boG" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"boH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"boI" = (/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"boJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/quartermaster/office) +"boK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/quartermaster/office) +"boL" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"boM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"boN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/quartermaster/office) +"boO" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"boP" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"boQ" = (/turf/simulated/floor/tiled,/area/quartermaster/office) +"boR" = (/obj/structure/flora/pottedplant{tag = "icon-plant-21"; icon_state = "plant-21"},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled,/area/quartermaster/office) +"boS" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/range) +"boT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/range) +"boU" = (/turf/simulated/floor/tiled,/area/security/range) +"boV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/range) +"boW" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/range) +"boX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/hallway) +"boY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"boZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpc" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpd" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/station/_08) +"bpe" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/_08) +"bpf" = (/obj/item/weapon/stool,/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bpg" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bph" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bpi" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bpj" = (/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bpk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bpl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bpm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bpn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Dock"; dir = 1; name = "security camera"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bpo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bpp" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bpq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bpr" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bps" = (/obj/structure/bed/chair/comfy/brown,/obj/structure/noticeboard{pixel_y = 27},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bpt" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/turf/simulated/floor/tiled,/area/security/range) +"bpu" = (/obj/structure/table/reinforced,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/turf/simulated/floor/tiled,/area/security/range) +"bpv" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/blanks{pixel_x = 2; pixel_y = -2},/obj/item/weapon/storage/box/blanks,/obj/item/ammo_magazine/clip/a762/practice,/turf/simulated/floor/tiled,/area/security/range) +"bpw" = (/obj/structure/table/reinforced,/obj/item/ammo_magazine/mc9mmt/practice,/obj/item/ammo_magazine/mc9mmt/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/obj/item/ammo_magazine/c45m/practice,/turf/simulated/floor/tiled,/area/security/range) +"bpx" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/turf/simulated/floor/tiled,/area/security/range) +"bpy" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/security/range) +"bpz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/hallway) +"bpA" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"bpB" = (/obj/structure/closet/wardrobe/red,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpC" = (/obj/structure/closet/wardrobe/red,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpD" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpE" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donut,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpF" = (/obj/structure/table/steel,/obj/item/weapon/book/codex,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpG" = (/obj/machinery/vending/security,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpH" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpI" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpJ" = (/obj/structure/table/steel,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpK" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpL" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTH)"; icon_state = "steel_decals3"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpN" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = -30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/briefing_room) +"bpO" = (/obj/machinery/door/airlock/maintenance/sec,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/security/briefing_room) +"bpP" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_06) +"bpQ" = (/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_06) +"bpR" = (/turf/simulated/wall/r_wall,/area/maintenance/station/_06) +"bpS" = (/obj/machinery/atmospherics/pipe/cap/hidden,/turf/simulated/floor/plating,/area/maintenance/station/_06) +"bpT" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/station/_03) +"bpU" = (/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bpV" = (/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bpW" = (/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bpX" = (/turf/simulated/wall,/area/storage/emergency_storage/emergency3) +"bpY" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/plating,/area/quartermaster/delivery) +"bpZ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bqa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bqb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bqc" = (/obj/structure/table/steel,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bqd" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqe" = (/obj/structure/sign/department/cargo,/turf/simulated/wall,/area/quartermaster/office) +"bqf" = (/obj/structure/sign/poster{pixel_x = 0; pixel_y = 0},/turf/simulated/wall,/area/quartermaster/office) +"bqg" = (/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table/standard,/obj/item/weapon/stamp/cargo,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqj" = (/obj/structure/table/standard,/obj/item/weapon/material/ashtray/glass,/obj/machinery/newscaster{pixel_x = 28; pixel_y = 0},/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/hallway) +"bql" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/hallway) +"bqm" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/hallway) +"bqn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/briefing_room) +"bqo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/briefing_room) +"bqp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/briefing_room) +"bqq" = (/obj/machinery/door/airlock/glass_security,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/briefing_room) +"bqr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) +"bqs" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_06) +"bqt" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable{tag = "icon-4-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,/area/maintenance/station/_06) +"bqu" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/station/_06) +"bqv" = (/turf/simulated/floor/holofloor/tiled/dark,/area/hallway/station/_03) +"bqw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bqx" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bqy" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/storage/emergency_storage/emergency3) +"bqz" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) +"bqA" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) +"bqB" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_08) +"bqC" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_08) +"bqD" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bqE" = (/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bqF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bqG" = (/obj/structure/table/steel,/obj/item/weapon/wrapping_paper,/obj/item/weapon/wrapping_paper,/obj/item/weapon/wrapping_paper,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bqH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/delivery) +"bqI" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bqJ" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bqK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bqL" = (/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bqM" = (/obj/machinery/computer/ordercomp,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bqN" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/structure/table/standard,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqP" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bqQ" = (/turf/simulated/wall/r_wall,/area/security/lobby) +"bqR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/security/lobby) +"bqS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/security/lobby) +"bqT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby) +"bqU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/vending/cola,/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/lobby) +"bqV" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) +"bqW" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) +"bqX" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/security/lobby) +"bqY" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/security/lobby) +"bqZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/lobby) +"bra" = (/obj/structure/table/steel,/obj/structure/flora/pottedplant{tag = "icon-plant-01"; icon_state = "plant-01"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/security/lobby) +"brb" = (/obj/structure/bed/chair/office/dark,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) +"brc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/security/lobby) +"brd" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) +"bre" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/security/lobby) +"brf" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/security/lobby) +"brg" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_06) +"brh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/structure/cable{tag = "icon-32-1"; icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_06) +"bri" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"brj" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/storage/emergency_storage/emergency3) +"brk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/storage/emergency_storage/emergency3) +"brl" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/storage/emergency_storage/emergency3) +"brm" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_08) +"brn" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/quartermaster/delivery) +"bro" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30; pixel_y = -1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"brp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"brq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"brr" = (/obj/structure/table/steel,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"brs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"brt" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bru" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/noticeboard{pixel_y = 27},/obj/machinery/door/window/brigdoor/eastright,/turf/simulated/floor/tiled,/area/quartermaster/office) +"brv" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"brw" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; name = "QM Office"; sortType = "QM Office"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) +"brx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bry" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/quartermaster/office) +"brz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled,/area/security/lobby) +"brA" = (/turf/simulated/floor/tiled,/area/security/lobby) +"brB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/security/lobby) +"brC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/security/lobby) +"brD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/security/lobby) +"brE" = (/obj/machinery/computer/secure_data,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/security/lobby) +"brF" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/security/lobby) +"brG" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/security/lobby) +"brH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/security/lobby) +"brI" = (/obj/structure/table/steel,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) +"brJ" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) +"brK" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/station/_06) +"brL" = (/turf/simulated/floor/plating,/area/maintenance/station/_06) +"brM" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) +"brN" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) +"brO" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/delivery) +"brP" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/light,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"brQ" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Cargo Technician"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"brR" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Dock"; dir = 1; name = "security camera"},/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"brS" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"brT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/office) +"brU" = (/obj/machinery/computer/supplycomp{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"brV" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled,/area/quartermaster/office) +"brW" = (/obj/structure/catwalk,/turf/simulated/floor,/area/mine/explored/upper_level) +"brX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/lobby) +"brY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/security/lobby) +"brZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby) +"bsa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) +"bsb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) +"bsc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/lobby) +"bsd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) +"bse" = (/obj/machinery/door/window/brigdoor/westleft,/obj/machinery/door/window/brigdoor/eastleft,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) +"bsf" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) +"bsg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) +"bsh" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/security/lobby) +"bsi" = (/obj/structure/table/steel,/obj/item/weapon/book/manual/security_space_law,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) +"bsj" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_06) +"bsk" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/railing{tag = "icon-railing0 (EAST)"; icon_state = "railing0"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/station/_06) +"bsl" = (/obj/structure/disposalpipe/down{tag = "icon-pipe-d (WEST)"; icon_state = "pipe-d"; dir = 8},/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_06) +"bsm" = (/obj/structure/sign/deck2,/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/station/_03) +"bsn" = (/obj/structure/sign/directions/cargo{dir = 4},/obj/structure/sign/directions/security{dir = 8; pixel_y = 8},/obj/structure/sign/directions/medical{pixel_y = -8},/turf/simulated/wall,/area/storage/emergency_storage/emergency3) +"bso" = (/obj/machinery/door/airlock{name = "Cargo Emergency Storage"},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency3) +"bsp" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_08) +"bsq" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/quartermaster/delivery) +"bsr" = (/obj/structure/sign/poster{pixel_x = 0; pixel_y = 0},/obj/structure/sign/department/mail,/turf/simulated/wall,/area/quartermaster/delivery) +"bss" = (/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bst" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/delivery) +"bsu" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/machinery/door/window/northright{name = "Mailing Room"; req_access = list(50)},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/delivery) +"bsv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bsw" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bsx" = (/obj/structure/table/standard,/obj/fiftyspawner/steel,/obj/item/device/multitool,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bsy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/lobby) +"bsz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) +"bsA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/security/lobby) +"bsB" = (/obj/machinery/computer/security{tag = "icon-computer (NORTH)"; icon_state = "computer"; dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/security/lobby) +"bsC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/security/lobby) +"bsD" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/donut,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/security/lobby) +"bsE" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/railing,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) +"bsF" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) +"bsG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bsH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bsI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bsJ" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bsK" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bsL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bsM" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bsN" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bsO" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bsP" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bsQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bsR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bsS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bsT" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bsU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/security/lobby) +"bsV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/security/lobby) +"bsW" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/security/lobby) +"bsX" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby) +"bsY" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby) +"bsZ" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/security/lobby) +"bta" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/security/lobby) +"btb" = (/obj/structure/table/steel,/obj/structure/flora/pottedplant{tag = "icon-plant-01"; icon_state = "plant-01"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/security/lobby) +"btc" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby) +"btd" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/security/lobby) +"bte" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/security/lobby) +"btf" = (/obj/structure/table/steel,/obj/machinery/photocopier/faxmachine,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/security/lobby) +"btg" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/down{dir = 1},/turf/simulated/open,/area/maintenance/station/_06) +"bth" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/structure/railing{tag = "icon-railing0 (WEST)"; icon_state = "railing0"; dir = 8},/turf/simulated/floor,/area/maintenance/station/_06) +"bti" = (/turf/simulated/wall/r_wall,/area/hallway/station/_03) +"btj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/machinery/camera/network/northern_star{c_tag = "DOCK - Dock 1 End"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btn" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bto" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"btr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"bts" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"btt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"btu" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"btv" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/office) +"btw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) +"btx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/quartermaster/office) +"bty" = (/obj/structure/table/standard,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/quartermaster/office) +"btz" = (/turf/simulated/wall,/area/hallway/station/_03) +"btA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/security/lobby) +"btB" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/security/lobby) +"btC" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/security/lobby) +"btD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/security/lobby) +"btE" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/railing{dir = 1},/turf/simulated/floor,/area/maintenance/station/_06) +"btF" = (/turf/simulated/wall,/area/maintenance/station/_06) +"btG" = (/turf/simulated/mineral,/area/hallway/station/_03) +"btH" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btN" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"btP" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"btQ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"btR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/camera/network/cargo{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5; c_tag = "CRG - Mining Airlock"},/turf/simulated/floor/tiled,/area/quartermaster/office) +"btS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/office) +"btT" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = -24},/obj/item/device/retail_scanner/civilian{tag = "icon-retail_idle (NORTH)"; icon_state = "retail_idle"; dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/office) +"btU" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/quartermaster/office) +"btV" = (/obj/structure/table/standard,/obj/item/weapon/tape_roll,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/turf/simulated/floor/tiled,/area/quartermaster/office) +"btW" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btY" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"btZ" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bua" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bub" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buc" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bud" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bue" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buf" = (/obj/structure/flora/pottedplant/tropical,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bug" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_06) +"buh" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bui" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buj" = (/obj/structure/closet/emcloset,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buk" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bul" = (/turf/simulated/wall,/area/medical/psych) +"bum" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) +"bun" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) +"buo" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) +"bup" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) +"buq" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled/dark,/area/hallway/station/_03) +"bur" = (/turf/simulated/wall,/area/quartermaster/qm) +"bus" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/qm) +"but" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access = list(41)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"buu" = (/turf/simulated/wall,/area/quartermaster/storage) +"buv" = (/obj/structure/symbol/pr,/turf/simulated/wall,/area/quartermaster/office) +"buw" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access = list(31)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/office) +"bux" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access = list(31)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/office) +"buy" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/quartermaster/office) +"buz" = (/obj/machinery/disposal,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 1; name = "Common Channel"; pixel_x = -21; pixel_y = 0},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buG" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buN" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/sortjunction/untagged{tag = "icon-pipe-j1s (WEST)"; icon_state = "pipe-j1s"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buP" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buR" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"buS" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 10; icon_state = "fwindow"; id = "psych-tint"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/psych) +"buT" = (/obj/structure/table/woodentable,/obj/structure/plushie/ian{dir = 8; icon_state = "ianplushie"; pixel_y = 6; tag = "icon-ianplushie (WEST)"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/medical/psych) +"buU" = (/obj/structure/table/woodentable,/obj/item/toy/therapy_blue,/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = 28},/turf/simulated/floor/wood,/area/medical/psych) +"buV" = (/obj/structure/bookcase,/turf/simulated/floor/wood,/area/medical/psych) +"buW" = (/obj/structure/flora/pottedplant/fern,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/wood,/area/medical/psych) +"buX" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/maintenance/station/_05) +"buY" = (/turf/simulated/wall,/area/maintenance/station/_05) +"buZ" = (/obj/structure/filingcabinet,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bva" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32; pixel_y = 30},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bvb" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bvc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bvd" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bve" = (/obj/machinery/status_display/supply_display,/turf/simulated/wall,/area/quartermaster/qm) +"bvf" = (/obj/machinery/navbeacon/delivery/south{location = "QM #1"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/mob/living/bot/mulebot,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvg" = (/obj/machinery/navbeacon/delivery/south{location = "QM #2"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/mob/living/bot/mulebot,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvh" = (/obj/machinery/navbeacon/delivery/south{location = "QM #3"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvj" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvk" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/item/weapon/stamp/cargo,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvl" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/storage/backpack/dufflebag,/obj/item/weapon/stamp/cargo,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvm" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvn" = (/obj/structure/closet/emcloset,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bvp" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bvD" = (/obj/machinery/door/airlock/medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/psych) +"bvE" = (/turf/simulated/floor/wood,/area/medical/psych) +"bvF" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/wood,/area/medical/psych) +"bvG" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/station/_05) +"bvH" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_05) +"bvI" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_05) +"bvJ" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/_05) +"bvK" = (/turf/simulated/floor,/area/maintenance/station/_05) +"bvL" = (/obj/machinery/computer/supplycomp{dir = 4},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Airlock"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bvM" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Quartermaster"},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bvN" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bvO" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bvP" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bvQ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Airlock"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvR" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvT" = (/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bvU" = (/turf/simulated/wall,/area/teleporter/departing) +"bvV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/teleporter/departing) +"bvW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/glass{name = "Long-Range Teleporter Access"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/teleporter/departing) +"bvX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/sign/directions/medical{dir = 4; pixel_x = 32; pixel_y = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/teleporter/departing) +"bvY" = (/obj/structure/sign/directions/cargo{dir = 4; pixel_y = -8},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = 8; tag = "icon-direction_sec (WEST)"},/turf/simulated/wall,/area/teleporter/departing) +"bvZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bwa" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bwb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bwc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bwd" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/_03) +"bwe" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/wood,/area/medical/psych) +"bwf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/_05) +"bwg" = (/obj/machinery/computer/security/mining{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bwh" = (/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bwi" = (/obj/structure/table/standard,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bwj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/mob/living/simple_animal/fluffy,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bwk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bwl" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access = list(41)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bwm" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwo" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwp" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; sortType = "Cargo Bay"; name = "Cargo Bay"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwq" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwr" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "QMLoad2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bws" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/quartermaster/storage) +"bwt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bwu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bwv" = (/turf/space,/area/supply/station) +"bww" = (/obj/structure/table/standard,/obj/item/weapon/storage/fancy/cigarettes{pixel_y = 2},/obj/item/weapon/deck/cards,/obj/item/weapon/book/codex,/obj/machinery/atm{pixel_y = 30},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"},/obj/effect/floor_decal/corner_steel_grid,/turf/simulated/floor/tiled,/area/teleporter/departing) +"bwx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/teleporter/departing) +"bwy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled,/area/teleporter/departing) +"bwz" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled,/area/teleporter/departing) +"bwA" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled,/area/teleporter/departing) +"bwB" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 26},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled,/area/teleporter/departing) +"bwC" = (/turf/simulated/wall,/area/tether/station/stairs_two) +"bwD" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bwE" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/sign/directions/medical{dir = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bwF" = (/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = 8; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/cargo{dir = 4; pixel_y = -8},/turf/simulated/wall,/area/medical/reception) +"bwG" = (/obj/structure/sign/department/medbay,/turf/simulated/wall,/area/medical/reception) +"bwH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/reception) +"bwI" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/medical/reception) +"bwJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/medical/reception) +"bwK" = (/turf/simulated/wall,/area/medical/reception) +"bwL" = (/obj/structure/sign/department/operational,/turf/simulated/wall,/area/medical/surgery_hallway) +"bwM" = (/obj/machinery/door/airlock/medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bwN" = (/obj/structure/sign/department/medbay,/turf/simulated/wall,/area/medical/surgery_hallway) +"bwO" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Quarantine Airlock"; dir = 8},/turf/simulated/floor/wood,/area/medical/psych) +"bwP" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_05) +"bwQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/_05) +"bwR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/_05) +"bwS" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_05) +"bwT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bwU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bwV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bwZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxc" = (/obj/effect/floor_decal/industrial/loading{tag = "icon-loadingarea (WEST)"; icon_state = "loadingarea"; dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxd" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/simulated/floor,/area/quartermaster/storage) +"bxe" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"; req_access = list(13)},/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bxf" = (/obj/structure/closet/wardrobe/xenos,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/turf/simulated/floor/tiled,/area/teleporter/departing) +"bxg" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHWEST)"; icon_state = "techfloororange_edges"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"bxh" = (/obj/effect/landmark{name = "JoinLateGateway"},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTH)"; icon_state = "techfloororange_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"bxi" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHEAST)"; icon_state = "techfloororange_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"bxj" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bxk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bxl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bxm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bxn" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bxo" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxp" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxq" = (/obj/structure/flora/pottedplant/minitree,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxt" = (/obj/structure/flora/pottedplant/minitree,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxu" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxv" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/weapon/backup_implanter{pixel_y = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxw" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxx" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxy" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/cups,/obj/item/weapon/storage/box/cups,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bxz" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bxA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bxB" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bxC" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bxD" = (/obj/structure/bed/psych,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bxE" = (/obj/item/weapon/clipboard,/obj/structure/table/woodentable,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bxF" = (/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bxG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bxH" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/pen{pixel_y = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bxI" = (/obj/structure/table/woodentable,/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bxJ" = (/obj/machinery/button/windowtint{id = "psych-tint"; pixel_x = 24},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bxK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_05) +"bxL" = (/obj/structure/table/standard,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bxM" = (/obj/structure/table/standard,/obj/item/weapon/coin/silver{pixel_x = -3; pixel_y = 3},/obj/item/weapon/coin/silver,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bxN" = (/obj/structure/closet/secure_closet/quartermaster,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bxO" = (/obj/structure/closet,/obj/item/weapon/storage/backpack/dufflebag,/turf/simulated/floor/tiled,/area/quartermaster/qm) +"bxP" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/cargo/engine,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxQ" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxS" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxT" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bxU" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"; req_access = list(13)},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bxV" = (/turf/simulated/floor,/area/quartermaster/storage) +"bxW" = (/obj/structure/closet/wardrobe/black,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/effect/floor_decal/corner_steel_grid{dir = 6},/turf/simulated/floor/tiled,/area/teleporter/departing) +"bxX" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"bxY" = (/obj/machinery/cryopod/robot/door/gateway,/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"bxZ" = (/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"bya" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"byb" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"byc" = (/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"byd" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bye" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"byf" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"byg" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byh" = (/turf/simulated/floor/tiled/white,/area/medical/reception) +"byi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/reception) +"byk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byl" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bym" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/crew{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byn" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (NORTH)"; icon_state = "borderfloorcorner_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byq" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/random/medical,/obj/random/medical,/turf/simulated/floor/tiled/white,/area/medical/reception) +"byr" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bys" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"byt" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"byu" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/psych) +"byv" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"byw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"byx" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"byy" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/white,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"byz" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"byA" = (/obj/machinery/door/airlock/maintenance/medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/medical/psych) +"byB" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_05) +"byC" = (/turf/simulated/wall,/area/quartermaster/warehouse) +"byD" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/cargo/trolley,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"byE" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "cargo_bay"; layer = 3.3; name = "cargo bay hatch controller"; pixel_x = 30; pixel_y = 0; req_one_access = list(13,31); tag_door = "cargo_bay_door"},/obj/machinery/camera/network/cargo{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9; c_tag = "CRG - Mining Airlock"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"byF" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/quartermaster/storage) +"byG" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHWEST)"; icon_state = "techfloororange_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"byH" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/hole,/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"byI" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"byJ" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"byK" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHEAST)"; icon_state = "techfloororange_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/teleporter/departing) +"byL" = (/obj/machinery/door/airlock/maintenance,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"byM" = (/obj/structure/sign/deck3,/turf/simulated/wall,/area/tether/station/stairs_two) +"byN" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"byO" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byP" = (/obj/structure/table/glass,/obj/machinery/door/window/westright,/turf/simulated/floor/tiled/white,/area/medical/reception) +"byQ" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byR" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/glass,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"byS" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"byT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"byU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"byV" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"byW" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"byX" = (/obj/machinery/light,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"byY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"byZ" = (/obj/structure/table/woodentable,/obj/structure/sign/poster{pixel_x = 0; pixel_y = -32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bza" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bzb" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"bzc" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/station/_05) +"bzd" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_05) +"bze" = (/obj/machinery/door/airlock/maintenance/cargo,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/quartermaster/warehouse) +"bzf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bzg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bzh" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bzi" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/module/power_control,/obj/item/weapon/cell{maxcharge = 2000},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bzj" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/cobweb,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera/network/cargo{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9; c_tag = "CRG - Mining Airlock"},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bzk" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/cargo/trolley,/obj/machinery/light{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bzl" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bzm" = (/turf/simulated/floor,/area/teleporter/departing) +"bzn" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bzo" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzp" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzs" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/crew{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzt" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzu" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/weapon/storage/box/body_record_disk,/obj/item/weapon/paper{desc = ""; info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; name = "Body Designer Note"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzv" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bzw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bzx" = (/turf/simulated/wall,/area/maintenance/substation/cargo) +"bzy" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/cargo) +"bzz" = (/obj/machinery/door/airlock/maintenance/engi,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/cargo) +"bzA" = (/obj/structure/closet/crate,/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bzB" = (/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bzC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bzD" = (/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bzE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bzF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/cargo/trolley,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bzG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bzH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bzI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bzJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bzK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bzL" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bzM" = (/obj/machinery/conveyor{dir = 10; icon_state = "conveyor0"; id = "QMLoad"; tag = "icon-conveyor0 (SOUTHWEST)"},/turf/simulated/floor,/area/quartermaster/storage) +"bzN" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "cargo_bay_door"; locked = 1; name = "Cargo Docking Hatch"; req_access = list(13)},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor/plating,/area/quartermaster/storage) +"bzO" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) +"bzP" = (/turf/simulated/open,/area/tether/station/stairs_two) +"bzQ" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzV" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/glass,/obj/structure/flora/pottedplant/smallcactus{pixel_y = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzW" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzY" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bzZ" = (/turf/simulated/wall,/area/medical/surgery_hallway) +"bAa" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bAb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/surgery) +"bAc" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bAd" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bAe" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery,/obj/item/weapon/surgical/FixOVein,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bAf" = (/obj/structure/table/standard,/obj/item/weapon/surgical/retractor,/obj/item/weapon/surgical/bonesetter,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bAg" = (/obj/structure/table/standard,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/hemostat,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bAh" = (/turf/simulated/wall,/area/medical/surgery) +"bAi" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bAj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bAk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bAl" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bAm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bAn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bAo" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bAp" = (/obj/machinery/door/blast/shutters{dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bAq" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bAr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bAs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bAt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bAu" = (/obj/machinery/conveyor{dir = 1; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) +"bAv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/storage) +"bAw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/quartermaster/storage) +"bAx" = (/obj/machinery/light/small,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bAy" = (/obj/structure/janitorialcart,/turf/simulated/floor/tiled,/area/tether/station/stairs_two) +"bAz" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/computer/transhuman/designer{tag = "icon-computer (EAST)"; icon_state = "computer"; dir = 4},/obj/item/weapon/paper{desc = ""; info = "Bodies designed on the design console must be saved to a disk to be used. The disks are kept by medical reception."; name = "Body Designer Note"},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bAA" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/medical/reception) +"bAB" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bAC" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/machinery/disposal,/turf/simulated/floor/tiled/white,/area/medical/reception) +"bAD" = (/obj/machinery/door/window/westright,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/reception) +"bAE" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/reception) +"bAF" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bAG" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bAH" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/medical/reception) +"bAI" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bAJ" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bAK" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bAL" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bAM" = (/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bAN" = (/obj/structure/table/standard,/obj/item/weapon/surgical/circular_saw,/obj/item/weapon/surgical/surgicaldrill,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bAO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/substation/cargo) +"bAP" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/substation/cargo) +"bAQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bAR" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bAS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bAT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bAU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/blast/shutters{dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters"},/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,/area/quartermaster/warehouse) +"bAV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bAW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bAX" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bAY" = (/obj/machinery/conveyor_switch/oneway{convdir = 1; id = "QMLoad"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bAZ" = (/turf/simulated/wall,/area/medical/resleeving) +"bBa" = (/turf/simulated/wall,/area/medical/sleeper) +"bBb" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBd" = (/turf/simulated/wall,/area/medical/medbay_emt_bay) +"bBe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/medbay_emt_bay) +"bBf" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bBg" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bBh" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bBi" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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/white,/area/medical/surgery) +"bBj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bBk" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bBl" = (/obj/machinery/computer/operating{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bBm" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bBn" = (/obj/item/stack/medical/advanced/bruise_pack{pixel_x = 2; pixel_y = 2},/obj/item/stack/medical/advanced/bruise_pack,/obj/structure/table/standard,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bBo" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Cargo Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bBp" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Cargo"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bBq" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Cargo Subgrid"; name_tag = "Cargo Subgrid"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/maintenance/substation/cargo) +"bBr" = (/obj/structure/closet/crate,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bBs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bBt" = (/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = 26; pixel_y = 0; req_access = list(31)},/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bBu" = (/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -26; pixel_y = 0; req_access = list(31)},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Airlock"; dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bBv" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bBw" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bBx" = (/obj/machinery/status_display/supply_display{pixel_y = -32},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) +"bBy" = (/obj/machinery/conveyor{dir = 5; icon_state = "conveyor0"; id = "QMLoad"},/turf/simulated/floor,/area/quartermaster/storage) +"bBz" = (/obj/structure/table/glass,/obj/item/device/flashlight/pen{pixel_x = 3; pixel_y = 3},/obj/item/device/flashlight/pen{pixel_x = -3; pixel_y = -3},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bBA" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bBB" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bBC" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/medical/resleeving) +"bBD" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bBE" = (/obj/structure/closet{name = "spare clothes"},/obj/item/clothing/under/color/black,/obj/item/clothing/under/color/black,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/white,/obj/item/clothing/under/color/blue,/obj/item/clothing/under/color/green,/obj/item/clothing/under/color/lightpurple,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bBF" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/resleeving) +"bBG" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBH" = (/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4; pixel_y = 0},/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBI" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/medical/sleeper) +"bBJ" = (/obj/structure/table/glass,/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 0; pixel_y = 32},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBK" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBL" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBM" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBN" = (/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBP" = (/obj/structure/flora/pottedplant/minitree,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bBQ" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bBR" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bBS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bBT" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bBU" = (/obj/structure/sign/goldenplaque{desc = "Done No Harm."; name = "Best Doctor 2552"; pixel_y = 32},/turf/simulated/floor/tiled,/area/medical/medbay_emt_bay) +"bBV" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bBW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bBX" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bBY" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bBZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bCa" = (/turf/simulated/wall,/area/maintenance/station/_04) +"bCb" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_04) +"bCc" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bCd" = (/obj/structure/closet/crate/internals,/obj/machinery/light/small,/turf/simulated/floor/tiled/steel,/area/quartermaster/warehouse) +"bCe" = (/obj/structure/closet/crate/medical,/turf/simulated/floor/tiled,/area/quartermaster/warehouse) +"bCf" = (/obj/machinery/status_display/supply_display,/turf/simulated/wall,/area/quartermaster/warehouse) +"bCg" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bCh" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bCi" = (/obj/structure/table/standard,/obj/item/clothing/head/soft,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/clothing/head/soft,/turf/simulated/floor/tiled,/area/quartermaster/storage) +"bCj" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/simulated/wall,/area/quartermaster/storage) +"bCk" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCn" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"; tag = "icon-intact-f (NORTHEAST)"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCo" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCp" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/resleeving) +"bCr" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCs" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCt" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCu" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCv" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCw" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCx" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCy" = (/obj/machinery/door/airlock/glass_medical,/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bCz" = (/obj/machinery/atmospherics/pipe/zpipe/down{tag = "icon-down (WEST)"; icon_state = "down"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bCA" = (/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bCB" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bCC" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/medical/medbay_emt_bay) +"bCD" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/masks,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bCE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bCF" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bCG" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bCH" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bCI" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery,/obj/item/weapon/surgical/FixOVein,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bCJ" = (/obj/structure/table/standard,/obj/item/weapon/surgical/retractor,/obj/item/weapon/surgical/bonesetter,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bCK" = (/obj/structure/table/standard,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/hemostat,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"bCL" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/_04) +"bCM" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_04) +"bCN" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_04) +"bCO" = (/obj/structure/lattice,/turf/simulated/mineral/floor/ignore_mapgen,/area/mine/explored/upper_level) +"bCP" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCS" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bCU" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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/white,/area/medical/resleeving) +"bCV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCW" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bCZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDb" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -2; pixel_y = -2},/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 2; pixel_y = 2},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDc" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/iv_drip,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bDd" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/wall,/area/medical/medbay_emt_bay) +"bDe" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bDf" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bDg" = (/turf/simulated/wall,/area/medical/surgery2) +"bDh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/_04) +"bDi" = (/obj/structure/ladder,/turf/simulated/floor,/area/maintenance/station/_04) +"bDj" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_04) +"bDk" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDm" = (/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDn" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDo" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDr" = (/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDs" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDt" = (/obj/machinery/sleeper{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDu" = (/obj/machinery/sleep_console,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDv" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (WEST)"; icon_state = "steel_decals10"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDy" = (/obj/structure/table/glass,/obj/item/device/defib_kit,/obj/item/device/defib_kit,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDz" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bDA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bDB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bDC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bDD" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/bed/chair/wheelchair,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bDE" = (/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/structure/table/standard,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bDF" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/surgery2) +"bDG" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bDH" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bDI" = (/obj/structure/table/standard,/obj/item/weapon/surgical/retractor,/obj/item/weapon/surgical/bonesetter,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bDJ" = (/obj/structure/table/standard,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/surgical/hemostat,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bDK" = (/obj/structure/table/standard,/obj/item/weapon/surgical/circular_saw,/obj/item/weapon/surgical/surgicaldrill,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bDL" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/station/_04) +"bDM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/_04) +"bDN" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_04) +"bDO" = (/obj/machinery/computer/transhuman/resleeving{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDP" = (/obj/item/weapon/book/manual/resleeving,/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDQ" = (/obj/machinery/clonepod/transhuman,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDR" = (/obj/machinery/transhuman/resleever,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDS" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDT" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/resleeving) +"bDU" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/roller,/obj/item/roller{pixel_y = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDV" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDW" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (NORTHEAST)"; icon_state = "steel_grid"; dir = 5},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDX" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDY" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bDZ" = (/obj/structure/table/glass,/obj/item/weapon/screwdriver,/obj/item/weapon/storage/pill_bottle/tramadol,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bEa" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bEb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bEc" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/bed/chair/wheelchair,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bEd" = (/obj/structure/table/standard,/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/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bEe" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bEf" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEh" = (/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEi" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery,/obj/item/weapon/surgical/FixOVein,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/_04) +"bEk" = (/turf/simulated/wall,/area/crew_quarters/heads/cmo) +"bEl" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/recharger,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bEm" = (/obj/machinery/bodyscanner{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bEn" = (/obj/machinery/body_scanconsole,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bEo" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/recharger,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bEp" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/item/weapon/hand_labeler,/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bEq" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bEr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bEs" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/table/glass,/obj/random/medical,/obj/random/medical,/obj/item/device/flashlight/pen,/obj/item/device/flashlight/pen,/obj/item/device/flashlight/pen,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bEt" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/random/medical,/obj/random/medical,/obj/item/device/glasses_kit,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bEu" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bEv" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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/white,/area/medical/surgery2) +"bEw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEx" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEy" = (/obj/machinery/computer/operating{tag = "icon-computer (NORTH)"; icon_state = "computer"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEz" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEA" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/table/standard,/obj/item/stack/medical/advanced/bruise_pack,/obj/item/stack/medical/advanced/bruise_pack,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEB" = (/turf/simulated/open,/area/medical/surgery_hallway) +"bEC" = (/obj/machinery/light{dir = 1},/turf/simulated/open,/area/medical/surgery_hallway) +"bED" = (/obj/structure/flora/pottedplant{tag = "icon-plant-01"; icon_state = "plant-01"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEE" = (/obj/structure/filingcabinet/chestdrawer{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEF" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop{pixel_x = 3; pixel_y = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEG" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEH" = (/obj/structure/closet/secure_closet/CMO,/obj/item/weapon/cmo_disk_holder,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEI" = (/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) +"bEK" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bEL" = (/obj/structure/filingcabinet/chestdrawer{name = "scan records"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bEM" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/medbay_emt_bay) +"bEN" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/camera/network/medbay{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bEO" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bEQ" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bER" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bES" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bET" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEU" = (/obj/structure/bed/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEV" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEX" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bEY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bEZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFc" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/structure/table/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFd" = (/obj/machinery/sleeper{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFe" = (/obj/machinery/sleep_console,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFf" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (WEST)"; icon_state = "steel_decals10"; dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{name = "CMO Office"; sortType = "CMO Office"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFi" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFj" = (/obj/structure/sink{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFk" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFl" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFn" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFp" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bFq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bFr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bFs" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bFt" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bFu" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bFv" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bFw" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bFx" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/white/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bFy" = (/turf/simulated/floor/tiled,/area/medical/surgery_hallway) +"bFz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) +"bFA" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFB" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "CMO's Office"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_animal/cat/fluff/Runtime,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFE" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (SOUTHEAST)"; icon_state = "borderfloorcorner2_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/medical/surgery_hallway) +"bFL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bFM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bFN" = (/obj/structure/railing,/turf/simulated/open,/area/medical/surgery_hallway) +"bFO" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFP" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFQ" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFR" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFS" = (/obj/machinery/computer/crew{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/heads/cmo) +"bFT" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFU" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFV" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFW" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFX" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFY" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bFZ" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bGa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bGb" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bGc" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bGd" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bGe" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bGf" = (/obj/machinery/door/airlock/glass_medical,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGi" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (EAST)"; icon_state = "borderfloorcorner_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGj" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open"; icon_state = "door_open"; dir = 2},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGk" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGl" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGm" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGn" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGo" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGp" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGq" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/heads/cmo) +"bGs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/sleeper) +"bGt" = (/obj/machinery/door/airlock/glass_medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/medical/sleeper) +"bGu" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (WEST)"; icon_state = "borderfloorcorner2_white"; dir = 8},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGv" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGw" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGx" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden{tag = "icon-door_open (NORTH)"; icon_state = "door_open"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGy" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGA" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGB" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGC" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGD" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGE" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/closet/l3closet/medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery_hallway) +"bGF" = (/obj/machinery/door/airlock/maintenance/medical,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/medical/surgery_hallway) +"bGG" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/_04) +"bGH" = (/turf/simulated/wall,/area/crew_quarters/medical_restroom) +"bGI" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{pixel_y = 10},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bGJ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bGK" = (/obj/structure/toilet{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bGL" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/medical_restroom) +"bGM" = (/turf/simulated/wall,/area/crew_quarters/medbreak) +"bGN" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 1; listening = 1; name = "Common Channel"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bGO" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bGP" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bGQ" = (/obj/structure/sink{pixel_y = 24},/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bGR" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bGS" = (/obj/machinery/vending/fitness,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bGT" = (/turf/simulated/wall,/area/medical/patient_a) +"bGU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_a) +"bGV" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bGW" = (/turf/simulated/wall,/area/medical/patient_b) +"bGX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_b) +"bGY" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bGZ" = (/turf/simulated/wall,/area/medical/patient_c) +"bHa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_c) +"bHb" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bHc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/surgery_hallway) +"bHd" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bHe" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bHf" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bHg" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/medical_restroom) +"bHh" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHi" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHj" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHk" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHl" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHm" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHn" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bHo" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bHp" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bHq" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bHr" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bHs" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bHt" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bHu" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bHv" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/pink/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bHw" = (/obj/machinery/door/airlock/medical,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bHx" = (/obj/machinery/door/airlock/medical,/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bHy" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHz" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHA" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHB" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHC" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHD" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHE" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bHF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bHG" = (/obj/item/weapon/bedsheet/medical,/obj/structure/bed,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bHH" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bHI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bHJ" = (/obj/item/weapon/bedsheet/medical,/obj/structure/bed,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bHK" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bHL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bHM" = (/obj/item/weapon/bedsheet/medical,/obj/structure/bed,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bHN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/medical_restroom) +"bHO" = (/obj/structure/mirror{pixel_y = 30},/obj/structure/sink{pixel_y = 24},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bHP" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bHQ" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bHR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bHS" = (/obj/machinery/door/airlock/medical,/obj/structure/cable/green{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/white,/area/crew_quarters/medbreak) +"bHT" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHU" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHV" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHW" = (/obj/structure/table/glass,/obj/item/weapon/deck/cards,/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHX" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHY" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bHZ" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIa" = (/obj/structure/table/glass,/obj/item/weapon/clipboard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bIb" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bIc" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_a) +"bId" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/clipboard,/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bIe" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bIf" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_b) +"bIg" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/clipboard,/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bIh" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bIi" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/pink/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_c) +"bIj" = (/obj/machinery/light/small,/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bIk" = (/obj/structure/table/standard,/obj/random/soap,/obj/random/soap,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bIl" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/crew_quarters/medical_restroom) +"bIm" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIn" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIo" = (/obj/structure/table/glass,/obj/item/device/universal_translator,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIp" = (/obj/structure/table/glass,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIq" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIr" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_a) +"bIt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_b) +"bIu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/medical/patient_c) +"bIv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/medical_restroom) +"bIw" = (/obj/structure/flora/skeleton{name = "\proper Wilhelm"},/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIx" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIy" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIz" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIA" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIB" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIC" = (/obj/structure/bookcase/manuals/medical,/obj/item/weapon/book/manual/medical_diagnostics_manual{pixel_y = 7},/obj/item/weapon/book/manual/stasis,/obj/item/weapon/book/manual/resleeving,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bID" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/camera/network/medbay{c_tag = "MED - Chemistry"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIE" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIF" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets,/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/medbreak) +"bIG" = (/obj/effect/landmark/map_data/virgo3b,/turf/space,/area/space) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -4585,38 +4590,38 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDwaDxaDyaDyaDyaDzaDyaDAaDBaDCaDDaDEaDaaDFaDGaD aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDwaDxaEfaEfaEfaEfaEfaEfaEfaEfaEfaEgaEhaEiaEjaEkaElaByaBzaBAaaaaDfaDfaDfaDfaDfaDfaDfaDfaDfaDfaDfaDfaEmaEnaEoaEpaBDaEqaAGaabaAKaAKaAKaAKaAKaAKaAKaAKaAKaAKaAKaAKavyavyavyavyaabaabaabaabaabaabaabaabaEraEraEraEsaEtaEuaEraEraEraylaylaylaylaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDwaDxaEvaEvaEvaEwaExaEyaEzaEAaEBaECaEDaEEaEFaDHaEGaByaBzaBAaaaaDfaDfaDfaDfaDfaDfaDfaDfaDfaDfaDfaDfaEHaEIaDLaEJaBDaEKaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraEraELaEMaENaEOaEPaEQaERaEraEraabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDaaDaaDaaDbaDbaDaaDaaDbaDbaDbaDaaDaaDaaaaaaaaABaESaETaEUaABaaaaDfaDfaDfaDfaDfaDfaDfaDfaDfaDfaDfaaaaaaaaaaAGaEVaEWaEXaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraEYaENaEZaFaaFbaFcaFdaFdaFeaEraabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaBxaByaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBBaBEaBDaBEaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraENaENaFfaFgaFhaFiaFjaENaFkaEraabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaBxaByaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBBaBEaBDaBEaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraFlaFmaFnaFoaFpaFqaFjaENaFraEraabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaBxaByaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBBaBEaBDaBEaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraENaENaENaFsaFsaFsaENaENaFtaEraabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaABaDcaFuaFvaABaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAGaFwaFxaFyaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraFzaFAaENaENaFBaENaENaENaFCaEraabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDFaDGaDHaDIaBzaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDJaDKaDLaFDaBEaFEaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraEraEraFFaFFaFFaFFaFFaEraEraEraabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaFGaBzaFGaFHaBzaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEmaBEaEmaFIaBEaEqaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaFJaEFaDHaFKaBzaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEHaEIaDLaFLaBEaFMaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaABaFNaFOaFPaABaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAGaFQaFRaFRaAGaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaaaaaaaaaaaaaaaaaaaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaABaFSaFTaDHaABaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAGaDLaEmaEmaAGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaFUaFVaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBBaBEaBEaFWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaFXaFYaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBBaBEaBEaFWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaFZaGaaGbaGcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGdaEmaEmaGeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaaaaaaaaaaaaaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaaaaaaaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaGfaGfaGfaGfaGfaGfaaaaaaaGfaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGfaGfaGfaGfaaaaaaaaaaaaaGfaGfaGfaGfaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaBxaByaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBBaBCaBDaBEaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraENaENaFfaFgaFhaFiaFjaENaFkaEraabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaBxaByaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBBaBCaBDaBEaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraFlaFmaFnaFoaFpaFqaFjaENaFraEraabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaBxaByaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaFsaFsaFsaFsaFsaaaaFtaDLaBCaBDaBEaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraENaENaENaFuaFuaFuaENaENaFvaEraabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaABaDcaFwaFxaABaaaaaaaaaaaaaaaaaaaaaaaaaFsaFsaFsaFsaFsaaaaBBaFyaDgaFzaFAaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraFBaFCaENaENaFDaENaENaENaFEaEraabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaDFaDGaDHaDIaBzaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaFsaFsaFsaFsaFsaFFaAGaAGaDMaBEaFGaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEraEraEraFHaFHaFHaFHaFHaEraEraEraabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaFIaBzaFIaFJaBzaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaFsaFsaFsaFsaFsaFKaFLaFMaFNaBEaEqaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaFOaEFaDHaFPaBzaBzaBAaaaaaaaaaaaaaaaaaaaaaaaaaFsaFsaFsaFsaFsaAGaAGaAGaFQaBEaFRaAGaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaABaFSaFTaFUaABaaaaaaaaaaaaaaaaaaaaaaaaaFsaFsaFsaFsaFsaaaaaaaBBaFVaFWaFWaAGaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaaaaaaaaaaaaaaaaaaaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaABaFXaFYaDHaABaaaaaaaaaaaaaaaaaaaaaaaaaFsaFsaFsaFsaFsaaaaaaaAGaDLaEmaEmaAGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaFZaGaaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBBaBEaBEaGbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBwaGcaGdaBAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBBaBEaBEaGbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGeaGfaGgaGhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGiaEmaEmaGjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaaaaaaaaaaaaaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaaaaaaaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaGkaGkaGkaGkaGkaGkaaaaaaaGkaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGkaGkaGkaGkaaaaaaaaaaaaaGkaGkaGkaGkaGkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -4651,69 +4656,69 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaGgaGgaGgaGgaGgaGgaGgaGgaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGgaGhaGiaGjaGkaGlaGmaGgaabaabaabaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGoaGoaGoaGoaGoaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGgaGpaGqaGkaGkaGraGraGgaabaabaabaGnaGsaGtaGuaGtaGvaGtaGtaGwaGtaGtaGvaGxaGyaGtaGtaGzaGvaGtaGAaGBaGCaGDaGEaGoaGFaGFaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGgaGGaGpaGHaGIaGJaGKaGgaabaabaabaGnaGLaGMaGNaGOaGPaGQaGOaGPaGQaGOaGRaGSaGTaGUaGUaGUaGUaGUaGVaGWaGXaGYaGZaGoaHaaGFaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGgaHbaHbaHcaHdaHeaHfaGgaabaabaabaGnaHgaHhaHiaHjaHkaHiaHjaHkaHiaHjaHkaHiaHlaHmaHmaHmaHmaHmaHnaGoaHoaHpaHqaGoaHraGFaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaHsaHsaHsaHsaHsaHsaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGgaHbaHbaHtaHuaHvaHvaGgaabaabaabaGnaHwaHxaHiaHyaHzaHiaHAaHBaHiaHAaHBaHiaHCaHDaHEaHFaHGaHHaHIaGoaHJaHKaHLaGoaHraGFaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaHsaHsaHMaHNaHOaHOaHsaabaabaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGgaHPaHQaHRaHSaHvaHTaGgaabaabaabaGnaHgaHUaHiaHVaHWaHiaHXaHYaHiaHXaHYaHiaHZaIaaHHaIbaHHaIcaIdaIeaIfaIgaIhaGoaHraGFaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaHsaIiaIjaIkaHOaHOaHsaabaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGgaIlaImaHcaInaIoaIpaGgaabaabaabaGnaIqaIraHiaHiaHiaHiaIsaItaHiaIsaItaHiaIuaIaaHHaIvaIwaIxaIyaIzaIzaIzaIzaIzaHraGFaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaHsaIiaIjaIAaHsaHsaHsaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaGgaIBaICaHtaIDaIEaIFaGgaabaabaabaGnaIGaIHaIIaIJaIKaILaIJaIMaINaIJaIMaIOaIPaIQaIJaIRaISaITaIUaIzaIVaIWaIXaIzaHraGFaabaabaabaabaabaHsaHsaHsaHsaHsaHsaHsaHsaHsaHsaHsaHsaHsaIYaIZaJaaJbaJcaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaGgaGgaGgaJdaJeaGgaGgaGgaabaabaabaGnaJfaJgaHiaHiaHiaHiaIsaJhaHiaIsaJhaHiaJiaIaaHHaJjaJkaIxaJlaIzaJmaJnaJoaIzaHraGFaJpaJpaJpaJpaJpaJpaJqaJraJraJraJsaJraJraJraJtaJraJraJuaJvaJwaHsaHsaHsaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaGgaJxaJxaJyaJzaJAaJBaGgaabaabaabaGnaJCaJDaHiaJEaHWaHiaJFaHYaHiaJFaHYaHiaJGaIaaHHaJHaHHaJIaJJaJKaJLaJMaJNaIzaHraGFaJOaJPaJQaJRaJSaJpaJTaHsaHsaJUaJUaJUaJUaJUaJUaJUaJUaJUaJVaJWaJXaJYaJZaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGgaJxaJxaKaaKbaJBaJBaGgaabaabaabaGnaKcaHxaHiaKdaHzaHiaKeaHBaHiaKeaHBaHiaKfaKgaKhaKiaKjaKkaKlaIzaKmaKnaKoaIzaHraGFaKpaKqaKraKsaKtaJpaJTaHsaKuaJUaKvaKwaKxaKyaKzaKwaKAaJUaKBaKCaJXaKDaJZaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaKEaKEaKEaKFaKGaKEaKEaKEaKEaKEaKEaGnaKcaKHaHiaHjaKIaHiaHjaKIaHiaHjaKIaHiaKJaKKaKLaKLaKLaKMaKNaIzaIzaIzaIzaIzaHraGFaKOaKPaKQaKRaKSaJpaJTaHsaKuaJUaKTaKUaKVaKWaKXaKYaKZaJUaIjaIjaLaaKDaJZaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKEaLbaLbaLcaLdaLeaLfaLfaLgaLhaKEaGnaLiaLjaLkaLlaLmaLnaLlaLmaLnaLlaLmaLoaLnaLpaLnaLnaLnaLqaLraLsaLtaLuaLvaLwaHraGFaKRaLxaLyaLzaLAaJpaLBaLCaLCaJUaLDaLEaLFaLGaLHaLIaLJaJUaHsaHsaHsaHsaHsaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKEaLbaLbaLbaLbaLbaLbaLbaLbaLKaKEaGnaLLaLMaLNaLOaLPaLOaLOaLOaLOaLOaLPaLQaLOaLRaLSaLSaLTaLUaLVaLwaLWaLXaLYaLwaHraGFaLZaLZaMaaMbaLZaJpaMcaMdaMeaJUaKTaMfaMgaMhaMgaMfaKZaJUaabaabaabaabaabaabaabaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKEaLbaLbaMiaMjaMjaMjaMkaLbaLKaKEaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaMlaMlaMmaGnaLwaMnaMoaMpaLwaHraLCaMqaMraMsaMtaMuaMvaMwaLCaMxaJUaMyaMzaMAaMBaMCaMzaMDaJUaabaabaabaabaabaabaabaabaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKEaLbaLbaMEaMFaMFaMFaMGaLbaMHaKEaMIaMJaMJaMJaMJaMJaMJaMJaMJaMJaMJaMJaMJaMKaMLaMMaMNaMOaMPaMQaLwaMRaMSaLWaLwaMTaMUaMVaMWaMXaMYaMZaNaaNbaNcaNdaJUaJUaJUaJUaNeaJUaJUaJUaJUaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKEaNfaLbaMEaMFaMFaMFaMGaLbaLKaKEaMJaMJaNgaNgaNgaNgaNgaNgaNgaNgaNgaNgaNgaMJaMLaNhaNiaNjaMPaNkaLwaLWaNlaLWaLwaNmaLCaNnaNoaNpaNqaNraNsaNtaJUaJUaJUaJUaNuaNvaNwaNxaNyaJUaJUaNzaNzaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKEaLbaLbaMEaMFaMFaMFaMGaLbaLKaKEaMJaMJaNgaNgaNAaNgaNBaNCaNDaNEaNFaNGaNgaMJaMLaNHaNIaNjaMPaNkaLwaLwaNJaLwaLwaNmaLCaNKaNLaNMaNNaNOaNPaNLaJUaNQaNRaJUaNSaNTaNUaNVaMfaJUaNWaNXaJUaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKEaLbaLbaMEaMFaMFaMFaMGaLbaLKaKEaMJaMJaNgaNYaNFaNZaOaaObaOaaOcaOdaOeaNgaMJaMLaOfaOgaOgaOhaOiaOjaOkaOlaOmaMLaOnaLCaOoaOpaNMaNNaNOaOqaOraJUaOsaOtaOuaOvaOwaOxaOyaOvaOuaOzaOAaJUaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKEaOBaOBaOCaODaMFaMFaMGaLbaLKaKEaOEaMJaNgaOFaNFaOaaOGaOHaOIaOJaNFaOKaNgaMJaMLaOLaOMaONaOOaOPaOQaORaOSaOTaMLaNmaLCaOUaOVaOWaOXaOYaOZaPaaJUaPbaPcaJUaPdaPeaMhaPfaPgaJUaPhaPiaJUaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKEaPjaOBaOCaODaMFaMFaMGaLbaLKaKEaMJaMJaNgaPkaNFaOaaPlaPmaPnaOJaNFaPoaNgaMJaMLaMLaMLaMLaMLaMLaMLaPpaPqaMLaMLaNmaLCaPraPsaNMaNNaNOaMqaPsaJUaJUaJUaJUaMgaPtaPuaPvaMgaJUaJUaJUaJUaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKEaPwaOBaOCaODaMFaMFaMGaLbaPxaKEaMJaMJaNgaPyaPzaPAaPBaPCaPDaPEaNFaPFaNgaMJaMJaMJaPGaPHaPHaPIaPJaPKaPLaPLaPLaPMaLCaPNaPOaNMaNNaNOaPNaPOaPPaPPaPPaPPaPPaPQaPRaPSaPTaPTaPTaPTaPTaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKEaOBaOBaOCaODaMFaMFaMGaLbaLKaKEaMJaPUaNgaNgaNgaNgaPVaPWaPXaPYaPZaQaaNgaQbaQbaQbaQcaQdaQdaQdaQeaQeaQeaQeaQeaQeaLCaQfaQgaQhaQgaQiaQgaQfaPPaQjaQkaQlaPPaQmaQnaQoaPTaQpaQqaQraPTaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKEaOBaOBaOCaODaMFaMFaMGaLbaQsaQtaQuaQvaQwaQwaQwaQxaQyaQzaQAaQBaQCaQCaQCaQDaQEaQFaQGaQHaQIaQJaQKaQKaQKaQKaQKaQKaQLaQMaQNaQOaQNaQPaQNaQQaPPaQRaQSaQTaQUaQVaQWaQVaQXaQYaQZaRaaPTaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKEaLbaLbaMEaMFaMFaMFaMGaLbaRbaRcaRcaRcaRcaRcaRcaRcaRdaReaRfaRgaRfaRfaRfaRfaRhaQFaRiaRjaRkaRlaQKaRmaRmaRmaRmaQKaQNaQNaQNaQOaQNaQPaQNaRnaPPaRoaRpaRqaPPaRraRsaRtaPTaRuaRvaRwaPTaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKEaLbaLbaMEaMFaMFaMFaMGaLbaRbaRcaRxaRyaRzaRAaRBaRCaRdaRDaREaRFaRFaRFaRGaRHaRIaQFaRJaRKaRLaRMaQKaRmaRmaRmaRmaRmaQNaQNaQNaQOaQNaQPaQNaQNaPPaPPaPPaPPaPPaPQaRNaROaPTaPTaPTaPTaPTaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKEaNfaLbaMEaMFaMFaMFaMGaLbaRPaRcaRQaRRaRSaRTaRUaRVaRdaRDaRWaRXaRXaRXaRYaRHaRZaQFaSaaMJaSbaScaQKaRmaRmaRmaRmaRmaQNaQNaQNaQOaQNaSdaSeaSeaSfaSgaSeaShaSeaSiaSjaSeaSkaSeaSeaSlaSmaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKEaLbaLbaMEaMFaMFaMFaMGaLbaSnaRcaSoaSpaSqaSraSsaRVaRdaRDaRWaRXaRXaRXaRYaRHaStaSuaSvaSvaSwaSxaQKaRmaRmaRmaRmaSyaQNaQNaSzaSAaSBaSBaSBaSBaSBaSBaSBaSBaSBaSBaSAaSCaSCaSCaSCaSDaSmaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKEaLbaLbaSEaSFaSFaSFaSGaLbaRbaRcaSHaSIaRSaSJaSKaRVaRdaRDaSLaSMaSMaSMaSNaSOaSOaQFaSPaMJaSQaSRaQKaQKaQKaQKaQKaQKaQNaQNaSSaQNaQNaQNaQNaQNaQNaQNaQNaQNaQNaQNaSTaQNaQNaQNaQNaSUaSmaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKEaLbaLbaLbaLbaLbaLbaLbaLbaRbaRcaSVaSWaSXaSYaSZaTaaTbaTcaRHaRHaRHaRHaTdaSOaSOaQFaTeaRKaQdaTfaTgaTgaTgaTgaTgaTgaThaQNaSSaQNaQNaQNaQNaQNaQNaQNaQNaQNaQNaQNaQNaQNaQNaQNaQNaTiaSmaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKEaTjaTjaTjaTjaTkaLbaTlaTmaTnaToaTpaTqaTraTsaTtaTuaTvaTwaTxaRfaRhaRHaRHaRHaRHaQFaTyaRKaQbaTzaTAaTBaTCaTDaTEaTFaTGaTGaTHaTIaQNaQNaQNaQNaQNaQNaQNaTJaTIaQNaQNaQNaQNaQNaQNaTiaSmaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTgaKEaKEaKEaKEaKEaKEaKEaKEaKEaKEaRcaTKaTLaTLaTLaTMaRcaTNaTNaTOaTNaTPaTNaTNaQFaQFaQFaQbaQbaQbaTQaTRaTRaTRaTSaTRaTTaTTaTTaTTaTTaTTaTTaTTaTTaTTaTTaTTaTTaTUaTUaTUaTUaTUaTUaTUaTVaTWaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTXaTRaTRaTRaTRaTRaTYaTRaTRaTRaTZaTRaUaaTRaTRaTRaUbaUcaTRaTYaTSaTRaUdaTRaTRaUeaUfaUgaTRaUhaTCaUiaTRaTRaTRaUjaUkaTTaUlaUmaUnaUoaUpaUqaUraUsaUtaUuaUvaTTaUwaUxaUyaUzaUAaUBaTUaUCaTWaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTXaTRaTRaTRaUDaUEaUFaUGaUHaUHaUHaUHaUIaUHaUJaUHaUKaULaUHaUMaUNaUOaUPaUQaUHaUHaUIaUHaURaUHaUHaUSaUHaUTaUUaUVaTRaTTaUWaUXaUYaUZaVaaUZaVbaVcaVcaVdaVeaTTaVfaVgaVhaViaVjaVkaTUaVlaTWaTWaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTXaVmaVnaTRaVoaTRaTRaVpaVqaVqaVqaVqaVqaVqaVraVqaVsaVtaVnaTRaTRaVuaTRaTSaVvaVwaVxaVwaVyaVwaVwaVzaVAaVBaVuaTRaVCaTTaVDaUuaUnaUuaVEaVFaVGaVHaUuaUuaUuaUnaVIaVIaVIaVJaVKaVLaTUaUCaVMaTWaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaVNaVNaVNaVOaVOaVOaVOaVPaVOaVOaVOaVQaVRaVRaVRaVSaVSaVSaVSaVSaVSaVTaVUaVVaVWaVSaVNaVNaVNaVNaVNaVNaVNaVXaVYaVYaVYaTTaVZaVZaTTaWaaWbaWcaTTaWdaWeaWfaUZaWgaWhaWiaWiaWjaVKaWkaTUaUCaVMaTWaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaVOaWlaWmaWnaWoaWpaWqaWraVOaauaWsaauaVSaWtaWuaVSaVSaVSaVSaWvaWwaWxaVSaabaabaabaabaabaWyaWzaWAaWBaWCaWDaTTaVDaUmaUnaUuaWEaWFaWGaWHaUuaVEaUuaUnaWIaVIaVIaWJaWKaWLaTUaUCaVMaTWaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaVOaWMaWNaWNaWOaWNaWNaWPaWQaWRaWRaWSaVSaWuaWuaVSaVSaVSaVSaWTaWwaWUaVSaabaabaabaabaabaWyaWVaWWaVYaWXaWYaTTaUWaUXaWZaUZaXaaXbaXcaUZaUZaXdaXeaTTaXfaXgaXhaXiaXjaXkaTUaUCaVMaTWaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaVOaXlaWNaXmaXnaXoaWNaXpaXqaXraXsaXtaVSaXuaXuaVSaXvaXvaVSaXuaWwaXuaVSaabaabaabaabaabaWyaXwaXxaXyaXzaXAaTTaUlaXBaUnaUuaXCaUuaWEaUuaUuaXDaXEaTTaXFaXGaVIaXHaVKaXIaTUaUCaVMaTWaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaVOaXJaXKaXLaXMaXNaXKaXKaXOaXPaXQaXRaVSaXuaXuaXSaXuaXuaVSaXTaXUaXVaVSaabaabaabaabaabaWyaXWaXXaXYaXYaXYaXYaXYaXYaXYaXZaYaaYbaYcaYdaYeaYfaTTaYgaYhaYgaVIaYiaYjaTUaTUaYkaVMaTWaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaVOaYlaYmaYnaYoaYpaYqaYraYsaYtaYuaXtaVSaYvaYwaYxaYyaYyaYzaYAaYBaYCaVSaabaabaabaabaabaWyaWzaXXaXYaYDaYEaYFaYEaYGaXYaUnaUnaTTaYHaTTaUnaUnaTTaYIaYJaYgaYKaYLaYgaYgaYMaYNaYOaTWaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaVOaYPaYQaYQaYRaWNaWNaYSaYTaYUaYUaYVaVSaXuaYWaYXaXuaXuaXuaXuaYYaYZaVSaabaabaZaaZaaZaaZaaZaaZbaZcaZdaZeaZfaZeaZgaXYaZhaZiaZjaZkaZlaZmaZnaZoaZpaZqaYgaZraZsaZtaYgaZuaZvaZvaZvaZvaZvaZvaZvaZvaZvaZvaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaVOaVOaZwaZxaZyaZzaZAaVOaVOaWsaauaauaVSaVSaVSaVSaVSaVSaVSaVSaVSaVSaVSaabaabaZaaZBaZCaZDaZEaZFaZGaZHaZIaZJaZKaZLaXYaYgaZMaZNaZOaZPaZQaZRaZSaZTaZUaZVaZWaZXaZYaYgaZZaZvbaababbacbadbaebafbagbafbahaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaVOaVOaVOaVOaVOaVOaVOaVOaVOaauaauaauaabaabaabaabaabaabaabaabaabaabaZaaZaaZaaZabaibajbakbalbajaXYbambanbaobanbapbaqaXYaXYaYgbarbasaYgaYgaYgaYgaYgaYgbatbauaYgaYgaZuaZvbavbafbafbawbafbafbafbafbahaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZabaxbaybazbaAbajbakbalbaBaXYbaCbanbaDbanbanbapbaEaXYbaFbaGbaHbaIbaJbaKbaLaZvaZvaZvaZvaZvaZvbaMaZvbaNbafbafbaObaPbaPbaQbafbahaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZabaRbaSbajbajbaTbaUbaVbaWaXYbaXbanbaDbanbanbanbaYaXYbaZbbabbbbaIbbcbbdbaLaZvbbebbebbfbbfbbgbbhbbibbjbbkbbkbblbbmbbnbbobbpbahaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZabbqbaSbajbajbbrbbsbajbbtaXYbbubbvbbwbbxbbybbzbbAaXYbbBbbCbbDbaIbbcbbEbaLaZvbbebbebbFbbFbbGbbHbbIbbJbbJbbJbbKbbLbbMbbobafbahaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZabbNbaSbajbajbajbakbajbbOaXYaXYaZcbbPbbQbbQaXYaXYaXYaYgbbRbbSbbTbbUbbVbbVaZvaZvaZvaZvaZvaZvbbWaZvbafbafbafbaQbbXbbXbaQbafbahaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZabbYbbZbcabcbbccbcdbcebcfaZabcgbchbcibchbchbcjbckbclbcmbcnbcobcpbcqbcrbcsbctbcubcvbcvbcvbcvbcwaZvbcxbcybafbczbcAbafbafbafbahaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZaaZaaZaaZaaZaaZabcBaZaaZaaZabcCbcDbcEbcFbcFbcGbcFbcFbcFbcHbcIbcIbcJbcKbbVbcLbcLbcLbcLbcLbcLbcLaZvaZvaZvaZvaZvaZvaZvaZvaZvaZvaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabbbVbcMbcNbcObcPbcQbcRbcSbbVbbVbbVbbVbbVbbVbbVbbVbcTbcTbcUbcVbbVaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabbbVbcWbcXbcYbcZbdabdbbdcbbVaabaabaabaabaabaabbbVbddbddbcUbcVbbVbdeaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabbbVbdfbdfbdfbdfbdgbdhbdfbdfaabaabaabaabaabaabbbVbbVbbVbdibdjbdkbdlbdmaauaauaauaauaabaabaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabbdfbdnbdobdpbdqbdrbdsbdfaabaabaabaabaabaabaabaabbbVbdibdtbdubdvbdwaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabbdfbdxbdybdzbdAbdzbdBbdfaabaabaabaabaabaabaabaabbbVbdCbdDbbVbdeaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbdfbdEbdFbdGbdHbdIbdBbdfaabaabaabbbTbbTbbTbbTbbTbbTbdJbdJbbTbbTbbTbbTbbTaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbdfbdKbdLbdMbdNbdzbdBbdfaabaabaabbbTbdObdPbdPbdPbdPbdQbdQbdRbdPbdPbdPbdSaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbdfbdTbdzbdzbdzbdzbdBbdfaabaabaabbbTbdUbdVbdWbdXbdYbdZbeabebbecbedbdPbdPaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbdfbeebefbegbehbeibejbdfaabaabaabbbTbdUbdVbekbeabeabeabeabeabeabeabelbemaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbdfbdfbdfbdfbdfbdfbdfbdfaabaabaabbbTbdUbdVbenbeobepbeqberbesbetbeubdPbdPaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabbbTbevbdPbdPbdPbdPbdPbdPbdRbdPbdPbdPbdSaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabbbTbbTbbTbbTbbTbbTbbTbbTbbTbbTbbTbbTbbTaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaGlaGlaGlaGlaGlaGlaGlaGlaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGlaGmaGnaGoaGpaGqaGraGlaabaabaabaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGtaGtaGtaGtaGtaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGlaGuaGvaGpaGpaGwaGwaGlaabaabaabaGsaGxaGyaGzaGyaGAaGyaGyaGBaGyaGyaGAaGCaGDaGyaGyaGEaGAaGyaGFaGGaGHaGIaGJaGtaGKaGKaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGlaGLaGuaGMaGNaGOaGPaGlaabaabaabaGsaGQaGRaGSaGTaGUaGVaGTaGUaGVaGTaGWaGXaGYaGZaGZaGZaGZaGZaHaaHbaHcaHdaHeaGtaHfaGKaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGlaHgaHgaHhaHiaHjaHkaGlaabaabaabaGsaHlaHmaHnaHoaHpaHnaHoaHpaHnaHoaHpaHnaHqaHraHraHraHraHraHsaGtaHtaHuaHvaGtaHwaGKaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaHxaHxaHxaHxaHxaHxaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGlaHgaHgaHyaHzaHAaHAaGlaabaabaabaGsaHBaHCaHnaHDaHEaHnaHFaHGaHnaHFaHGaHnaHHaHIaHJaHKaHLaHMaHNaGtaHOaHPaHQaGtaHwaGKaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaHxaHxaHRaHSaHTaHTaHxaabaabaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGlaHUaHVaHWaHXaHAaHYaGlaabaabaabaGsaHlaHZaHnaIaaIbaHnaIcaIdaHnaIcaIdaHnaIeaIfaHMaIgaHMaIhaIiaIjaIkaIlaImaGtaHwaGKaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaHxaInaIoaIpaHTaHTaHxaabaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGlaIqaIraHhaIsaItaIuaGlaabaabaabaGsaIvaIwaHnaHnaHnaHnaIxaIyaHnaIxaIyaHnaIzaIfaHMaIAaIBaICaIDaIEaIEaIEaIEaIEaHwaGKaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaHxaInaIoaIFaHxaHxaHxaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaGlaIGaIHaHyaIIaIJaIKaGlaabaabaabaGsaILaIMaINaIOaIPaIQaIOaIRaISaIOaIRaITaIUaIVaIOaIWaIXaIYaIZaIEaJaaJbaJcaIEaHwaGKaabaabaabaabaabaHxaHxaHxaHxaHxaHxaHxaHxaHxaHxaHxaHxaHxaJdaJeaJfaJgaJhaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaGlaGlaGlaJiaJjaGlaGlaGlaabaabaabaGsaJkaJlaHnaHnaHnaHnaIxaJmaHnaIxaJmaHnaJnaIfaHMaJoaJpaICaJqaIEaJraJsaJtaIEaHwaGKaJuaJuaJuaJuaJuaJuaJvaJwaJwaJwaJxaJwaJwaJwaJyaJwaJwaJzaJAaJBaHxaHxaHxaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaGlaJCaJCaJDaJEaJFaJGaGlaabaabaabaGsaJHaJIaHnaJJaIbaHnaJKaIdaHnaJKaIdaHnaJLaIfaHMaJMaHMaJNaJOaJPaJQaJRaJSaIEaHwaGKaJTaJUaJVaJWaJXaJuaJYaHxaHxaJZaJZaJZaJZaJZaJZaJZaJZaJZaKaaKbaKcaKdaKeaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaGlaJCaJCaKfaKgaJGaJGaGlaabaabaabaGsaKhaHCaHnaKiaHEaHnaKjaHGaHnaKjaHGaHnaKkaKlaKmaKnaKoaKpaKqaIEaKraKsaKtaIEaHwaGKaKuaKvaKwaKxaKyaJuaJYaHxaKzaJZaKAaKBaKCaKDaKEaKBaKFaJZaKGaKHaKcaKIaKeaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaKJaKJaKJaKKaKLaKJaKJaKJaKJaKJaKJaGsaKhaKMaHnaHoaKNaHnaHoaKNaHnaHoaKNaHnaKOaKPaKQaKQaKQaKRaKSaIEaIEaIEaIEaIEaHwaGKaKTaKUaKVaKWaKXaJuaJYaHxaKzaJZaKYaKZaLaaLbaLcaLdaLeaJZaIoaIoaLfaKIaKeaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKJaLgaLgaLhaLiaLjaLkaLkaLlaLmaKJaGsaLnaLoaLpaLqaLraLsaLqaLraLsaLqaLraLtaLsaLuaLsaLsaLsaLvaLwaLxaLyaLzaLAaLBaHwaGKaKWaLCaLDaLEaLFaJuaLGaLHaLHaJZaLIaLJaLKaLLaLMaLNaLOaJZaHxaHxaHxaHxaHxaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKJaLgaLgaLgaLgaLgaLgaLgaLgaLPaKJaGsaLQaLRaLSaLTaLUaLTaLTaLTaLTaLTaLUaLVaLTaLWaLXaLXaLYaLZaMaaLBaMbaMcaMdaLBaHwaGKaMeaMeaMfaMgaMeaJuaMhaMiaMjaJZaKYaMkaMlaMmaMlaMkaLeaJZaabaabaabaabaabaabaabaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKJaLgaLgaMnaMoaMoaMoaMpaLgaLPaKJaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaMqaMqaMraGsaLBaMsaMtaMuaLBaHwaLHaMvaMwaMxaMyaMzaMAaMBaLHaMCaJZaMDaMEaMFaMGaMHaMEaMIaJZaabaabaabaabaabaabaabaabaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKJaLgaLgaMJaMKaMKaMKaMLaLgaMMaKJaMNaMOaMOaMOaMOaMOaMOaMOaMOaMOaMOaMOaMOaMPaMQaMRaMSaMTaMUaMVaLBaMWaMXaMbaLBaMYaMZaNaaNbaNcaNdaNeaNfaNgaNhaNiaJZaJZaJZaJZaNjaJZaJZaJZaJZaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKJaNkaLgaMJaMKaMKaMKaMLaLgaLPaKJaMOaMOaNlaNlaNlaNlaNlaNlaNlaNlaNlaNlaNlaMOaMQaNmaNnaNoaMUaNpaLBaMbaNqaMbaLBaNraLHaNsaNtaNuaNvaNwaNxaNyaJZaJZaJZaJZaNzaNAaNBaNCaNDaJZaJZaNEaNEaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKJaLgaLgaMJaMKaMKaMKaMLaLgaLPaKJaMOaMOaNlaNlaNFaNlaNGaNHaNIaNJaNKaNLaNlaMOaMQaNMaNNaNoaMUaNpaLBaLBaNOaLBaLBaNraLHaNPaNQaNRaNSaNTaNUaNQaJZaNVaNWaJZaNXaNYaNZaOaaMkaJZaObaOcaJZaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKJaLgaLgaMJaMKaMKaMKaMLaLgaLPaKJaMOaMOaNlaOdaNKaOeaOfaOgaOfaOhaOiaOjaNlaMOaMQaOkaOlaOlaOmaOnaOoaOpaOqaOraMQaOsaLHaOtaOuaNRaNSaNTaOvaOwaJZaOxaOyaOzaOAaOBaOCaODaOAaOzaOEaOFaJZaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKJaOGaOGaOHaOIaMKaMKaMLaLgaLPaKJaOJaMOaNlaOKaNKaOfaOLaOMaONaOOaNKaOPaNlaMOaMQaOQaORaOSaOTaOUaOVaOWaOXaOYaMQaNraLHaOZaPaaPbaPcaPdaPeaPfaJZaPgaPhaJZaPiaPjaMmaPkaPlaJZaPmaPnaJZaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKJaPoaOGaOHaOIaMKaMKaMLaLgaLPaKJaMOaMOaNlaPpaNKaOfaPqaPraPsaOOaNKaPtaNlaMOaMQaMQaMQaMQaMQaMQaMQaPuaPvaMQaMQaNraLHaPwaPxaNRaNSaNTaMvaPxaJZaJZaJZaJZaMlaPyaPzaPAaMlaJZaJZaJZaJZaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKJaPBaOGaOHaOIaMKaMKaMLaLgaPCaKJaMOaMOaNlaPDaPEaPFaPGaPHaPIaPJaNKaPKaNlaMOaMOaMOaPLaPMaPMaPNaPOaPPaPQaPQaPQaPRaLHaPSaPTaNRaNSaNTaPSaPTaPUaPUaPUaPUaPUaPVaPWaPXaPYaPYaPYaPYaPYaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKJaOGaOGaOHaOIaMKaMKaMLaLgaLPaKJaMOaPZaNlaNlaNlaNlaQaaQbaQcaQdaQeaQfaNlaQgaQgaQgaQhaQiaQiaQiaQjaQjaQjaQjaQjaQjaLHaQkaQlaQmaQlaQnaQlaQkaPUaQoaQpaQqaPUaQraQsaQtaPYaQuaQvaQwaPYaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKJaOGaOGaOHaOIaMKaMKaMLaLgaQxaQyaQzaQAaQBaQBaQBaQCaQDaQEaQFaQGaQHaQHaQHaQIaQJaQKaQLaQMaQNaQOaQPaQPaQPaQPaQPaQPaQQaQRaQSaQTaQSaQUaQSaQVaPUaQWaQXaQYaQZaRaaRbaRaaRcaRdaReaRfaPYaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKJaLgaLgaMJaMKaMKaMKaMLaLgaRgaRhaRhaRhaRhaRhaRhaRhaRiaRjaRkaRlaRkaRkaRkaRkaRmaQKaRnaRoaRpaRqaQPaRraRraRraRraQPaQSaQSaQSaQTaQSaQUaQSaRsaPUaRtaRuaRvaPUaRwaRxaRyaPYaRzaRAaRBaPYaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKJaLgaLgaMJaMKaMKaMKaMLaLgaRgaRhaRCaRDaREaRFaRGaRHaRiaRIaRJaRKaRKaRKaRLaRMaRNaQKaROaRPaRQaRRaQPaRraRraRraRraRraQSaQSaQSaQTaQSaQUaQSaQSaPUaPUaPUaPUaPUaPVaRSaRTaPYaPYaPYaPYaPYaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKJaNkaLgaMJaMKaMKaMKaMLaLgaRUaRhaRVaRWaRXaRYaRZaSaaRiaRIaSbaScaScaScaSdaRMaSeaQKaSfaMOaSgaShaQPaRraRraRraRraRraQSaQSaQSaQTaQSaSiaSjaSjaSkaSlaSjaSmaSjaSnaSoaSjaSpaSjaSjaSqaSraabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKJaLgaLgaMJaMKaMKaMKaMLaLgaSsaRhaStaSuaSvaSwaSxaSaaRiaRIaSbaScaScaScaSdaRMaSyaSzaSAaSAaSBaSCaQPaRraRraRraRraSDaQSaQSaSEaSFaSGaSGaSGaSGaSGaSGaSGaSGaSGaSGaSFaSHaSHaSHaSHaSIaSraabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKJaLgaLgaSJaSKaSKaSKaSLaLgaRgaRhaSMaSNaRXaSOaSPaSaaRiaRIaSQaSRaSRaSRaSSaSTaSTaQKaSUaMOaSVaSWaQPaQPaQPaQPaQPaQPaQSaQSaSXaQSaQSaQSaQSaQSaQSaQSaQSaQSaQSaQSaSYaQSaQSaQSaQSaSZaSraabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaKJaLgaLgaLgaLgaLgaLgaLgaLgaRgaRhaTaaTbaTcaTdaTeaTfaTgaThaRMaRMaRMaRMaTiaSTaSTaQKaTjaRPaQiaTkaTlaTlaTlaTlaTlaTlaTmaQSaSXaQSaQSaQSaQSaQSaQSaQSaQSaQSaQSaQSaQSaQSaQSaQSaQSaTnaSraabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaKJaToaToaToaToaTpaLgaTqaTraTsaTtaTuaTvaTwaTxaTyaTzaTAaTBaTCaRkaRmaRMaRMaRMaRMaQKaTDaRPaQgaTEaTFaTGaTHaTIaTJaTKaTLaTLaTMaTNaQSaQSaQSaQSaQSaQSaQSaTOaTNaQSaQSaQSaQSaQSaQSaTnaSraabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTlaKJaKJaKJaKJaKJaKJaKJaKJaKJaKJaRhaTPaTQaTQaTQaTRaRhaTSaTSaTTaTSaTUaTSaTSaQKaQKaQKaQgaQgaQgaTVaTWaTWaTWaTXaTWaTYaTYaTYaTYaTYaTYaTYaTYaTYaTYaTYaTYaTYaTZaTZaTZaTZaTZaTZaTZaUaaUbaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcaTWaTWaTWaTWaTWaUdaTWaTWaTWaUeaTWaUfaTWaTWaTWaUgaUhaTWaUdaTXaTWaUiaTWaTWaUjaUkaUlaTWaUmaTHaUnaTWaTWaTWaUoaUpaTYaUqaUraUsaUtaUuaUvaUwaUxaUyaUzaUAaTYaUBaUCaUDaUEaUFaUGaTZaUHaUbaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcaTWaTWaTWaUIaUJaUKaULaUMaUMaUMaUMaUNaUMaUOaUMaUPaUQaUMaURaUSaUTaUUaUVaUMaUMaUNaUMaUWaUMaUMaUXaUMaUYaUZaVaaTWaTYaVbaVcaVdaVeaVfaVeaVgaVhaVhaViaVjaTYaVkaVlaVmaVnaVoaVpaTZaVqaUbaUbaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcaVraVsaTWaVtaTWaTWaVuaVvaVvaVvaVvaVvaVvaVwaVvaVxaVyaVsaTWaTWaVzaTWaTXaVAaVBaVCaVBaVDaVBaVBaVEaVFaVGaVzaTWaVHaTYaVIaUzaUsaUzaVJaVKaVLaVMaUzaUzaUzaUsaVNaVNaVNaVOaVPaVQaTZaUHaVRaUbaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaVSaVSaVSaVTaVTaVTaVTaVUaVTaVTaVTaVVaVWaVWaVWaVXaVXaVXaVXaVXaVXaVYaVZaWaaWbaVXaVSaVSaVSaVSaVSaVSaVSaWcaWdaWdaWdaTYaWeaWeaTYaWfaWgaWhaTYaWiaWjaWkaVeaWlaWmaWnaWnaWoaVPaWpaTZaUHaVRaUbaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaVTaWqaWraWsaWtaWuaWvaWwaVTaauaWxaauaVXaWyaWzaVXaVXaVXaVXaWAaWBaWCaVXaabaabaabaabaabaWDaWEaWFaWGaWHaWIaTYaVIaUraUsaUzaWJaWKaWLaWMaUzaVJaUzaUsaWNaVNaVNaWOaWPaWQaTZaUHaVRaUbaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaVTaWRaWSaWSaWTaWSaWSaWUaWVaWWaWWaWXaVXaWzaWzaVXaVXaVXaVXaWYaWBaWZaVXaabaabaabaabaabaWDaXaaXbaWdaXcaXdaTYaVbaVcaXeaVeaXfaXgaXhaVeaVeaXiaXjaTYaXkaXlaXmaXnaXoaXpaTZaUHaVRaUbaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaVTaXqaWSaXraXsaXtaWSaXuaXvaXwaXxaXyaVXaXzaXzaVXaXAaXAaVXaXzaWBaXzaVXaabaabaabaabaabaWDaXBaXCaXDaXEaXFaTYaUqaXGaUsaUzaXHaUzaWJaUzaUzaXIaXJaTYaXKaXLaVNaXMaVPaXNaTZaUHaVRaUbaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaVTaXOaXPaXQaXRaXSaXPaXPaXTaXUaXVaXWaVXaXzaXzaXXaXzaXzaVXaXYaXZaYaaVXaabaabaabaabaabaWDaYbaYcaYdaYdaYdaYdaYdaYdaYdaYeaYfaYgaYhaYiaYjaYkaTYaYlaYmaYlaVNaYnaYoaTZaTZaYpaVRaUbaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaVTaYqaYraYsaYtaYuaYvaYwaYxaYyaYzaXyaVXaYAaYBaYCaYDaYDaYEaYFaYGaYHaVXaabaabaabaabaabaWDaWEaYcaYdaYIaYJaYKaYJaYLaYdaUsaUsaTYaYMaTYaUsaUsaTYaYNaYOaYlaYPaYQaYlaYlaYRaYSaYTaUbaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaVTaYUaYVaYVaYWaWSaWSaYXaYYaYZaYZaZaaVXaXzaZbaZcaXzaXzaXzaXzaZdaZeaVXaabaabaZfaZfaZfaZfaZfaZgaZhaZiaZjaZkaZjaZlaYdaZmaZnaZoaZpaZqaZraZsaZtaZuaZvaYlaZwaZxaZyaYlaZzaZAaZAaZAaZAaZAaZAaZAaZAaZAaZAaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaVTaVTaZBaZCaZDaZEaZFaVTaVTaWxaauaauaVXaVXaVXaVXaVXaVXaVXaVXaVXaVXaVXaabaabaZfaZGaZHaZIaZJaZKaZLaZMaZNaZOaZPaZQaYdaYlaZRaZSaZTaZUaZVaZWaZXaZYaZZbaababbacbadaYlbaeaZAbafbagbahbaibajbakbalbakbamaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaVTaVTaVTaVTaVTaVTaVTaVTaVTaauaauaauaabaabaabaabaabaabaabaabaabaabaZfaZfaZfaZfbanbaobapbaqbaoaYdbarbasbatbasbaubavaYdaYdaYlbawbaxaYlaYlaYlaYlaYlaYlbaybazaYlaYlaZzaZAbaAbakbakbaBbakbakbakbakbamaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZfbaCbaDbaEbaFbaobapbaqbaGaYdbaHbasbaIbasbasbaubaJaYdbaKbaLbaMbaNbaObaPbaQaZAaZAaZAaZAaZAaZAbaRaZAbaSbakbakbaTbaUbaUbaVbakbamaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZfbaWbaXbaobaobaYbaZbbabbbaYdbbcbasbaIbasbasbasbbdaYdbbebbfbbgbaNbbhbbibaQaZAbbjbbjbbkbbkbblbbmbbnbbobbpbbpbbqbbrbbsbbtbbubamaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZfbbvbaXbaobaobbwbbxbaobbyaYdbbzbbAbbBbbCbbDbbEbbFaYdbbGbbHbbIbaNbbhbbJbaQaZAbbjbbjbbKbbKbbLbbMbbNbbObbObbObbPbbQbbRbbtbakbamaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZfbbSbaXbaobaobaobapbaobbTaYdaYdaZhbbUbbVbbVaYdaYdaYdaYlbbWbbXbbYbbZbcabcaaZAaZAaZAaZAaZAaZAbcbaZAbakbakbakbaVbccbccbaVbakbamaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZfbcdbcebcfbcgbchbcibcjbckaZfbclbcmbcnbcmbcmbcobcpbcqbcrbcsbctbcubcvbcwbcxbcybczbcAbcAbcAbcAbcBaZAbcCbcDbakbcEbcFbakbakbakbamaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaZfaZfaZfaZfaZfaZfbcGaZfaZfaZfbcHbcIbcJbcKbcKbcLbcKbcKbcKbcMbcNbcNbcObcPbcabcQbcQbcQbcQbcQbcQbcQaZAaZAaZAaZAaZAaZAaZAaZAaZAaZAaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabbcabcRbcSbcTbcUbcVbcWbcXbcabcabcabcabcabcabcabcabcYbcYbcZbdabcaaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabbcabdbbdcbddbdebdfbdgbdhbcaaabaabaabaabaabaabbcabdibdibcZbdabcabdjaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabbcabdkbdkbdkbdkbdlbdmbdkbdkaabaabaabaabaabaabbcabcabcabdnbdobdpbdqbdraauaauaauaauaabaabaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabbdkbdsbdtbdubdvbdwbdxbdkaabaabaabaabaabaabaabaabbcabdnbdybdzbdAbdBaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabbdkbdCbdDbdEbdFbdEbdGbdkaabaabaabaabaabaabaabaabbcabdHbdIbcabdjaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbdkbdJbdKbdLbdMbdNbdGbdkaabaabaabbbYbbYbbYbbYbbYbbYbdObdObbYbbYbbYbbYbbYaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbdkbdPbdQbdRbdSbdEbdGbdkaabaabaabbbYbdTbdUbdUbdUbdUbdVbdVbdWbdUbdUbdUbdXaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbdkbdYbdEbdEbdEbdEbdGbdkaabaabaabbbYbdZbeabebbecbedbeebefbegbehbeibdUbdUaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbdkbejbekbelbembenbeobdkaabaabaabbbYbdZbeabepbefbefbefbefbefbefbefbeqberaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbdkbdkbdkbdkbdkbdkbdkbdkaabaabaabbbYbdZbeabesbetbeubevbewbexbeybezbdUbdUaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabbbYbeAbdUbdUbdUbdUbdUbdUbdWbdUbdUbdUbdXaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabbbYbbYbbYbbYbbYbbYbbYbbYbbYbbYbbYbbYbbYaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -4769,74 +4774,74 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabbewbewbewbewbewbewbewbewbewbewbewbewbewbewbexbexbexbexbexbexbexbexbexbexbexaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbewbewbewbewbewbewbewbewbewbewbewbewbewbewbexbexbexbexbexbexbexbexbexbexbexaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabbewbewbeybeybeybeybeybezbeybeAbeybeybeybewbeBbeBbeBbeBbeCbeDbeBbeBbeBbexbexaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabbewbewbeEbeybeFbeybeybeybeybeybeybeybeybewbeGbeBbeBbeBbeBbeBbeBbeBbeBbexbexaabaabaabaabaabbeHbeHbeHbeHbeHaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabbewbewbeIbeJbeKbeybeybeybeybeybeybeybeybeLbeBbeBbeBbeBbeBbeBbeBbeBbeMbexbexaabaabaabaabaabbeHbeNbeObePbeHaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbewbewbeQbeRbeSbeybeybeybeybeybeybeybeTbeUbeVbeBbeBbeBbeBbeBbeBbeWbeBbexbexbexbexbexaabaabbeHbeXbeYbeZbeHaabbfabfabfabfabfbbfbbfbbfbbfbbfbbfbbfbbfbaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabbewbewbeEbfcbeybeybeybeybeybeybeybeybfdbewbfebeBbeBbeBbeBbeBbffbfgbeBbfhbfibfjbfibexaabaabbeHbfkbflbfmbeHaabbfabfnbfobfobfpbfqbfrbfsbftbfubfvbfwbfbaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabbewbewbfxbfybfzbfzbfzbfAbfzbfBbfzbfzbfCbewbeBbeBbeBbeBbfDbfEbfFbfGbfHbfIbfJbfKbfLbexbfabfabeHbfMbfNbfObeHbfabfabfPbfabfbbfbbfQbfRbfSbfSbfSbfTbfUbfbbfbaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabbewbewbeybfVbeybewbewbewbewbewbewbewbewbewbexbexbexbexbexbexbexbexbexbexbexbfWbfibexbfXbfYbfZbgabgbbgcbgdbgdbgdbgebfbbfbbfwbfRbgfbfSbggbfSbfTbfRbfwbfbbfbaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbghbghbghbgibgjbgkbglaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnaGnbexbgmbgnbgobgpbgqbgqbgrbgrbgrbgrbgrbgrbgsbfbbgtbgubgvbgwbgxbgybgxbgzbgAbgBbgCbfbaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbghbgDbgEbgFbgGbgHaMlbgIbgJbgIbgIbgKbgLbgIbgIbgJbgIbgIbgIbgIbgIbgKbgIbgIbgIaGnbgMbgNbgNbgObgPbgQbgrbgRbgSbgrbgTbgrbgsbfbbfbbfwbfRbgUbfSbfSbfSbgVbfRbfwbfbbfbaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbghbgWbgXbgYbgZbhaaMlbgIbhbbhbbhbbhbbhbbhbbhbbhbbhbbhbbhbbhbbgIbgIbgIbgIbhcaGnbhdbgNbhebhfbgNbhgbgrbhhbhibgrbhhbgrbgsbfabfbbfbbfQbhjbhkbhlbhkbhmbfUbfbbfbaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbghbghbghbhnbhobhpaMlbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhrbgIbgIbgIbgIaMlbhdbhsbhtbhubhvbhwbgrbhxbgrbgrbhxbgrbgsbfaaabbfbbfwbhybhzbhAbhBbfRbfwbfbaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbhCbhCbghbhDbhobhEbhFbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhrbgIbgIbgIbgIaMlbhGbhHbhIbhubhJbhKbgrbhLbhMbhNbhObgrbgsbfaaabbfbbfbbfbbfbbhPbfbbfbbfbbfbaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbghbghbghbhQbhRbhSaMlbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhqbhrbgIbgIbgIbgIaMlbhTbhUbhVbhWbhXbhYbhZbiabibbicbidbgrbgsbfaaabbiebifbigbihbiibigbijbikbieaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbghbilbimbinbiobipaMlbgIbiqbiqbiqbiqbiqbiqbiqbiqbirbhqbhqbhqbhrbgIbgIbgIbhcaGnbhdbisbitbiubivbiwbgrbixbixbixbixbgrbgsbfaaabbiebiybizbizbiAbizbizbiBbieaabaabbiCbiDbiEbiFaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbghbiGbiHbiIbiJbiKaMlbgIbiLbgIbgIbgIbgIbgIbgIbiLbiMbhqbhqbhqbhrbgIbgIbgIbgIaGnbiNbiObgqbgqbgqbgqbgrbgrbgrbgrbgrbgrbiPbfaaabbiebiQbizbiRbiSbiRbizbiTbieaabaabbiUbiVbiWbiXaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbghbghbghbiYbiZbjaaMlaGnaGnaGnaMlaMlaMlaMlaMlaGnbjbaMlbhFaMlbjbaMlaMlaMlaGnaGnbjcbjdbjebjfbjgbjhbjibjjbjkbjlbjmbjfbgsbfaaabbiebiybjnbizbjobizbjpbiBbieaabaabbjqbjramubjsaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbjtbjtbjtbjtbjtbjtbjtbjtbjubjvbjwbjxbjybjzbjAbjBbjBbjBbjBbjBbjCbjBbjDbjEbjFbjGbjBbjBbjBbjBbjDbjcbjdbjHbjfbjIbjJbjKbjLbjMbjNbjObjfbgsbfaaabbiebjPbjQbjRbjSbjTbjUbjVbieaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbjtbjtbjtbjtbjtbjtbjtbjtbjWbjXbjYbjZbkabjZbkbbjZbkcbjZbjZbjZbjZbjZbjZbkdbjZbkebjZbkfbjZbkdbjZbkgbkhbkibkjbkkbklbkmbknbkobkpbkqbjfbgsbfaaabbiebiebiebiebiebiebiebiebieaabaabaabaabaabaabbiCbkrbksaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbjtbktbkubktbkubktbkvbjtbkwbkxbkybkzbkAbkBbkBbkBbkCbkDbkBbkBbkBbkBbkEbkFbkGbkzbkDbkHbkEbkFbkGbkBbkIbkJbkKbkLbjKbkMbkNbjMbjNbjObjfbgsbfaaabaabaabaabaabaabaabaabaabaabaabbiCbiVbksbjraabbiUbiVbkOaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjtbkubkubkubkubkubkubjtbkPbjcbkQbkRbkRbkRbkRbkSbkSbkSbkSbkSbkRbkRbkRbkTbkRbkUbkUbkVbkVbkWbkVbkVbkUbkUbkXbkXbkYbkZblablablbblcbjfbgsbldbldbldbldbldbldaabaabaabaabaabaabbiUbkrblebiFaabbjqbjrblfaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjtblgbkublgbkublgblhbjtblibljblkbkRbllblmblnbloblpbloblqbloblrblsbltblublvbkUblwblxblyblzblAblBblCbkUblDbkXbkXblEblFblFbkXbkXbkXbgsbldblGblHblIblJbldbldbldbldaabaabaabbjqbjrbjrbiXaabblKbjrbiXaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjtbkubkubkubkubkubkublLblibjcblMbkSblNblOblPblQblQblQblQblQblPblPblRblSblTbkUblUblVblWblXblYblZbmabkUbmbbmcbmdbmebmfbmgbmhbmibkXbgsbldbmjbmkbmlbmmbmnbmobmpbldaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjtbmqbkublgbkublgbkublLbmrbmsblMbkSbmtbmublPbmvbmvbmvbmvbmvblPblPblPbmwblTbkUbmxblVbmybmzbmAblVbmBbkUbmCbmDbmEbmFbmGbmHbmDbmIbmJbmKbldbmLbmMbmNbmObmkbmkbmPbldaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjtbmQbmRbmQbmSbmQbmQblLblibjcbmTbkSbmUbmublPbmvbmvbmvbmVbmWblPblPblPbmXbmYbmZbnabnbbncbndbnebnbbnfbmZbngbnhbnibnjbnkbnlbnmbnnbkXbnobldbnpbmMbnqbnrbnqbnqbnsbnqaabaabaabaabaabaabaabaabbntbntbntbntbntaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbjtbnubnvbnwbnxbnwbnybjtbnzbjcbnAbnBbnCbmublPbnDbnDbnDbnDbnDblPblPbnEbnFblTbkVbnGblVblVblVblVblVbnHbkVbmCbmDbnIbmDbnJbnKbmDbnLbkXbnMbldbnNbldbnqbnObnqbnPbnQbnqbnqbnqbntbntbntbntbntbntbntbnRbnSbntbntaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbjtbnTbnUbnVbnWbnVbnXbnYbnZboabobbocbodboeblPblPblPblPblPblPblPblPbofbogblTbkUbohboibojbokbolbombonboobopboqborbosbotboubovbowbkXbnobgbboxbgbbnqboybnqbozboAboBboCboDboEboFboGboHboIboJboKboLboLboMbntbntaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbjtboNboOboPboQboPboRbjtboSbjcboTbkSboUboVblPblPblPblPblPblPblPblPboWboXblTbkUbkUbkUbkUbkUbkUbkUbkUbkUbkXbkXbkXbkXbkXbkXbkXbkXbkXboYboZboxbgbbnqbnObpabpbbpcbpdbpdbpebpfbpgbphbpibpjbpkbplbpmboLboLbpnbntaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbjtbpobppbpqbprbpsbptbjtbpubjcbpvbkRbpwbpxbpybpzbpAbpBbpCbpDbpEbpFbpGbpHbpIbpJbpKbpLbpMbpNbpObpObpObpObpObpObpPbpQbpRbpSbpSbpSbpSbpSbnoboxbgbbnqbpTbpUbpbbpVbpWbpXbnqbntbntbpYbpZbntbqabqbbqcbqdboLbqebntaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbjtbjtbjtbjtbjtbjtbjtbjtbqfbqgbqhbkRbkRbqibqjbqkbkRbkRbkRbkRbkRbkRbqlbkRbkRbkRbqmbqnbqobqpbpObqqbqqbqqbqqbpObpPbqrbqsbpSbqtbqubqvbpSbqwbqxbgbbnqbpTbqybpbbqzbqAbqBbqCbqDbqEbqFbqGbqHbntbqIbqJboLboLbqKbntaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubjrbjrbqLbqMbqNbqObqPbqQbqRbqRbqSbqTbqUbqVbqWbqXbqYbqObqZbrabqLbqmbrbbpMbrcbpObqqbqqbqqbqqbqqbpPbrdbpPbpSbrebrfbrgbpSbrhbgbbgbbnqbribnqbrjbrkbrlbrmbqCbrnbqGbqFbqGbrobrpbrqbrrbrsbrsbrtbntaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubjrbjrbqLbrubqNbqObrvbrvbrwbrvbrvbrxbrybrzbrAbrBbrCbqObrvbrDbqLbrEbrFbpMbrGbpObqqbqqbqqbqqbqqbpPbrdbpPbpSbrHbrfbrIbpSbrhbgbbgbbnqbrJbnqbpbbrKbrLbrMbqCbrnbqGbqFbqGbrNbrObrPbqJboLboLbrQbntaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrRbjrbqLbrSbrTbrUbrVbrVbrWbrVbrXbrYbrZbsabrYbrYbsbbscbrvbsdbqLbqmbsebsfbsgbpObqqbqqbqqbqqbshbpPbrdbpPbsibpSbsjbpSbpSbskbfabfabnqbslbsmbsnbsobspbsobnqbsqbqGbqFbqGbrNbrObsrbqJboLboLbssbntaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrRbjrbqLbstbqNbqObrvbrvbsubrvbqObsvbrybswbrBbrBbsxbrvbrvbsybqLbszbsAbpMbrGbpObpObpObpObpObpObpPbsBbsCbsCbsCbsDbsCbsEbsFbsGbsHbpQbsIbsCbsJbqGbqFbqGbqGbrnbqGbqFbqGbqGbsKbsLbsMbsNboLbsObntaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrRbjrbqLbsPbqNbqObsQbsRbsSbsSbsTbsUbsVbsWbsXbsYbsYbsZbsYbtabqLbtbbtcbpMbpMbtdbtdbtdbtdbtdbtdbtebtfbtgbtgbtgbthbtgbtibtjbtkbtgbtgbtgbtgbtgbtlbtmbtnbtnbtobtnbtmbtnbtpbtqbtrbtsboHboHbttbntaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrRbtubqLbtvbtwbtxbtvbqLbtvbtvbtybqLbqLbqLbqLbqLbqLbqLbqLbqLbqLbtzbsAbtAbtAbtubtubtubtBbtBbtubtCbtDbtEbtEbtEbtFbtEbtGbtHbtEbtIbpPbpPbpPbpPbtJbqGbqGbqGbqFbqGbqGbtKbtLbntbtMbtNbtObtPbtQbntaabaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrRbtubtRbpPbtSbtTbpPbsHbpPbpPbtTbpPbtUbtVbtWbtXbtYbtZbpPbuabtubtAbubbtAbucbudbuebtubtubtubtubufbtTbpPbugbugbugbugbugbugbugbuhbuibujbukbulbumbunbunbumbuobunbumbupbupbuqburbusbntbutbutbntbupaauaauaauaauaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrRbtubuubpPbuvbuwbuxbuxbuxbuxbuybuzbuAbuBbuCbuDbuEbuFbuGbuGbuGbuHbuIbuJbuGbuGbuGbuKbuLbuJbuGbuMbsJbpPbuNbuObuPbuQbuQbuRbugbuSbuTbuTbuTbuTbumbuUbuVbuWbuXbuYbuZbvabvbbvcbvdbvebvfbvgbvhbvibvjaauaauaauaaaaaaaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrRbtubvkbsCbsCbvlbsCbsCbvmbsCbvnbsCbvobvpbsCbsCbsCbvqbvrbvsbtgbvtbvubtgbtgbvvbtgbtibtgbtgbtgbvwbvxbpPbvybvzbvzbvzbvzbvAbugbvBbvCbvDbvEbvFbumbvGbvHbvIbvJbvKbumbvLbvMbvMbvNbvebvObvObvObvObvjaauaiwaiwaiwaiwaiwaiwaiwaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrRbvPbvPbvPbvQbvRbvSbvTbvPbpRbvUbvVbtSbvWbpPbpPbpPbpPbtTbtSbpPbvVbpPbpPbpPbvXbpPbvYbpPbpPbpPbpPbpPbpRbuNbvzbvzbvzbvzbvZbugbvFbvFbvFbwabvFbumbwbbwcbwdbwebwfbwgbwhbwibwibwjbwkbvObvObwlbwmbwnbwobwpbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrRbvPbwrbwsbwtbwubwvbwwbwxbwxbwxbwxbwybwzbwAbwBbwCbwCbwDbwEbwCbwBbwCbwCbwCbwFbwFbwFbwGbwHbwIbugbuNbuNbuNbvzbvzbvzbvzbwJbugbwKbwLbwLbwMbwNbumbumbwcbwObwPbwcbunbwQbwRbwSbwTbwUbwVbwWbwXbwYbwZbwYbwZbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrRbvPbxabxbbxcbxcbxcbxdbwxbxebxfbxgbxhbxibwFbxjbxkbxlbxmbxnbxobwFbxpbxqbxrbxsbxtbwFbxubxvbxwbugbxxbxybxzbxAbxBbxCbxDbxEbugbxFbuTbvFbwabxFbvFbumbxGbxHbxIbxJbunbxKbvObxLbxMbvebvObvObxNbxObxPbxQbxPbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrRbvPbxRbxSbxTbxUbxTbxVbwxbxWbxXbxYbxZbyabwFbybbycbydbyebyfbygbyhbyibyjbykbycbylbwFbymbynbyobypbyqbyrbyrbyrbysbytbyubxAbyvbxFbuTbvFbwabywbyxbumbumbumbunbunbumbyybvObxLbxMbvebvObvObvObyzbwnbwnbyAbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrRbvPbvPbyBbyCbyDbyEbyFbwxbwxbyGbyHbxXbyIbwFbyJbycbycbxmbxnbycbyKbyLbycbycbycbyMbwFbyNbyObyPbugbyQbxAbyRbySbyTbyUbyVbyWbugbxFbuTbyXbwabyYbyZbzabzbbzcbzdbzebyxbzfbvObxLbxMbvebvObvObvObzgbxPbxQbxPbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrRbzhbvPbvPbvPbvPbvPbvPbwxbzibxXbwxbxXbxXbwFbzjbycbycbzkbzlbzmbznbzobzmbzmbzmbzpbwFbwGbzqbzrbugbugbugbugbugbugbugbugbugbugbxFbzsbzsbztbzubyxbzvbzwbzxbzybzzbyxbzAbzBbzCbzDbzEbwSbzFbzGbzHbzIbzJbzIbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrRbrRbrRbrRbrRbrRbrRbrRbwxbxXbxXbwxbzKbzKbwFbzLbycbzMbzNbzObzPbzQbzRbzPbzSbycbzTbzUbzVbyObyPbzWbzXbzYbzZbAabAbbAcaabaabbuTbxFbzsbAdbAebAfbyxbAgbzwbAhbAibAjbAkbAlbAmbAmbAnbAobvObvObzGbApbwnbAqbArbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamuamuamuamuamubjrbjrbjrbjrbwxbAsbAtbwxbzKbzKbwFbAubAvbAwbxmbxnbAxbAybAzbAwbAAbABbACbzUbADbyObAEbzWbAFbAGbAHbAHbAIbAcaabaabbuTbxFbzsbAJbAKbALbyxbAMbzwbANbAObAObAPbAQbAQbAQbARbvObASbASbATbApbvjaaaaiwbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbAUbAUbAUbAUbAUbAUbAUbAUbAVbAVbAVbAVbAVbAVbAVbAVbAWbAXbAVbAYbAZbAZbBabAYbAYbAYbBbbynbBcbBdbBebBfbBgbBhbBibAcaabaabbuTbxFbzsbBjbBkbBlbyxbBmbzybBnbzwbBobyxbBpbvObvObBqbBrbzJbBsbzJbBtbvjaaaaiwbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbAUbBubBvbBwbBxbBybBzbBAbBBbBCbBDbBDbBEbBFbBGbBHbBIbBJbBKbAYbBLbBMbBNbBObBPbAYbBQbBRbBSbzWbBTbBUbAHbAHbAIbAcaabbBVbBVbBWbzsbzsbzsbzsbyxbyxbBXbBYbzybBZbCabCbbCcbCdbupbupbupbCebupbupbupaiwaiwbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbAUbCfbCgbChbCibCjbCkbClbCmbCnbCobCobCpbCqbCqbCqbCrbCsbCqbCtbCubCvbBNbCwbCxbAYbCybCzbCAbzWbCBbCCbCDbCEbCFbAcaabbBVbCGbCHbCIbBVaabaabaabbyxbyxbyxbyxbyxbyxbupbupbupbupaabaabaabaabaabbCJaiwaiwbwqbwqbwqbwqbwqbwqbwqaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbAUbCKbCLbCMbCMbCNbCObCPbCQbCRbCSbCTbCTbCTbCTbCTbCUbCVbCWbAYbCXbCvbBNbCvbCvbCYbCZbyObDabDbbDbbDbbDbbDbbDbbDbaabbBVbDcbDdbDebBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaiwaiwbwqbwqbwqbwqbwqaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbAUbDfbDgbDhbDhbDhbDibBAbDjbDkbDlbDmbDnbDobDpbDqbDrbDsbDtbAZbDubDvbDwbDxbDybAZbDzbyObCAbDAbDBbDCbDDbDEbDFbDbaabbBVbDGbDHbDIbBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaiwaiwaiwaiwaiwaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbAUbDJbDKbDLbDMbDNbDObBAbDPbDkbDmbDmbDQbDRbDRbDSbDTbBJbDUbAZbDVbCvbDWbCvbDXbAZbDYbyObDZbDAbEabEbbEcbEcbEdbDbbzUbzUbzUbzUbEebBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbEfbEfbEfbEfbEfbEfbEfbEfbEgbDkbDmbDmbDnbEhbEibDqbDTbBJbEjbAYbEkbElbEmbEnbEobAYbEpbynbBcbEqbErbEsbEtbEubEvbDbbEwbExbEwbzUbEebBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbEfbEybEzbEAbEBbECbEDbEEbEFbDkbDmbDmbDQbDRbDRbDSbDTbBJbEGbAYbAYbAZbEHbAZbAYbAYbEIbyObBSbDAbEJbEKbEcbEcbELbDbbEwbEwbEwbzUbEebBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbEfbEMbENbEObEPbEQbERbESbETbEUbEVbEWbEXbEYbEZbFabFbbFcbFdbFebFfbFgbFhbFibFjbFkbFlbFmbFnbDAbFobFpbFqbFrbFsbDbbFtbFtbEwbzUbEebBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFubFvbEObFwbFxbFybFzbEEbDjbFAbFBbDmbDQbDRbDRbDSbFCbFDbCTbCTbCTbCTbFEbCTbCTbFFbFGbFHbCAbDbbDbbDbbDbbDbbDbbDbbFtbFtbFIbzUbEebBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFubFJbFKbFKbFLbFMbFNbEfbFObFPbFQbFRbFRbFSbFTbFRbFUbFVbFWbFXbFXbFXbFXbFYbFZbGabGbbGcbGdbGebGfbGgbGhbGibGhbGjbGhbGkbGlbzUbEebBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEfbGmbGmbGmbEfbEfbEfbEfbAVbAVbAVbAVbAVbAVbAVbAVbGnbGobGnbGnbAVbAVbAVbAVbAVbzUbGpbGqbGrbGsbGtbGubGvbGwbGtbGubGxbGybGzbGAbGBbBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabbGCbGDbGEbGFbGCbGGbGHbGIbGJbGKbGJbGJbGLbGMbGNbGHaabbGObGPbGQbGPbGRbGSbGTbGSbGUbGVbGWbGVbGUbGXbBVbBVbBVaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbGCbGYbGZbHabGCbHbbGHbHcbHdbHebHfbHfbHfbHgbHhbGHaabbGObHibHjbHkbGRbHlbHmbHnbGUbHobHpbHqbGUaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbGCbGCbHrbGCbGCbHsbGHbGJbHtbHubHvbHvbHwbHxbHybGHaabbGObHzbHAbHBbGRbHCbHDbHEbGUbHFbHGbHHbGUaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHIbHJbGZbHKbHLbHMbHNbHObHPbHQbHRbHSbHTbHxbHUbGHaabbGObHVbHWbHXbGRbHYbHZbIabGUbIbbIcbIdbGUaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHIbGZbGZbIebIfbIgbGHbIhbGJbIibIjbIkbIlbHxbImbGHaaubGObInbInbInbGRbIobIobIobGUbIpbIpbIpbGUaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGCbIqbIqbGCbGCbGCbGHbIrbGJbIsbItbItbIubIvbIwbGHaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbGHbIxbIybGJbGJbIzbGJbIybIAbGHaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbGHbGHbGHbGHbGHbGHbGHbGHbGHbGHaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeCbeCbeCbeCbeCbeCbeCbeCbeCbeCbeCaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeBbeCbeCbeCbeCbeCbeCbeCbeCbeCbeCbeCaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabbeBbeBbeDbeDbeDbeDbeDbeEbeDbeFbeDbeDbeDbeBbeGbeGbeGbeGbeHbeIbeGbeGbeGbeCbeCaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabbeBbeBbeJbeDbeKbeDbeDbeDbeDbeDbeDbeDbeDbeBbeLbeGbeGbeGbeGbeGbeGbeGbeGbeCbeCaabaabaabaabaabbeMbeMbeMbeMbeMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaabbeBbeBbeNbeObePbeDbeDbeDbeDbeDbeDbeDbeDbeQbeGbeGbeGbeGbeGbeGbeGbeGbeRbeCbeCaabaabaabaabaabbeMbeSbeTbeUbeMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbeBbeBbeVbeWbeXbeDbeDbeDbeDbeDbeDbeDbeYbeZbfabeGbeGbeGbeGbeGbeGbfbbeGbeCbeCbeCbeCbeCaabaabbeMbfcbfdbfebeMaabbffbffbffbffbfgbfgbfgbfgbfgbfgbfgbfgbfgaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabbeBbeBbeJbfhbeDbeDbeDbeDbeDbeDbeDbeDbfibeBbfjbeGbeGbeGbeGbeGbfkbflbeGbfmbfnbfobfnbeCaabaabbeMbfpbfqbfrbeMaabbffbfsbftbftbfubfvbfwbfxbfybfzbfAbfBbfgaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabbeBbeBbfCbfDbfEbfEbfEbfFbfEbfGbfEbfEbfHbeBbeGbeGbeGbeGbfIbfJbfKbfLbfMbfNbfObfPbfQbeCbffbffbeMbfRbfSbfTbeMbffbffbfUbffbfgbfgbfVbfWbfXbfXbfXbfYbfZbfgbfgaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabbeBbeBbeDbgabeDbeBbeBbeBbeBbeBbeBbeBbeBbeBbeCbeCbeCbeCbeCbeCbeCbeCbeCbeCbeCbgbbfnbeCbgcbgdbgebgfbggbghbgibgibgibgjbfgbfgbfBbfWbgkbfXbglbfXbfYbfWbfBbfgbfgaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbgmbgmbgmbgnbgobgpbgqaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsaGsbeCbgrbgsbgtbgubgvbgvbgwbgwbgwbgwbgwbgwbgxbfgbgybgzbgAbgBbgCbgDbgCbgEbgFbgGbgHbfgaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbgmbgIbgJbgKbgLbgMaMqbgNbgObgNbgNbgPbgQbgNbgNbgObgNbgNbgNbgNbgNbgPbgNbgNbgNaGsbgRbgSbgSbgTbgUbgVbgwbgWbgXbgwbgYbgwbgxbfgbfgbfBbfWbgZbfXbfXbfXbhabfWbfBbfgbfgaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbgmbhbbhcbhdbhebhfaMqbgNbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbhgbgNbgNbgNbgNbhhaGsbhibgSbhjbhkbgSbhlbgwbhmbhnbgwbhmbgwbgxbffbfgbfgbfVbhobhpbhqbhpbhrbfZbfgbfgaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbgmbgmbgmbhsbhtbhuaMqbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhwbgNbgNbgNbgNaMqbhibhxbhybhzbhAbhBbgwbhCbgwbgwbhCbgwbgxbffaabbfgbfBbhDbhEbhFbhGbfWbfBbfgaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbhHbhHbgmbhIbhtbhJbhKbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhwbgNbgNbgNbgNaMqbhLbhMbhNbhzbhObhPbgwbhQbhRbhSbhTbgwbgxbffaabbfgbfgbfgbfgbhUbfgbfgbfgbfgaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbgmbgmbgmbhVbhWbhXaMqbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhvbhwbgNbgNbgNbgNaMqbhYbhZbiabibbicbidbiebifbigbihbiibgwbgxbffaabbijbikbilbimbinbilbiobipbijaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabbgmbiqbirbisbitbiuaMqbgNbivbivbivbivbivbivbivbivbiwbhvbhvbhvbhwbgNbgNbgNbhhaGsbhibixbiybizbiAbiBbgwbiCbiCbiCbiCbgwbgxbffaabbijbiDbiEbiEbiFbiEbiEbiGbijaabaabbiHbiIbiJbiKaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbgmbiLbiMbiNbiObiPaMqbgNbiQbgNbgNbgNbgNbgNbgNbiQbiRbhvbhvbhvbhwbgNbgNbgNbgNaGsbiSbiTbgvbgvbgvbgvbgwbgwbgwbgwbgwbgwbiUbffaabbijbiVbiEbiWbiXbiWbiEbiYbijaabaabbiZbjabjbbjcaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbgmbgmbgmbjdbjebjfaMqaGsaGsaGsaMqaMqaMqaMqaMqaGsbjgaMqbhKaMqbjgaMqaMqaMqaGsaGsbjhbjibjjbjkbjlbjmbjnbjobjpbjqbjrbjkbgxbffaabbijbiDbjsbiEbjtbiEbjubiGbijaabaabbjvbjwamubjxaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbjybjybjybjybjybjybjybjybjzbjAbjBbjCbjDbjEbjFbjGbjGbjGbjGbjGbjHbjGbjIbjJbjKbjLbjGbjGbjGbjGbjIbjhbjibjMbjkbjNbjObjPbjQbjRbjSbjTbjkbgxbffaabbijbjUbjVbjWbjXbjYbjZbkabijaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbjybjybjybjybjybjybjybjybkbbkcbkdbkebkfbkebkgbkebkhbkebkebkebkebkebkebkibkebkjbkebkkbkebkibkebklbkmbknbkobkpbkqbkrbksbktbkubkvbjkbgxbffaabbijbijbijbijbijbijbijbijbijaabaabaabaabaabaabbiHbkwbkxaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbjybkybkzbkybkzbkybkAbjybkBbkCbkDbkEbkFbkGbkGbkGbkHbkIbkGbkGbkGbkGbkJbkKbkLbkEbkIbkMbkJbkKbkLbkGbkNbkObkPbkQbjPbkRbkSbjRbjSbjTbjkbgxbffaabaabaabaabaabaabaabaabaabaabaabbiHbjabkxbjwaabbiZbjabkTaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjybkzbkzbkzbkzbkzbkzbjybkUbjhbkVbkWbkWbkWbkWbkXbkXbkXbkXbkXbkWbkWbkWbkYbkWbkZbkZblablablbblablabkZbkZblcblcbldbleblfblfblgblhbjkbgxblibliblibliblibliaabaabaabaabaabaabbiZbkwbljbiKaabbjvbjwblkaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjybllbkzbllbkzbllblmbjyblnbloblpbkWblqblrblsbltblubltblvbltblwblxblyblzblAbkZblBblCblDblEblFblGblHbkZblIblcblcblJblKblKblcblcblcbgxbliblLblMblNblOblibliblibliaabaabaabbjvbjwbjwbjcaabblPbjwbjcaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjybkzbkzbkzbkzbkzbkzblQblnbjhblRbkXblSblTblUblVblVblVblVblVblUblUblWblXblYbkZblZbmabmbbmcbmdbmebmfbkZbmgbmhbmibmjbmkbmlbmmbmnblcbgxblibmobmpbmqbmrbmsbmtbmubliaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjybmvbkzbllbkzbllbkzblQbmwbmxblRbkXbmybmzblUbmAbmAbmAbmAbmAblUblUblUbmBblYbkZbmCbmabmDbmEbmFbmabmGbkZbmHbmIbmJbmKbmLbmMbmIbmNbmObmPblibmQbmRbmSbmTbmpbmpbmUbliaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbjybmVbmWbmVbmXbmVbmVblQblnbjhbmYbkXbmZbmzblUbmAbmAbmAbnabnbblUblUblUbncbndbnebnfbngbnhbnibnjbngbnkbnebnlbnmbnnbnobnpbnqbnrbnsblcbntblibnubmRbnvbnwbnvbnvbnxbnvaabaabaabaabaabaabaabaabbnybnybnybnybnyaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbjybnzbnAbnBbnCbnBbnDbjybnEbjhbnFbnGbnHbmzblUbnIbnIbnIbnIbnIblUblUbnJbnKblYblabnLbmabmabmabmabmabnMblabmHbmIbnNbmIbnObnPbmIbnQblcbnRblibnSblibnvbnTbnvbnUbnVbnvbnvbnvbnybnybnybnybnybnybnybnWbnXbnybnyaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbjybnYbnZboabobboabocbodboebofbogbohboibojblUblUblUblUblUblUblUblUbokbolblYbkZbombonboobopboqborbosbotboubovbowboxboybozboAboBblcbntbggboCbggbnvboDbnvboEboFboGboHboIboJboKboLboMboNboOboPboQboQboRbnybnyaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbjyboSboTboUboVboUboWbjyboXbjhboYbkXboZbpablUblUblUblUblUblUblUblUbpbbpcblYbkZbkZbkZbkZbkZbkZbkZbkZbkZblcblcblcblcblcblcblcblcblcbpdbpeboCbggbnvbnTbpfbpgbphbpibpibpjbpkbplbpmbpnbpobppbpqbprboQboQbpsbnyaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbjybptbpubpvbpwbpxbpybjybpzbjhbpAbkWbpBbpCbpDbpEbpFbpGbpHbpIbpJbpKbpLbpMbpNbpObpPbpQbpRbpSbpTbpTbpTbpTbpTbpTbpUbpVbpWbpXbpXbpXbpXbpXbntboCbggbnvbpYbpZbpgbqabqbbqcbnvbnybnybqdbqebnybqfbqgbqhbqiboQbqjbnyaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbjybjybjybjybjybjybjybjybqkbqlbqmbkWbkWbqnbqobqpbkWbkWbkWbkWbkWbkWbqqbkWbkWbkWbqrbqsbqtbqubpTbqvbqvbqvbqvbpTbpUbqwbqxbpXbqybqzbqAbpXbqBbqCbggbnvbpYbqDbpgbqEbqFbqGbqHbqIbqJbqKbqLbqMbnybqNbqOboQboQbqPbnyaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubjwbjwbqQbqRbqSbqTbqUbqVbqWbqWbqXbqYbqZbrabrbbrcbrdbqTbrebrfbqQbqrbrgbpRbrhbpTbqvbqvbqvbqvbqvbpUbribpUbpXbrjbrkbrlbpXbrmbggbggbnvbrnbnvbrobrpbrqbrrbqHbrsbqLbqKbqLbrtbrubrvbrwbrxbrxbrybnyaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubjwbjwbqQbrzbqSbqTbrAbrAbrBbrAbrAbrCbrDbrEbrFbrGbrHbqTbrAbrIbqQbrJbrKbpRbrLbpTbqvbqvbqvbqvbqvbpUbribpUbpXbrMbrkbrNbpXbrmbggbggbnvbrObnvbpgbrPbrQbrRbqHbrsbqLbqKbqLbrSbrTbrUbqOboQboQbrVbnyaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrWbjwbqQbrXbrYbrZbsabsabsbbsabscbsdbsebsfbsdbsdbsgbshbrAbsibqQbqrbsjbskbslbpTbqvbqvbqvbqvbsmbpUbribpUbsnbpXbsobpXbpXbspbffbffbnvbsqbsrbssbstbsubstbnvbsvbqLbqKbqLbrSbrTbswbqOboQboQbsxbnyaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrWbjwbqQbsybqSbqTbrAbrAbszbrAbqTbsAbrDbsBbrGbrGbsCbrAbrAbsDbqQbsEbsFbpRbrLbpTbpTbpTbpTbpTbpTbpUbsGbsHbsHbsHbsIbsHbsJbsKbsLbsMbpVbsNbsHbsObqLbqKbqLbqLbrsbqLbqKbqLbqLbsPbsQbsRbsSboQbsTbnyaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrWbjwbqQbsUbqSbqTbsVbsWbsXbsXbsYbsZbtabtbbtcbtdbtdbtebtdbtfbqQbtgbthbpRbpRbtibtibtibtibtibtibtjbtkbtlbtlbtlbtmbtlbtnbtobtpbtlbtlbtlbtlbtlbtqbtrbtsbtsbttbtsbtrbtsbtubtvbtwbtxboMboMbtybnyaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrWbtzbqQbtAbtBbtCbtAbqQbtAbtAbtDbqQbqQbqQbqQbqQbqQbqQbqQbqQbqQbtEbsFbtFbtFbtzbtzbtzbtGbtGbtzbtHbtIbtJbtJbtJbtKbtJbtLbtMbtJbtNbpUbpUbpUbpUbtObqLbqLbqLbqKbqLbqLbtPbtQbnybtRbtSbtTbtUbtVbnyaabaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrWbtzbtWbpUbtXbtYbpUbsMbpUbpUbtYbpUbtZbuabubbucbudbuebpUbufbtzbtFbugbtFbuhbuibujbtzbtzbtzbtzbukbtYbpUbulbulbulbulbulbulbulbumbunbuobupbuqburbusbusburbutbusburbuubuubuvbuwbuxbnybuybuybnybuuaauaauaauaauaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrWbtzbuzbpUbuAbuBbuCbuCbuCbuCbuDbuEbuFbuGbuHbuIbuJbuKbuLbuLbuLbuMbuNbuObuLbuLbuLbuPbuQbuObuLbuRbsObpUbuSbuTbuUbuVbuVbuWbulbuXbuYbuYbuYbuYburbuZbvabvbbvcbvdbvebvfbvgbvhbvibvjbvkbvlbvmbvnbvoaauaauaauaaaaaaaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrWbtzbvpbsHbsHbvqbsHbsHbvrbsHbvsbsHbvtbvubsHbsHbsHbvvbvwbvxbtlbvybvzbtlbtlbvAbtlbtnbtlbtlbtlbvBbvCbpUbvDbvEbvEbvEbvEbvFbulbvGbvHbvIbvJbvKburbvLbvMbvNbvObvPburbvQbvRbvRbvSbvjbvTbvTbvTbvTbvoaauaiwaiwaiwaiwaiwaiwaiwaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrWbvUbvUbvUbvVbvWbvXbvYbvUbpWbvZbwabtXbwbbpUbpUbpUbpUbtYbtXbpUbwabpUbpUbpUbwcbpUbwdbpUbpUbpUbpUbpUbpWbuSbvEbvEbvEbvEbwebulbvKbvKbvKbwfbvKburbwgbwhbwibwjbwkbwlbwmbwnbwnbwobwpbvTbvTbwqbwrbwsbwtbwubwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrWbvUbwwbwxbwybwzbwAbwBbwCbwCbwCbwCbwDbwEbwFbwGbwHbwHbwIbwJbwHbwGbwHbwHbwHbwKbwKbwKbwLbwMbwNbulbuSbuSbuSbvEbvEbvEbvEbwObulbwPbwQbwQbwRbwSburburbwhbwTbwUbwhbusbwVbwWbwXbwYbwZbxabxbbxcbxdbxebxdbxebwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrWbvUbxfbxgbxhbxhbxhbxibwCbxjbxkbxlbxmbxnbwKbxobxpbxqbxrbxsbxtbwKbxubxvbxwbxxbxybwKbxzbxAbxBbulbxCbxDbxEbxFbxGbxHbxIbxJbulbxKbuYbvKbwfbxKbvKburbxLbxMbxNbxObusbxPbvTbxQbxRbvjbvTbvTbxSbxTbxUbxVbxUbwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrWbvUbxWbxXbxYbxZbxYbyabwCbybbycbydbyebyfbwKbygbyhbyibyjbykbylbymbynbyobypbyhbyqbwKbyrbysbytbyubyvbywbywbywbyxbyybyzbxFbyAbxKbuYbvKbwfbyBbyCburburburbusbusburbyDbvTbxQbxRbvjbvTbvTbvTbyEbwsbwsbyFbwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrWbvUbvUbyGbyHbyIbyJbyKbwCbwCbyLbyMbycbyNbwKbyObyhbyhbxrbxsbyhbyPbyQbyhbyhbyhbyRbwKbySbyTbyUbulbyVbxFbyWbyXbyYbyZbzabzbbulbxKbuYbzcbwfbzdbzebzfbzgbzhbzibzjbyCbzkbvTbxQbxRbvjbvTbvTbvTbzlbxUbxVbxUbwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabamubrWbzmbvUbvUbvUbvUbvUbvUbwCbznbycbwCbycbycbwKbzobyhbyhbzpbzqbzrbzsbztbzrbzrbzrbzubwKbwLbzvbzwbulbulbulbulbulbulbulbulbulbulbxKbzxbzxbzybzzbyCbzAbzBbzCbzDbzEbyCbzFbzGbzHbzIbzJbwXbzKbzLbzMbzNbzObzNbwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamubrWbrWbrWbrWbrWbrWbrWbrWbwCbycbycbwCbzPbzPbwKbzQbyhbzRbzSbzTbzUbzVbzWbzUbzXbyhbzYbzZbAabyTbyUbAbbAcbAdbAebAfbAgbAhaabaabbuYbxKbzxbAibAjbAkbyCbAlbzBbAmbAnbAobApbAqbArbArbAsbAtbvTbvTbzLbAubwsbAvbAwbwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabamuamuamuamuamubjwbjwbjwbjwbwCbAxbAybwCbzPbzPbwKbAzbAAbABbxrbxsbACbADbAEbABbAFbAGbAHbzZbAIbyTbAJbAbbAKbALbAMbAMbANbAhaabaabbuYbxKbzxbAObAPbAQbyCbARbzBbASbATbATbAUbAVbAVbAVbAWbvTbAXbAXbAYbAubvoaaaaiwbwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbAZbAZbAZbAZbAZbAZbAZbAZbBabBabBabBabBabBabBabBabBbbBcbBabBdbBebBebBfbBdbBdbBdbBgbysbBhbBibBjbBkbBlbBmbBnbAhaabaabbuYbxKbzxbBobBpbBqbyCbBrbzDbBsbzBbBtbyCbBubvTbvTbBvbBwbzObBxbzObBybvoaaaaiwbwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbAZbBzbBAbBBbBCbBDbBEbBFbBGbBHbBIbBIbBJbBKbBLbBMbBNbBObBPbBdbBQbBRbBSbBTbBUbBdbBVbBWbBXbAbbBYbBZbAMbAMbANbAhaabbCabCabCbbzxbzxbzxbzxbyCbyCbCcbCdbzDbCebCfbCgbChbCibuubuubuubCjbuubuubuuaiwaiwbwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabbAZbCkbClbCmbCnbCobCpbCqbCrbCsbCtbCtbCubCvbCvbCvbCwbCxbCvbCybCzbCAbBSbCBbCCbBdbCDbCEbCFbAbbCGbCHbCIbCJbCKbAhaabbCabCLbCMbCNbCaaabaabaabbyCbyCbyCbyCbyCbyCbuubuubuubuuaabaabaabaabaabbCOaiwaiwbwvbwvbwvbwvbwvbwvbwvaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbAZbCPbCQbCRbCRbCSbCTbCUbCVbCWbCXbCYbCYbCYbCYbCYbCZbDabDbbBdbDcbCAbBSbCAbCAbDdbDebyTbDfbDgbDgbDgbDgbDgbDgbDgaabbCabDhbDibDjbCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaiwaiwbwvbwvbwvbwvbwvaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbAZbDkbDlbDmbDmbDmbDnbBFbDobDpbDqbDrbDsbDtbDubDvbDwbDxbDybBebDzbDAbDBbDCbDDbBebDEbyTbCFbDFbDGbDHbDIbDJbDKbDgaabbCabDLbDMbDNbCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaiwaiwaiwaiwaiwaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbAZbDObDPbDQbDRbDSbDTbBFbDUbDpbDrbDrbDVbDWbDWbDXbDYbBObDZbBebEabCAbEbbCAbEcbBebEdbyTbEebDFbEfbEgbEhbEhbEibDgbzZbzZbzZbzZbEjbCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabbEkbEkbEkbEkbEkbEkbEkbEkbElbDpbDrbDrbDsbEmbEnbDvbDYbBObEobBdbEpbEqbErbEsbEtbBdbEubysbBhbEvbEwbExbEybEzbEAbDgbEBbECbEBbzZbEjbCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaiwaiwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbEkbEDbEEbEFbEGbEHbEIbEJbEKbDpbDrbDrbDVbDWbDWbDXbDYbBObELbBdbBdbBebEMbBebBdbBdbENbyTbBXbDFbEObEPbEhbEhbEQbDgbEBbEBbEBbzZbEjbCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbEkbERbESbETbEUbEVbEWbEXbEYbEZbFabFbbFcbFdbFebFfbFgbFhbFibFjbFkbFlbFmbFnbFobFpbFqbFrbFsbDFbFtbFubFvbFwbFxbDgbFybFybEBbzZbEjbCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFzbFAbETbFBbFCbFDbFEbEJbDobFFbFGbDrbDVbDWbDWbDXbFHbFIbCYbCYbCYbCYbFJbCYbCYbFKbFLbFMbCFbDgbDgbDgbDgbDgbDgbDgbFybFybFNbzZbEjbCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFzbFObFPbFPbFQbFRbFSbEkbFTbFUbFVbFWbFWbFXbFYbFWbFZbGabGbbGcbGcbGcbGcbGdbGebGfbGgbGhbGibGjbGkbGlbGmbGnbGmbGobGmbGpbGqbzZbEjbCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEkbGrbGrbGrbEkbEkbEkbEkbBabBabBabBabBabBabBabBabGsbGtbGsbGsbBabBabBabBabBabzZbGubGvbGwbGxbGybGzbGAbGBbGybGzbGCbGDbGEbGFbGGbCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabbGHbGIbGJbGKbGHbGLbGMbGNbGObGPbGObGObGQbGRbGSbGMaabbGTbGUbGVbGUbGWbGXbGYbGXbGZbHabHbbHabGZbHcbCabCabCaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbGHbHdbHebHfbGHbHgbGMbHhbHibHjbHkbHkbHkbHlbHmbGMaabbGTbHnbHobHpbGWbHqbHrbHsbGZbHtbHubHvbGZaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbGHbGHbHwbGHbGHbHxbGMbGObHybHzbHAbHAbHBbHCbHDbGMaabbGTbHEbHFbHGbGWbHHbHIbHJbGZbHKbHLbHMbGZaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNbHObHebHPbHQbHRbHSbHTbHUbHVbHWbHXbHYbHCbHZbGMaabbGTbIabIbbIcbGWbIdbIebIfbGZbIgbIhbIibGZaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNbHebHebIjbIkbIlbGMbImbGObInbIobIpbIqbHCbIrbGMaaubGTbIsbIsbIsbGWbItbItbItbGZbIubIubIubGZaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGHbIvbIvbGHbGHbGHbGMbIwbGObIxbIybIybIzbIAbIBbGMaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabbGMbICbIDbGObGObIEbGObIDbIFbGMaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabbGMbGMbGMbGMbGMbGMbGMbGMbGMbGMaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaabaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaauaabaabaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaauaauaauaauaauaauaauaauaauaauaauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -4865,5 +4870,5 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -bIBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +bIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} diff --git a/maps/tether/tether-6-misc.dmm b/maps/tether/tether-6-misc.dmm index 5946192cc2..870c7b6b44 100644 --- a/maps/tether/tether-6-misc.dmm +++ b/maps/tether/tether-6-misc.dmm @@ -322,232 +322,286 @@ "gj" = (/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) "gk" = (/obj/structure/closet/crate,/turf/unsimulated/floor{icon_state = "vault"; dir = 1},/area/syndicate_mothership{name = "\improper Trader Base"}) "gl" = (/turf/unsimulated/floor{icon_state = "dark"},/area/syndicate_mothership{name = "\improper Trader Base"}) -"gm" = (/obj/structure/closet/wardrobe/yellow,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) -"gn" = (/obj/structure/closet/wardrobe/suit,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) -"go" = (/obj/item/weapon/stool/padded,/turf/unsimulated/floor{icon_state = "dark"},/area/syndicate_mothership{name = "\improper Trader Base"}) -"gp" = (/turf/unsimulated/floor{icon_state = "vault"; dir = 1},/area/syndicate_mothership{name = "\improper Trader Base"}) -"gq" = (/turf/unsimulated/mineral{icon = 'icons/turf/transit_vr.dmi'; icon_state = "rock"},/area/centcom/ferry) -"gr" = (/obj/item/weapon/stool/padded,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) -"gs" = (/obj/structure/closet/wardrobe/mixed,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) -"gt" = (/obj/structure/closet/wardrobe/xenos,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) -"gu" = (/obj/effect/landmark{name = "Trader"},/turf/unsimulated/floor{icon_state = "dark"},/area/syndicate_mothership{name = "\improper Trader Base"}) -"gv" = (/turf/unsimulated/wall{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gw" = (/obj/effect/floor_decal/transit/orange{dir = 8},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gx" = (/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gy" = (/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gz" = (/obj/effect/floor_decal/transit/orange{dir = 4},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gA" = (/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"}) -"gB" = (/obj/structure/toilet{dir = 4},/turf/simulated/shuttle/floor/red,/area/syndicate_mothership{name = "\improper Trader Base"}) -"gC" = (/obj/machinery/door/airlock/silver{name = "Toilet"},/turf/simulated/shuttle/floor/white,/area/syndicate_mothership{name = "\improper Trader Base"}) -"gD" = (/obj/effect/floor_decal/transit/orange{dir = 8},/obj/effect/transit/light{dir = 8},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gE" = (/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"}) -"gF" = (/turf/simulated/shuttle/floor,/area/syndicate_mothership{name = "\improper Trader Base"}) -"gG" = (/obj/effect/floor_decal/transit/orange{dir = 4},/obj/effect/transit/light{dir = 4},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gH" = (/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"}) -"gI" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{pixel_y = 3},/turf/simulated/shuttle/floor,/area/syndicate_mothership{name = "\improper Trader Base"}) -"gJ" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/turf/simulated/shuttle/floor,/area/syndicate_mothership{name = "\improper Trader Base"}) -"gK" = (/obj/structure/undies_wardrobe,/turf/simulated/shuttle/floor,/area/syndicate_mothership{name = "\improper Trader Base"}) -"gL" = (/obj/effect/floor_decal/transit/orange{dir = 8},/obj/effect/transit/light{dir = 8},/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gM" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 8; name = "thrower_escapeshuttletop(left)"; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gN" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 8; name = "thrower_escapeshuttletop(left)"; tiles = 0},/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gO" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 4; name = "thrower_escapeshuttletop(right)"; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gP" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 4; name = "thrower_escapeshuttletop(right)"; tiles = 0},/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gQ" = (/obj/effect/floor_decal/transit/orange{dir = 4},/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gR" = (/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"}) -"gS" = (/obj/effect/floor_decal/transit/orange{dir = 8},/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gT" = (/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/shuttle/escape/transit) -"gU" = (/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/shuttle/escape/transit) -"gV" = (/obj/effect/floor_decal/transit/orange{dir = 4},/obj/effect/transit/light{dir = 4},/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"gW" = (/obj/machinery/door/airlock/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"}) -"gX" = (/turf/simulated/shuttle/wall/dark/hard_corner,/area/shuttle/trade/centcom) -"gY" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_hatch"; locked = 1; name = "Shuttle Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"gZ" = (/turf/simulated/shuttle/wall/dark,/area/shuttle/trade/centcom) -"ha" = (/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/centcom) -"hb" = (/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/centcom) -"hc" = (/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/centcom) -"hd" = (/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/centcom) -"he" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hf" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/turf/simulated/shuttle/plating/airless,/area/shuttle/trade/centcom) -"hg" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) -"hh" = (/obj/structure/closet{icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; icon_state = "cabinet_closed"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hi" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/rd,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hj" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hk" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hl" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"hm" = (/obj/structure/bed/chair,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"hn" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"ho" = (/obj/machinery/sleep_console{dir = 8},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hp" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hq" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) -"hr" = (/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/centcom) -"hs" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ht" = (/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hu" = (/obj/machinery/door/airlock/silver{name = "Sleeping"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hv" = (/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"hw" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"hx" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"hy" = (/obj/machinery/atm{pixel_x = -32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hz" = (/obj/machinery/suit_cycler/syndicate,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hA" = (/obj/machinery/bodyscanner{dir = 8},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hB" = (/obj/machinery/body_scanconsole,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hC" = (/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/centcom) -"hD" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hE" = (/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/centcom) -"hF" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hG" = (/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/centcom) -"hH" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/hos,/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hI" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"hJ" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/glasses/square,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"hK" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 32},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"hL" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/inflatable_duck,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hM" = (/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/centcom) -"hN" = (/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/centcom) -"hO" = (/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/centcom) -"hP" = (/obj/structure/table/steel_reinforced,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hQ" = (/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/centcom) -"hR" = (/obj/vehicle/train/cargo/engine,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hS" = (/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) -"hT" = (/obj/machinery/door/airlock/glass_medical{name = "Medical Bay"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hU" = (/obj/machinery/optable,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hV" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) -"hW" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = -32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"hX" = (/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/centcom) -"hY" = (/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/centcom) -"hZ" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ia" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ib" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ic" = (/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/centcom) -"id" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/shuttle/plating,/area/shuttle/trade/centcom) -"ie" = (/obj/vehicle/train/cargo/trolley,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"if" = (/obj/machinery/light,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ig" = (/obj/machinery/vending/medical{pixel_y = -32; req_access = null},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ih" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 4; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ii" = (/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/centcom) -"ij" = (/obj/machinery/door/window/southleft{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ik" = (/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/centcom) -"il" = (/obj/machinery/door/window/southright{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"im" = (/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/centcom) -"in" = (/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/centcom) -"io" = (/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/centcom) -"ip" = (/obj/machinery/iv_drip,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iq" = (/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/centcom) -"ir" = (/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/centcom) -"is" = (/obj/machinery/vending/coffee,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"it" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iu" = (/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) -"iv" = (/obj/structure/closet/crate/secure/weapon,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iw" = (/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/centcom) -"ix" = (/obj/structure/table/steel_reinforced,/obj/machinery/newscaster{pixel_x = 32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iy" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) -"iz" = (/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/centcom) -"iA" = (/obj/structure/mirror{pixel_x = 0; pixel_y = 28},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) -"iB" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{pixel_y = 3},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) -"iC" = (/obj/machinery/vending/snack{name = "hacked Getmore Chocolate Corp"; prices = list()},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iD" = (/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/centcom) -"iE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iF" = (/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/centcom) -"iG" = (/obj/structure/frame/computer,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iH" = (/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_animal/corgi/tamaskan/spice,/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) -"iI" = (/obj/machinery/door/airlock/silver{name = "Toilet"},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) -"iJ" = (/obj/machinery/door/airlock/silver{name = "Restroom"},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) -"iK" = (/obj/structure/undies_wardrobe,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iL" = (/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/black,/area/shuttle/trade/centcom) -"iM" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/largecrate/animal/cat,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iN" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/structure/largecrate/animal/cow,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iO" = (/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/centcom) -"iP" = (/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/centcom) -"iQ" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/structure/closet/crate/secure/loot,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iR" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/structure/largecrate/hoverpod,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iS" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/mecha/working/ripley/mining,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iT" = (/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/centcom) -"iU" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) -"iV" = (/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/centcom) -"iW" = (/obj/machinery/computer/shuttle_control{name = "Beruang control console"; req_access = list(160); shuttle_tag = "Trade"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iX" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) -"iY" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"iZ" = (/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ja" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/structure/largecrate/animal/corgi,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jb" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/largecrate/animal/corgi,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jc" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/crate/internals,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jd" = (/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/centcom) -"je" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/crate/secure/loot,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jf" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/largecrate/hoverpod,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jg" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/mecha/working/ripley/firefighter,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jh" = (/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/centcom) -"ji" = (/obj/machinery/computer/arcade/battle,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jj" = (/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; tag = "icon-plant-09"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jk" = (/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/centcom) -"jl" = (/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/centcom) -"jm" = (/obj/machinery/vending/sovietsoda,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jn" = (/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/centcom) -"jo" = (/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jp" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 2; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jq" = (/obj/machinery/door/window/westleft{name = "Storefront"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jr" = (/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/centcom) -"js" = (/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/centcom) -"jt" = (/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/centcom) -"ju" = (/obj/machinery/vending/boozeomat{req_access = null},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jv" = (/obj/structure/table/standard,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jw" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jx" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"jy" = (/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/centcom) -"jz" = (/obj/machinery/door/window/northleft{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jA" = (/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/centcom) -"jB" = (/obj/machinery/door/window/northright{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jC" = (/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/centcom) -"jD" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 2; start_pressure = 740.5},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jE" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jF" = (/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/centcom) -"jG" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) -"jH" = (/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/centcom) -"jI" = (/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/centcom) -"jJ" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jK" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jL" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jM" = (/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/hairflower/violet,/obj/item/clothing/head/hairflower/blue,/obj/item/clothing/head/hairflower/orange,/obj/item/clothing/head/hairflower/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/centcom) -"jN" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/obj/structure/largecrate/animal/cat,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jO" = (/obj/machinery/door/airlock/glass_engineering{name = "Engineering"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jP" = (/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/centcom) -"jQ" = (/obj/structure/closet/wardrobe/captain,/obj/item/weapon/gun/projectile/revolver/mateba,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jR" = (/obj/machinery/light{dir = 1},/obj/structure/bookcase,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jS" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jT" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"jU" = (/obj/machinery/photocopier,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"jV" = (/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/centcom) -"jW" = (/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/centcom) -"jX" = (/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/centcom) -"jY" = (/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/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/janimaid,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"jZ" = (/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/centcom) -"ka" = (/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/centcom) -"kb" = (/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/centcom) -"kc" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"kd" = (/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/centcom) -"ke" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"kf" = (/obj/structure/table/woodentable,/obj/item/device/laptop,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"kg" = (/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/centcom) -"kh" = (/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/centcom) -"ki" = (/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/centcom) -"kj" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/machinery/atm{pixel_x = -32},/obj/machinery/meter,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"kk" = (/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/centcom) -"kl" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"km" = (/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/centcom) -"kn" = (/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/centcom) -"ko" = (/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/centcom) -"kp" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/captain,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"kq" = (/obj/structure/table/glass,/obj/machinery/computer3/wall_comp/telescreen/entertainment{pixel_y = -35},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"kr" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ks" = (/obj/machinery/light,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"kt" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"ku" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) -"kv" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/door/airlock/external{frequency = 1331; icon_state = "door_locked"; id_tag = "trade2_shuttle_inner"; locked = 1; name = "Ship Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"kw" = (/obj/machinery/door/airlock/external{frequency = 1331; icon_state = "door_locked"; id_tag = "trade2_shuttle_inner"; locked = 1; name = "Ship Hatch"; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"kx" = (/obj/machinery/vending/engivend,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"ky" = (/obj/machinery/vending/tool,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"kz" = (/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/centcom) -"kA" = (/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/centcom) -"kB" = (/obj/machinery/door/airlock/external{frequency = 1331; icon_state = "door_locked"; id_tag = "trade2_shuttle_outer"; locked = 1; name = "Ship Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"kC" = (/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/external{frequency = 1331; icon_state = "door_locked"; id_tag = "trade2_shuttle_outer"; locked = 1; name = "Ship Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) -"kD" = (/obj/effect/transit/light{dir = 8},/turf/unsimulated/mineral{icon = 'icons/turf/transit_vr.dmi'; icon_state = "rock"},/area/centcom/ferry) +"gm" = (/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/transit/north/shuttlespace_ns12,/area/space) +"gn" = (/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/transit/north/shuttlespace_ns9,/area/space) +"go" = (/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/transit/north/shuttlespace_ns7,/area/space) +"gp" = (/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/transit/north/shuttlespace_ns11,/area/space) +"gq" = (/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/transit/north/shuttlespace_ns6,/area/space) +"gr" = (/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/transit/north/shuttlespace_ns10,/area/space) +"gs" = (/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/transit/north/shuttlespace_ns8,/area/space) +"gt" = (/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/transit/north/shuttlespace_ns5,/area/space) +"gu" = (/obj/structure/closet/wardrobe/yellow,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) +"gv" = (/obj/structure/closet/wardrobe/suit,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) +"gw" = (/obj/item/weapon/stool/padded,/turf/unsimulated/floor{icon_state = "dark"},/area/syndicate_mothership{name = "\improper Trader Base"}) +"gx" = (/turf/unsimulated/floor{icon_state = "vault"; dir = 1},/area/syndicate_mothership{name = "\improper Trader Base"}) +"gy" = (/turf/unsimulated/mineral{icon = 'icons/turf/transit_vr.dmi'; icon_state = "rock"},/area/centcom/ferry) +"gz" = (/turf/space/transit/north/shuttlespace_ns8,/area/space) +"gA" = (/turf/space/transit/north/shuttlespace_ns6,/area/space) +"gB" = (/turf/space/transit/north/shuttlespace_ns10,/area/space) +"gC" = (/turf/space/transit/north/shuttlespace_ns5,/area/space) +"gD" = (/turf/space/transit/north/shuttlespace_ns9,/area/space) +"gE" = (/turf/space/transit/north/shuttlespace_ns7,/area/space) +"gF" = (/turf/space/transit/north/shuttlespace_ns4,/area/space) +"gG" = (/turf/space/transit/north/shuttlespace_ns11,/area/space) +"gH" = (/obj/item/weapon/stool/padded,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) +"gI" = (/obj/structure/closet/wardrobe/mixed,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) +"gJ" = (/obj/structure/closet/wardrobe/xenos,/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) +"gK" = (/obj/effect/landmark{name = "Trader"},/turf/unsimulated/floor{icon_state = "dark"},/area/syndicate_mothership{name = "\improper Trader Base"}) +"gL" = (/turf/unsimulated/wall{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"gM" = (/obj/effect/floor_decal/transit/orange{dir = 8},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"gN" = (/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"gO" = (/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"gP" = (/obj/effect/floor_decal/transit/orange{dir = 4},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"gQ" = (/turf/space/transit/north/shuttlespace_ns3,/area/space) +"gR" = (/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"}) +"gS" = (/turf/space/transit/north/shuttlespace_ns2,/area/space) +"gT" = (/obj/structure/toilet{dir = 4},/turf/simulated/shuttle/floor/red,/area/syndicate_mothership{name = "\improper Trader Base"}) +"gU" = (/obj/machinery/door/airlock/silver{name = "Toilet"},/turf/simulated/shuttle/floor/white,/area/syndicate_mothership{name = "\improper Trader Base"}) +"gV" = (/obj/effect/floor_decal/transit/orange{dir = 8},/obj/effect/transit/light{dir = 8},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"gW" = (/turf/space/transit/north/shuttlespace_ns1,/area/space) +"gX" = (/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"}) +"gY" = (/turf/simulated/shuttle/floor,/area/syndicate_mothership{name = "\improper Trader Base"}) +"gZ" = (/obj/effect/floor_decal/transit/orange{dir = 4},/obj/effect/transit/light{dir = 4},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"ha" = (/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"}) +"hb" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{pixel_y = 3},/turf/simulated/shuttle/floor,/area/syndicate_mothership{name = "\improper Trader Base"}) +"hc" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/turf/simulated/shuttle/floor,/area/syndicate_mothership{name = "\improper Trader Base"}) +"hd" = (/obj/structure/undies_wardrobe,/turf/simulated/shuttle/floor,/area/syndicate_mothership{name = "\improper Trader Base"}) +"he" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns4,/area/space) +"hf" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 4; name = "thrower_escapeshuttletop(right)"; tiles = 0},/turf/space/transit/north/shuttlespace_ns2,/area/space) +"hg" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 4; name = "thrower_escapeshuttletop(right)"; tiles = 0},/turf/space/transit/north/shuttlespace_ns4,/area/space) +"hh" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 4; name = "thrower_escapeshuttletop(right)"; tiles = 0},/turf/space/transit/north/shuttlespace_ns3,/area/space) +"hi" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 4; name = "thrower_escapeshuttletop(right)"; tiles = 0},/turf/space/transit/north/shuttlespace_ns1,/area/space) +"hj" = (/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/transit/north/shuttlespace_ns4,/area/space) +"hk" = (/obj/effect/floor_decal/transit/orange{dir = 8},/obj/effect/transit/light{dir = 8},/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"hl" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 8; name = "thrower_escapeshuttletop(left)"; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"hm" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 8; name = "thrower_escapeshuttletop(left)"; tiles = 0},/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"hn" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 4; name = "thrower_escapeshuttletop(right)"; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"ho" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 4; name = "thrower_escapeshuttletop(right)"; tiles = 0},/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"hp" = (/obj/effect/floor_decal/transit/orange{dir = 4},/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"hq" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns3,/area/space) +"hr" = (/turf/space/transit/north/shuttlespace_ns1,/area/shuttle/tether/transit) +"hs" = (/turf/space/transit/north/shuttlespace_ns3,/area/shuttle/tether/transit) +"ht" = (/turf/space/transit/north/shuttlespace_ns2,/area/shuttle/tether/transit) +"hu" = (/turf/space/transit/north/shuttlespace_ns4,/area/shuttle/tether/transit) +"hv" = (/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/transit/north/shuttlespace_ns3,/area/space) +"hw" = (/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"}) +"hx" = (/obj/effect/floor_decal/transit/orange{dir = 8},/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"hy" = (/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/shuttle/escape/transit) +"hz" = (/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/shuttle/escape/transit) +"hA" = (/obj/effect/floor_decal/transit/orange{dir = 4},/obj/effect/transit/light{dir = 4},/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"hB" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns2,/area/space) +"hC" = (/turf/space/transit/north/shuttlespace_ns15,/area/shuttle/tether/transit) +"hD" = (/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/transit/north/shuttlespace_ns2,/area/space) +"hE" = (/turf/space/transit/north/shuttlespace_ns15,/area/space) +"hF" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns1,/area/space) +"hG" = (/turf/space/transit/north/shuttlespace_ns14,/area/shuttle/tether/transit) +"hH" = (/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/transit/north/shuttlespace_ns1,/area/space) +"hI" = (/obj/machinery/door/airlock/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"}) +"hJ" = (/turf/space/transit/north/shuttlespace_ns14,/area/space) +"hK" = (/turf/space/transit/north/shuttlespace_ns13,/area/shuttle/tether/transit) +"hL" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns15,/area/space) +"hM" = (/turf/simulated/shuttle/wall/dark/hard_corner,/area/shuttle/trade/centcom) +"hN" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_hatch"; locked = 1; name = "Shuttle Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"hO" = (/turf/simulated/shuttle/wall/dark,/area/shuttle/trade/centcom) +"hP" = (/turf/space/transit/north/shuttlespace_ns13,/area/space) +"hQ" = (/turf/space/transit/north/shuttlespace_ns12,/area/shuttle/tether/transit) +"hR" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns14,/area/space) +"hS" = (/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/centcom) +"hT" = (/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/centcom) +"hU" = (/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/centcom) +"hV" = (/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/centcom) +"hW" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"hX" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/turf/simulated/shuttle/plating/airless,/area/shuttle/trade/centcom) +"hY" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) +"hZ" = (/turf/space/transit/north/shuttlespace_ns12,/area/space) +"ia" = (/turf/space/transit/north/shuttlespace_ns11,/area/shuttle/tether/transit) +"ib" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns13,/area/space) +"ic" = (/obj/structure/closet{icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; icon_state = "cabinet_closed"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"id" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/rd,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ie" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"if" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ig" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"ih" = (/obj/structure/bed/chair,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"ii" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"ij" = (/obj/machinery/sleep_console{dir = 8},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ik" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"il" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) +"im" = (/turf/space/transit/north/shuttlespace_ns10,/area/shuttle/tether/transit) +"in" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns12,/area/space) +"io" = (/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/centcom) +"ip" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iq" = (/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ir" = (/obj/machinery/door/airlock/silver{name = "Sleeping"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"is" = (/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"it" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"iu" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"iv" = (/obj/machinery/atm{pixel_x = -32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iw" = (/obj/machinery/suit_cycler/syndicate,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ix" = (/obj/machinery/bodyscanner{dir = 8},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iy" = (/obj/machinery/body_scanconsole,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iz" = (/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/centcom) +"iA" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iB" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns9,/area/space) +"iC" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdown"; stopper = 0; tiles = 0},/turf/space/transit/north/shuttlespace_ns11,/area/space) +"iD" = (/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/transit/north/shuttlespace_ns15,/area/space) +"iE" = (/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/centcom) +"iF" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iG" = (/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/centcom) +"iH" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/hos,/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iI" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"iJ" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/glasses/square,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"iK" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 32},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"iL" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/inflatable_duck,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iM" = (/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/centcom) +"iN" = (/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/centcom) +"iO" = (/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/centcom) +"iP" = (/obj/structure/table/steel_reinforced,/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iQ" = (/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/centcom) +"iR" = (/obj/vehicle/train/cargo/engine,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iS" = (/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) +"iT" = (/obj/machinery/door/airlock/glass_medical{name = "Medical Bay"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iU" = (/obj/machinery/optable,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iV" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) +"iW" = (/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/transit/north/shuttlespace_ns14,/area/space) +"iX" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = -32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"iY" = (/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/centcom) +"iZ" = (/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/centcom) +"ja" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jb" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jc" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jd" = (/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/centcom) +"je" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/shuttle/plating,/area/shuttle/trade/centcom) +"jf" = (/obj/vehicle/train/cargo/trolley,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jg" = (/obj/machinery/light,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jh" = (/obj/machinery/vending/medical{pixel_y = -32; req_access = null},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ji" = (/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/transit/north/shuttlespace_ns13,/area/space) +"jj" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 4; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jk" = (/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/centcom) +"jl" = (/obj/machinery/door/window/southleft{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jm" = (/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/centcom) +"jn" = (/obj/machinery/door/window/southright{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jo" = (/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/centcom) +"jp" = (/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/centcom) +"jq" = (/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/centcom) +"jr" = (/obj/machinery/iv_drip,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"js" = (/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/centcom) +"jt" = (/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/centcom) +"ju" = (/obj/machinery/vending/coffee,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jv" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jw" = (/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) +"jx" = (/obj/structure/closet/crate/secure/weapon,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jy" = (/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/centcom) +"jz" = (/obj/structure/table/steel_reinforced,/obj/machinery/newscaster{pixel_x = 32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jA" = (/obj/structure/toilet,/obj/machinery/light/small{dir = 1},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) +"jB" = (/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/centcom) +"jC" = (/obj/structure/mirror{pixel_x = 0; pixel_y = 28},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) +"jD" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{pixel_y = 3},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) +"jE" = (/obj/machinery/vending/snack{name = "hacked Getmore Chocolate Corp"; prices = list()},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jF" = (/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/centcom) +"jG" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jH" = (/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/centcom) +"jI" = (/obj/structure/frame/computer,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jJ" = (/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_animal/corgi/tamaskan/spice,/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) +"jK" = (/obj/machinery/door/airlock/silver{name = "Toilet"},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) +"jL" = (/obj/machinery/door/airlock/silver{name = "Restroom"},/turf/simulated/shuttle/floor/white,/area/shuttle/trade/centcom) +"jM" = (/obj/structure/undies_wardrobe,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jN" = (/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/black,/area/shuttle/trade/centcom) +"jO" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/largecrate/animal/cat,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jP" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/structure/largecrate/animal/cow,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jQ" = (/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/centcom) +"jR" = (/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/centcom) +"jS" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/structure/closet/crate/secure/loot,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jT" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/structure/largecrate/hoverpod,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jU" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/mecha/working/ripley/mining,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jV" = (/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/centcom) +"jW" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) +"jX" = (/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/centcom) +"jY" = (/obj/machinery/computer/shuttle_control{name = "Beruang control console"; req_access = list(160); shuttle_tag = "Trade"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"jZ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/shuttle/floor/darkred,/area/shuttle/trade/centcom) +"ka" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kb" = (/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kc" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/structure/largecrate/animal/corgi,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kd" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/largecrate/animal/corgi,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ke" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/crate/internals,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kf" = (/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/centcom) +"kg" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/crate/secure/loot,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kh" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/largecrate/hoverpod,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ki" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/mecha/working/ripley/firefighter,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kj" = (/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/centcom) +"kk" = (/obj/machinery/computer/arcade/battle,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kl" = (/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; tag = "icon-plant-09"},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"km" = (/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/centcom) +"kn" = (/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/centcom) +"ko" = (/obj/machinery/vending/sovietsoda,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kp" = (/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/centcom) +"kq" = (/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kr" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 2; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ks" = (/obj/machinery/door/window/westleft{name = "Storefront"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kt" = (/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/centcom) +"ku" = (/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/centcom) +"kv" = (/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/centcom) +"kw" = (/obj/machinery/vending/boozeomat{req_access = null},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kx" = (/obj/structure/table/standard,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ky" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kz" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/techfloor_grid{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"kA" = (/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/centcom) +"kB" = (/obj/machinery/door/window/northleft{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kC" = (/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/centcom) +"kD" = (/obj/machinery/door/window/northright{name = "Cargo Hold"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kE" = (/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/centcom) +"kF" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 2; start_pressure = 740.5},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kG" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kH" = (/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/centcom) +"kI" = (/obj/effect/step_trigger/thrower{affect_ghosts = 1; direction = 2; name = "thrower_throwdownside"; nostop = 1; stopper = 0; tiles = 0},/turf/unsimulated/floor/maglev{icon = 'icons/turf/transit_vr.dmi'},/area/centcom/ferry) +"kJ" = (/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/centcom) +"kK" = (/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/centcom) +"kL" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kM" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kN" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kO" = (/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/hairflower/violet,/obj/item/clothing/head/hairflower/blue,/obj/item/clothing/head/hairflower/orange,/obj/item/clothing/head/hairflower/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/centcom) +"kP" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/obj/structure/largecrate/animal/cat,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kQ" = (/obj/machinery/door/airlock/glass_engineering{name = "Engineering"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kR" = (/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/centcom) +"kS" = (/obj/structure/closet/wardrobe/captain,/obj/item/weapon/gun/projectile/revolver/mateba,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kT" = (/obj/machinery/light{dir = 1},/obj/structure/bookcase,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kU" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"kV" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"kW" = (/obj/machinery/photocopier,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"kX" = (/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/centcom) +"kY" = (/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/centcom) +"kZ" = (/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/centcom) +"la" = (/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/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/janimaid,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lb" = (/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/centcom) +"lc" = (/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/centcom) +"ld" = (/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/centcom) +"le" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = list(160)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lf" = (/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/centcom) +"lg" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"lh" = (/obj/structure/table/woodentable,/obj/item/device/laptop,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"li" = (/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/centcom) +"lj" = (/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/centcom) +"lk" = (/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/centcom) +"ll" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/machinery/atm{pixel_x = -32},/obj/machinery/meter,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lm" = (/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/centcom) +"ln" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lo" = (/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/centcom) +"lp" = (/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/centcom) +"lq" = (/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/centcom) +"lr" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/captain,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ls" = (/obj/structure/table/glass,/obj/machinery/computer3/wall_comp/telescreen/entertainment{pixel_y = -35},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lt" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lu" = (/obj/machinery/light,/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"lv" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"lw" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/carpet,/area/shuttle/trade/centcom) +"lx" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/door/airlock/external{frequency = 1331; icon_state = "door_locked"; id_tag = "trade2_shuttle_inner"; locked = 1; name = "Ship Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"ly" = (/obj/machinery/door/airlock/external{frequency = 1331; icon_state = "door_locked"; id_tag = "trade2_shuttle_inner"; locked = 1; name = "Ship Hatch"; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lz" = (/obj/machinery/vending/engivend,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lA" = (/obj/machinery/vending/tool,/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lB" = (/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/centcom) +"lC" = (/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/centcom) +"lD" = (/obj/machinery/door/airlock/external{frequency = 1331; icon_state = "door_locked"; id_tag = "trade2_shuttle_outer"; locked = 1; name = "Ship Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lE" = (/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/external{frequency = 1331; icon_state = "door_locked"; id_tag = "trade2_shuttle_outer"; locked = 1; name = "Ship Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/shuttle/trade/centcom) +"lF" = (/obj/effect/transit/light{dir = 8},/turf/unsimulated/mineral{icon = 'icons/turf/transit_vr.dmi'; icon_state = "rock"},/area/centcom/ferry) (1,1,1) = {" aaabacadaeafagahaiajakalamanaoaaabacadaeafagahaiajapaqaqaqaqaqaqaqaqaqaqaqapapapapaparasasasasasasasasasasarasasasasasasasasasasarasasasasasasasasasasarasasasasasasasasasasarasasasasasasasasasasarasasasasasasasasasasarasasasasasasasasasasar @@ -577,39 +631,39 @@ amaBaCaDaEaFaGaHatauavawaxayazaAaBaCaDaEaFaGaHatagapapapapapapapapapapapapapapap adaHatauavawaxayazaAaBaCaDaEaFaGaHatauavawaxayazamapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagagagagagagagagagagagagagagagagagagagagagagagaap anaoaaabacadaeafagahaiajakalamanaoaaabacadaeafagahapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgaap apapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgcgdgegfggghgbgigjgjgjgjgjgbgkglgkglgkglgbgaap -apapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgcgjgjgjgjgmgbgnglglglgogjgbgpglgpglgpglgbgaap -apgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgcgjgjgrgjgsgbgtglgugugogjgbglglglglglglgbgaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgbgbgjgrgjgjgjgjglguguglgjgAglglglglglglgbgaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgBgCgjgjgjgjgjgjglguguglgjgAglglglglglglgbgaap -apgqgqgqgqgvgDgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgbgbgEgFgbgbgbgjglgugugogjgbglglglglglglgbgaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgGgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgHgFgFgFgFgIgbgjglglglgogjgbgpglgkglgpglgbgaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgHgFgJgKgFgIgbgjgjgjgjgjgjgbgkglgkglgkglgbgaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgbgbgbgbgbgbgbgbgbgjgjgbgbgbgbgbgbgbgbgbgbgaap -apgqgqgqgqgvgLgMgNgMgMgOgOgPgOgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapgbgjgRgbapapapapapapapapapgaap -apgqgqgqgqgvgSgMgTgUgUgUgUgTgOgVgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapgbgjgjgbapapapapapapapapapgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapgbgWgWgbapapapapapapapapapgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagagagagagagagagagagagagagagaapapapapapapapapapgXgYgYgXapapapapgZgZgZgZgZgaap -apgqgqgqgqgvgLgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapgZgZgZgZgZgZhahbhcgZapapapapapgZgZhdhegZgZapapgZgZgZgZhfhggaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgVgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapgZgXhhhigZhjhkhlhmhngZgZapapapgZgZgXgYgYgXgZhahcgXhohpgZhfhqgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapaphrhshththuhththvhwhxgZgZhahbhcgZgZhyhththzgZhAhBhChthDgZhfhqgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapaphEhFhGhHgZhththIhJhKgZhLhMhNhOhPhQhRhShShthThththththUgZhfhVgaap -apgqgqgqgqgvgLgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapgZgZgZgZgZgZhWhththXgZhYhZiaibicidiehShShthThtifighthtgZgZgZgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgVgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapapgZgZgZihhtgZgXiiijikiliminiehShthWgXgZgZgXioipgZgZapgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapgZiqirgZgZgZgZgZgZgZgZishthththtiththththtgZgZiuhtgXgZivivgZgZgZgZapapgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagZgZiwixgZiygZiziAiBgXgZiChthShShShShShShShShShthShtiDiEhShShtgZhfhgapapgaap -apgqgqgqgqgvgLgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaiFiGhSiHgZiIgXgZiJgZiKgZiLhShSiMiNiOiPiQiRiShShShShSiTiUhShShtgZhfhqapapgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgVgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaiViWiXhSiYhthththtiZhthththShSjajbjcjdjejfjghShShShSjhhShShShtgZhfhqapapgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagZgZjijjgZjkjljmjnjohtjphththShShShShShShShShShthShtjqhtjrhShDgZhfhVapapgaap -apgqgqgqgqgvgSgUgTgUgUgUgUgTgUgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapgZjsjtgZgZgZgZgZgZgZgXjuhthththtifhthththtgZgZiuhtgXgZjvjwgZgZgZgZapapgaap -apgqgqgqgqgvgLjxgTgUgUgUgUgTjxgQgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapapgZgZgZihhtgZgXjyjzjAjBjChQjDhShtjEgXgZgZgZhtjFgZgZapgaap -apgqgqgqgqgvgSjxjGjxjxjxjxjGjxgVgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapgZgZgZgZgZhtjEhthtjHgZjIjJjKjLjMidjNhShShtjOhtithththtgZgZgZgaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapjPjQjRjSgZhththvjTjUgZjVjWjXjYjZinkahShShtjOhththththtgZhfhggaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapkbhththtkchthtkdkekfgZgZkgkhkigZgZkjkkklhtgZkmknkohthDgZhfhqgaap -apgqgqgqgqgvgDgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapgZgXkpkqgZkrhtksktkugZgZapapapgZgZgXkvkwgXgZkgkigZkxkygZhfhqgaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgGgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapgZgZgZgZgZgZkgkhkigZapapapapapgZgZkzkAgZgZapapgZgZgZgZhfhVgaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapapapapapapapapapapapapapapapgXkBkCgXapapapapgZgZgZgZgZgaap -apgqgqgqgqgvgwgxgygxgxgxgxgygxgzgvgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagaap -apgqgqgqgqgqkDgqgqgqgqgqgqgqgqgqgqgqgqgqgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapap +apapapapapapapapapapapapapapapapapapapapapapgmgngogpgqgrgsgpgtgogrgsgpgogmgrgsgpgqgsgpapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgcgjgjgjgjgugbgvglglglgwgjgbgxglgxglgxglgbgaap +apgygygygygygygygygygygygygygygygygygygygyapgpgzgAgBgCgDgEgBgFgAgDgEgBgAgGgDgEgBgCgEgrapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgcgjgjgHgjgIgbgJglgKgKgwgjgbglglglglglglgbgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgPgLgygygygyapgrgEgCgDgFgzgAgDgQgCgzgAgDgCgBgzgAgDgFgAgnapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgbgbgjgHgjgjgjgjglgKgKglgjgRglglglglglglgbgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgPgLgygygygyapgngAgFgzgQgEgCgzgSgFgEgCgzgFgDgEgCgzgQgCgsapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgTgUgjgjgjgjgjgjglgKgKglgjgRglglglglglglgbgaap +apgygygygygLgVgNgOgNgNgNgNgOgNgPgLgygygygyapgsgCgQgEgSgAgFgEgWgQgAgFgEgQgzgAgFgEgSgFgoapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgbgbgXgYgbgbgbgjglgKgKgwgjgbglglglglglglgbgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgZgLgygygygyapgogFgSgAgWgCgQgAgFgSgCgQgAgSgEgCgQgAgWgQgqapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbhagYgYgYgYhbgbgjglglglgwgjgbgxglgkglgxglgbgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgPgLgygygygyapgqgQgWgCgFgFgSgCgQgWgFgSgCgWgAgFgSgCgFgSgtapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbhagYhchdgYhbgbgjgjgjgjgjgjgbgkglgkglgkglgbgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgPgLgygygygyapgtgSgFgFgQgQgWhehfhghhhihghegCgQgWgFgQgWhjapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagbgbgbgbgbgbgbgbgbgbgjgjgbgbgbgbgbgbgbgbgbgbgaap +apgygygygygLhkhlhmhlhlhnhnhohnhpgLgygygygyaphjgWgQgQgSgSgFhqhrhshthuhshqgFgSgFgQgSgFhvapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapgbgjhwgbapapapapapapapapapgaap +apgygygygygLhxhlhyhzhzhzhzhyhnhAgLgygygygyaphvgFgSgSgWgWgQhBhChthrhshthBgQgWgQgSgWgQhDapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapgbgjgjgbapapapapapapapapapgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhpgLgygygygyaphDgQgWgWhEgFgShFhGhrhuhthrhFgSgFgSgWhEgShHapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapgbhIhIgbapapapapapapapapapgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhpgLgygygygyaphHgShEgFhJgQgWhehKhChshrhuhLgWgQgWgFhJgWhjapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagagagagagagagagagagagagagagaapapapapapapapapaphMhNhNhMapapapaphOhOhOhOhOgaap +apgygygygygLhkhzhyhzhzhzhzhyhzhpgLgygygygyaphjgWhJgQhPgShEhqhQhGhthChshRgFgShEgQhPhEhvapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapaphOhOhOhOhOhOhShThUhOapapapapaphOhOhVhWhOhOapaphOhOhOhOhXhYgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhAgLgygygygyaphvhEhPgShZgWhJhBiahKhrhGhtibgQgWhJgShZhJhDapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapaphOhMicidhOieifigihiihOhOapapaphOhOhMhNhNhMhOhShUhMijikhOhXilgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhpgLgygygygyaphDhJhZgWgGhEhPhFimhQhChKhringShEhPgWgGhPhHapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapioipiqiqiriqiqisitiuhOhOhShThUhOhOiviqiqiwhOixiyiziqiAhOhXilgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhpgLgygygygyaphHhPgGhEgBhJhZhLiBiChRinhLiCgWhJhZhEgBhZiDapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapiEiFiGiHhOiqiqiIiJiKhOiLiMiNiOiPiQiRiSiSiqiTiqiqiqiqiUhOhXiVgaap +apgygygygygLhkhzhyhzhzhzhzhyhzhpgLgygygygyapiDhZgBhJgDhPgGhJgzgBhPgGhJgBhEhPgGhJgDgGiWapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapaphOhOhOhOhOhOiXiqiqiYhOiZjajbjcjdjejfiSiSiqiTiqjgjhiqiqhOhOhOgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhAgLgygygygyapiWgGgDhPgzhZgBhPgEgDhZgBhPgDhJhZgBhPgzgBjiapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapaphOhOhOjjiqhOhMjkjljmjnjojpjfiSiqiXhMhOhOhMjqjrhOhOapgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhpgLgygygygyapjigBgzhZgEgGgDhZgAgzgGgDhZgzhPgGgDhZgEgDgmapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaaphOjsjthOhOhOhOhOhOhOhOjuiqiqiqiqjviqiqiqiqhOhOjwiqhMhOjxjxhOhOhOhOapapgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhpgLgygygygyapgmgDgEgGgAgBgzgGgCgEgBgzgGgEhZgBgzgGgAgzgpapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgahOhOjyjzhOjAhOjBjCjDhMhOjEiqiSiSiSiSiSiSiSiSiSiqiSiqjFjGiSiSiqhOhXhYapapgaap +apgygygygygLhkhzhyhzhzhzhzhyhzhpgLgygygygyapgpgzgAgBgCgDgEgBgFgAgDgEgBgAgGgDgEgBgCgEgrapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgajHjIiSjJhOjKhMhOjLhOjMhOjNiSiSjOjPjQjRjSjTjUiSiSiSiSjVjWiSiSiqhOhXilapapgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhAgLgygygygyapgrgEgCgDgFgzgAgDgQgCgzgAgDgCgBgzgAgDgFgAgnapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgajXjYjZiSkaiqiqiqiqkbiqiqiqiSiSkckdkekfkgkhkiiSiSiSiSkjiSiSiSiqhOhXilapapgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhpgLgygygygyapgngqhjgshvgogtgshDhjgogtgshjgngogtgshvgtgsapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgahOhOkkklhOkmknkokpkqiqkriqiqiSiSiSiSiSiSiSiSiSiqiSiqksiqktiSiAhOhXiVapapgaap +apgygygygygLhxhzhyhzhzhzhzhyhzhpgLgygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaaphOkukvhOhOhOhOhOhOhOhMkwiqiqiqiqjgiqiqiqiqhOhOjwiqhMhOkxkyhOhOhOhOapapgaap +apgygygygygLhkkzhyhzhzhzhzhykzhpgLgygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapaphOhOhOjjiqhOhMkAkBkCkDkEiQkFiSiqkGhMhOhOhOiqkHhOhOapgaap +apgygygygygLhxkzkIkzkzkzkzkIkzhAgLgygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapaphOhOhOhOhOiqkGiqiqkJhOkKkLkMkNkOjekPiSiSiqkQiqjviqiqiqhOhOhOgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgPgLgygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapkRkSkTkUhOiqiqiskVkWhOkXkYkZlalbjplciSiSiqkQiqiqiqiqiqhOhXhYgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgPgLgygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapldiqiqiqleiqiqlflglhhOhOliljlkhOhOlllmlniqhOlolplqiqiAhOhXilgaap +apgygygygygLgVgNgOgNgNgNgNgOgNgPgLgygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapaphOhMlrlshOltiqlulvlwhOhOapapaphOhOhMlxlyhMhOlilkhOlzlAhOhXilgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgZgLgygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapaphOhOhOhOhOhOliljlkhOapapapapaphOhOlBlChOhOapaphOhOhOhOhXiVgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgPgLgygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgaapapapapapapapapapapapapapapapapapapapapapapaphMlDlEhMapapapaphOhOhOhOhOgaap +apgygygygygLgMgNgOgNgNgNgNgOgNgPgLgygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapgagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagaap +apgygygygygylFgygygygygygygygygygygygygygyapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapap apapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapap apapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapap apapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapapap diff --git a/vorestation.dme b/vorestation.dme index 6457584a36..4fd90e4815 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -143,7 +143,7 @@ #include "code\controllers\hooks-defs.dm" #include "code\controllers\hooks.dm" #include "code\controllers\master_controller.dm" -#include "code\controllers\shuttle_controller.dm" +#include "code\controllers\shuttle_controller_vr.dm" #include "code\controllers\subsystems.dm" #include "code\controllers\verbs.dm" #include "code\controllers\voting.dm"