diff --git a/code/ZAS/Controller.dm b/code/ZAS/Controller.dm index e743fb75e2a..b3e54f20fa3 100644 --- a/code/ZAS/Controller.dm +++ b/code/ZAS/Controller.dm @@ -105,6 +105,7 @@ Class Procs: for(var/turf/simulated/S in turfs) simulated_turf_count++ + if(!(simulated_turf_count % 50000)) sleep(world.tick_lag) S.update_air_properties() to_chat(world, {"Geometry initialized in [round(0.1*(world.timeofday-start_time),0.1)] seconds. diff --git a/code/game/gamemodes/cult/hell_universe.dm b/code/game/gamemodes/cult/hell_universe.dm index ce98de352bd..782574589b0 100644 --- a/code/game/gamemodes/cult/hell_universe.dm +++ b/code/game/gamemodes/cult/hell_universe.dm @@ -103,23 +103,24 @@ In short: tcheck(80,1) /datum/universal_state/hell/OverlayAndAmbientSet() + var/count = 0 for(var/turf/T in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if(istype(T, /turf/space)) T.overlays += "hell01" else + if(!T.holy && prob(1)) + new /obj/effect/gateway/active/cult(T) T.underlays += "hell01" tcheck(85,1) - for(var/atom/movable/lighting_overlay/L in all_lighting_overlays) + count++ + if(!(count % 50000)) sleep(world.tick_lag) L.update_lumcount(0.5, 0, 0) tcheck(80,1) /datum/universal_state/hell/proc/MiscSet() - for(var/turf/simulated/floor/T in turfs) - if(!T.holy && prob(1)) - new /obj/effect/gateway/active/cult(T) - tcheck(80,1) - for (var/obj/machinery/firealarm/alm in machines) if (!(alm.stat & BROKEN)) alm.ex_act(2) diff --git a/code/game/gamemodes/endgame/supermatter_cascade/universe.dm b/code/game/gamemodes/endgame/supermatter_cascade/universe.dm index 8cf370ecb0c..1f187a59fc0 100644 --- a/code/game/gamemodes/endgame/supermatter_cascade/universe.dm +++ b/code/game/gamemodes/endgame/supermatter_cascade/universe.dm @@ -144,7 +144,10 @@ The access requirements on the Asteroid Shuttles' consoles have now been revoked tcheck(80,1) /datum/universal_state/supermatter_cascade/OverlayAndAmbientSet() + var/count = 0 for(var/turf/T in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if(istype(T, /turf/space)) T.overlays += "end01" else @@ -153,6 +156,8 @@ The access requirements on the Asteroid Shuttles' consoles have now been revoked tcheck(80,1) for(var/atom/movable/lighting_overlay/L in all_lighting_overlays) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if(L.z != map.zCentcomm) L.update_lumcount(0.15, 0.5, 0) tcheck(80,1) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 9e1475c7da8..5b829d5d109 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -2681,13 +2681,17 @@ floorIsLava = 1 message_admins("[key_name_admin(usr)] made the floor LAVA! It'll last [length] seconds and it will deal [damage] damage to everyone.", 1) - + var/count = 0 + var/list/lavaturfs = list() for(var/turf/simulated/floor/F in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if(F.z == 1) F.name = "lava" F.desc = "The floor is LAVA!" F.overlays += "lava" F.lava = 1 + lavaturfs += F spawn(0) for(var/i = i, i < length, i++) // 180 = 3 minutes @@ -2707,7 +2711,7 @@ sleep(10) - for(var/turf/simulated/floor/F in turfs) // Reset everything. + for(var/turf/simulated/floor/F in lavaturfs) // Reset everything. if(F.z == 1) F.name = initial(F.name) F.desc = initial(F.desc) diff --git a/code/modules/admin/verbs/massmodvar.dm b/code/modules/admin/verbs/massmodvar.dm index 0a3148672c7..a9728169eb1 100644 --- a/code/modules/admin/verbs/massmodvar.dm +++ b/code/modules/admin/verbs/massmodvar.dm @@ -161,7 +161,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if (A.type == O.type) A.vars[variable] = O.vars[variable] @@ -195,7 +198,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if ( istype(A , O.type) ) if(variable == "light_color") A.set_light(l_color = new_value) @@ -219,7 +225,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if (A.type == O.type) if(variable == "light_color") A.set_light(l_color = new_value) @@ -260,7 +269,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if ( istype(A , O.type) ) if(variable=="light_range") A.set_light(new_value) @@ -291,7 +303,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if (A.type == O.type) if(variable=="light_range") A.set_light(new_value) @@ -317,7 +332,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if ( istype(A , O.type) ) A.vars[variable] = O.vars[variable] else @@ -332,7 +350,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if (A.type == O.type) A.vars[variable] = O.vars[variable] @@ -353,7 +374,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O.type, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if ( istype(A , O.type) ) A.vars[variable] = O.vars[variable] else @@ -368,7 +392,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O.type, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if (A.type == O.type) A.vars[variable] = O.vars[variable] @@ -388,7 +415,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if ( istype(A , O.type) ) A.vars[variable] = O.vars[variable] @@ -404,7 +434,10 @@ A.vars[variable] = O.vars[variable] else if(istype(O, /turf)) + var/count = 0 for(var/turf/A in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if (A.type == O.type) A.vars[variable] = O.vars[variable] diff --git a/code/modules/lighting/lighting_system.dm b/code/modules/lighting/lighting_system.dm index 5905a403f7c..5c0f5ab877e 100644 --- a/code/modules/lighting/lighting_system.dm +++ b/code/modules/lighting/lighting_system.dm @@ -1,14 +1,16 @@ /var/list/lighting_update_lights = list() // List of light sources queued for update. /var/list/lighting_update_overlays = list() // List of ligting overlays queued for update. -/var/list/all_lighting_overlays = list() // Global list of lighting overlays. +/var/list/all_lighting_overlays = list()// Global list of lighting overlays. /area/var/lighting_use_dynamic = 1 // Disabling this variable on an area disables dynamic lighting. - // Duplicates lots of code, but this proc needs to be as fast as possible. /proc/create_lighting_overlays(zlevel = 0) var/area/A + var/count = 0 if(zlevel == 0) // populate all zlevels for(var/turf/T in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if(T.dynamic_lighting) A = T.loc // Get the area. if(A.lighting_use_dynamic && !T.lighting_overlay) @@ -19,10 +21,12 @@ else for(var/x = 1; x <= world.maxx; x++) for(var/y = 1; y <= world.maxy; y++) + count++ + if(!(count % 50000)) sleep(world.tick_lag) var/turf/T = locate(x, y, zlevel) if(T.dynamic_lighting) A = T.loc // Get the area. if(A.lighting_use_dynamic && !T.lighting_overlay) var/atom/movable/lighting_overlay/O = getFromPool(/atom/movable/lighting_overlay, T) - all_lighting_overlays |= O + all_lighting_overlays[count] = O T.lighting_overlay = O diff --git a/code/world.dm b/code/world.dm index a2c385c8b36..9c643e47f71 100644 --- a/code/world.dm +++ b/code/world.dm @@ -135,9 +135,9 @@ var/savefile/panicfile master_controller = new /datum/controller/game_controller() spawn(1) - for(var/turf/T in world) - T.initialize() - turfs += T + turfs = new/list(maxx*maxy*maxz) + world.log << "DEBUG: TURFS LIST LENGTH [turfs.len]" + build_turfs_list() processScheduler.deferSetupFor(/datum/controller/process/ticker) processScheduler.setup() @@ -475,3 +475,11 @@ proc/establish_old_db_connection() return 1 #undef FAILED_DB_CONNECTION_CUTOFF +/world/proc/build_turfs_list() + var/count = 0 + for(var/Z = 1 to world.maxz) + for(var/turf/T in block(locate(1,1,Z), locate(world.maxx, world.maxy, Z))) + if(!(count % 50000)) sleep(world.tick_lag) + count++ + T.initialize() + turfs[count] = T \ No newline at end of file diff --git a/maps/_map.dm b/maps/_map.dm index bfaf86bb9a5..46cf4c518be 100644 --- a/maps/_map.dm +++ b/maps/_map.dm @@ -148,7 +148,10 @@ proc/get_base_turf(var/z) proc/change_base_turf(var/choice,var/new_base_path,var/update_old_base = 0) if(update_old_base) + var/count = 0 for(var/turf/T in turfs) + count++ + if(!(count % 50000)) sleep(world.tick_lag) if(T.type == get_base_turf(choice) && T.z == choice) T.ChangeTurf(new_base_path) var/datum/zLevel/L = map.zLevels[choice] diff --git a/maps/defficiency.dmm b/maps/defficiency.dmm index 5891c462cc6..877b8c0c37f 100644 --- a/maps/defficiency.dmm +++ b/maps/defficiency.dmm @@ -309,11592 +309,13061 @@ "afW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/entry) "afX" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/entry) "afY" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"afZ" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aga" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"agb" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"agc" = (/turf/simulated/floor,/area/hallway/secondary/entry) -"agd" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod2/station) -"age" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = -27},/obj/machinery/light/small{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod2/station) -"agf" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{layer = 4; pixel_y = -32},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod2/station) -"agg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/shuttle/plating,/area/shuttle/escape_pod2/station) -"agh" = (/obj/structure/catwalk,/turf/space,/area) -"agi" = (/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos) -"agj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/engineering/atmos) -"agk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/engineering/atmos) -"agl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/engineering/atmos) -"agm" = (/obj/structure/docking_port/destination/syndicate/northwest,/turf/space,/area) -"agn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ago" = (/obj/machinery/newscaster{pixel_y = 30},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"agp" = (/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"agq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/virology) -"agr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/virology) -"ags" = (/obj/structure/sign/deathsposal{pixel_y = 32},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"agt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"agu" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"agv" = (/obj/structure/table,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/reagent_dispensers/virusfood{density = 0; pixel_x = 30},/turf/simulated/floor{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"agw" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"agx" = (/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/derelictparts/stripclub) -"agy" = (/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"agz" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"agA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"agB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/wood,/area/derelictparts/stripclub) -"agC" = (/turf/simulated/wall/r_wall,/area/gateway) -"agD" = (/turf/simulated/floor{icon_state = "arrival"; dir = 8},/area/hallway/secondary/entry) -"agE" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/plating,/area/shuttle/arrival/station) -"agF" = (/obj/structure/bed/chair{dir = 1},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"agG" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/docking_port/shuttle{dir = 4},/turf/simulated/shuttle/plating,/area/shuttle/arrival/station) -"agH" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/obj/structure/docking_port/destination/arrival/station{dir = 8},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"agI" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"agJ" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/wall{icon_state = "swall_f5"},/area/shuttle/escape_pod2/station) -"agK" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/escape_pod2/station) -"agL" = (/turf/simulated/wall,/area/engineering/atmos) -"agM" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Access"; req_access = null; req_access_txt = "24"},/turf/simulated/floor/plating,/area/engineering/atmos) -"agN" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/engineering/atmos) -"agO" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"agP" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"agQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) -"agR" = (/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"agS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/virology) -"agT" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/weapon/pen/red,/obj/item/device/antibody_scanner,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/virusdish/random,/obj/item/weapon/virusdish/random,/obj/item/weapon/virusdish/random,/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"agU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"agV" = (/obj/structure/table,/obj/item/device/radio/intercom{pixel_x = 25},/obj/item/clothing/gloves/latex,/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/turf/simulated/floor{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"agW" = (/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/stripclub) -"agX" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"agY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Derelict Strip Club"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/derelictparts/stripclub) -"agZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/derelictparts/stripclub) -"aha" = (/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"ahb" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor{icon_state = "dark-markings"},/area/gateway) -"ahc" = (/obj/machinery/gateway{dir = 1},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/gateway) -"ahd" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor{icon_state = "dark-markings"; dir = 1},/area/gateway) -"ahe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahf" = (/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ahg" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ahh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"ahi" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahj" = (/turf/simulated/floor/plating,/area/engineering/atmos) -"ahk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ahm" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ahn" = (/obj/machinery/disease2/incubator,/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"aho" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Virologist"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ahp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ahq" = (/obj/structure/table,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32},/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/headset/headset_med,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/turf/simulated/floor{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"ahr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/wall/r_wall,/area/medical/virology) -"ahs" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"aht" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/stripclub) -"ahu" = (/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/derelictparts/stripclub) -"ahv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ahw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/reagent_dispensers/silicate,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ahx" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"ahy" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/gateway) -"ahz" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"ahA" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/gateway) -"ahB" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahC" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahD" = (/obj/machinery/vending/cigarette,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahE" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ahF" = (/obj/structure/closet/wardrobe/green,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ahG" = (/obj/structure/closet/emcloset,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahH" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahI" = (/obj/machinery/light{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"ahJ" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/wall{icon_state = "swall_f6"},/area/shuttle/escape_pod3/station) -"ahK" = (/turf/simulated/shuttle/wall{icon_state = "swall12"},/area/shuttle/escape_pod3/station) -"ahL" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/escape_pod3/station) -"ahM" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor/plating,/area/engineering/atmos) -"ahN" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/engineering/atmos) -"ahO" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"ahP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ahQ" = (/obj/machinery/door/airlock/glass_medical{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ahR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/virology) -"ahS" = (/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/medical/virology) -"ahT" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/virology) -"ahU" = (/obj/machinery/door/airlock/glass_medical{name = "Isolation A"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ahV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/virology) -"ahW" = (/obj/machinery/centrifuge,/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/virology) -"ahX" = (/obj/machinery/computer/diseasesplicer,/obj/machinery/light{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "whitegreen"},/area/medical/virology) -"ahY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/medical/virology) -"ahZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aia" = (/obj/machinery/gateway{dir = 10},/turf/simulated/floor{icon_state = "dark-markings"; dir = 1},/area/gateway) -"aib" = (/obj/machinery/gateway,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/gateway) -"aic" = (/obj/machinery/gateway{dir = 6},/turf/simulated/floor{icon_state = "dark-markings"},/area/gateway) -"aid" = (/obj/machinery/camera{c_tag = "Arrivals West"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"aie" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/shuttle/plating,/area/shuttle/arrival/station) -"aif" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aig" = (/obj/structure/closet/wardrobe/black,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aih" = (/obj/structure/closet/emcloset,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"aii" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod3/station) -"aij" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = -27},/obj/machinery/light/small{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod3/station) -"aik" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{layer = 4; pixel_y = -32},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod3/station) -"ail" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/shuttle/plating,/area/shuttle/escape_pod3/station) -"aim" = (/turf/simulated/wall,/area/maintenance/fpmaint3) -"ain" = (/turf/simulated/wall/r_wall,/area/maintenance/fpmaint3) -"aio" = (/obj/structure/lattice,/obj/effect/landmark{name = "carpspawn"},/turf/space,/area) -"aip" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"air" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ais" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ait" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiu" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/disease2/diseaseanalyser,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/wall/r_wall,/area/medical/virology) -"aiw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aix" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"aiy" = (/obj/machinery/door/window{dir = 2; name = "Gateway Chamber"; req_access_txt = "62"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"aiz" = (/obj/structure/window/reinforced,/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"aiA" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "dark"},/area/gateway) -"aiB" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"aiC" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/hallway/secondary/entry) -"aiD" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/shuttle/plating,/area/shuttle/arrival/station) -"aiE" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aiF" = (/obj/machinery/camera{c_tag = "Arrivals East"; dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"aiG" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/wall{icon_state = "swall_f5"},/area/shuttle/escape_pod3/station) -"aiH" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/escape_pod3/station) -"aiI" = (/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aiJ" = (/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance"; req_access_txt = "24"},/turf/simulated/floor/plating,/area/engineering/atmos) -"aiK" = (/obj/machinery/pipedispenser,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"aiL" = (/obj/machinery/pipedispenser/disposal,/obj/structure/window/reinforced{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"aiM" = (/obj/structure/closet/crate,/turf/simulated/floor,/area/engineering/atmos) -"aiN" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor,/area/engineering/atmos) -"aiO" = (/obj/machinery/atmospherics/pipe/layer_adapter/supply/hidden{tag = "icon-adapter_2 (WEST)"; icon_state = "adapter_2"; dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"aiP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"aiQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor,/area/engineering/atmos) -"aiR" = (/obj/machinery/atmospherics/pipe/layer_adapter/scrubbers/hidden{dir = 4; icon_state = "adapter_4"; tag = "icon-adapt_4 (EAST)"},/turf/simulated/floor,/area/engineering/atmos) -"aiS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"aiT" = (/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aiU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aiV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aiZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aja" = (/obj/machinery/power/apc{cell_type = 5000; name = "Virology APC"; pixel_y = -24; pixel_x = 0},/obj/machinery/camera{c_tag = "Virology Module"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajb" = (/obj/machinery/embedded_controller/radio/access_controller{tag_exterior_door = "virology_airlock_exterior"; id_tag = "virology_airlock_control"; tag_interior_door = "virology_airlock_interior"; name = "Virology Access Console"; pixel_x = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_x = -6; pixel_y = -25},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aje" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajf" = (/obj/machinery/door/airlock/medical{name = "Break Room"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajg" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajh" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -1; pixel_y = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aji" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ajj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ajk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/gateway) -"ajl" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/firstaid/regular,/obj/structure/sign/biohazard{pixel_x = -32},/obj/machinery/camera{c_tag = "Gateway"; dir = 4},/turf/simulated/floor,/area/gateway) -"ajm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/gateway) -"ajn" = (/obj/structure/table,/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor,/area/gateway) -"ajo" = (/obj/structure/table,/obj/machinery/recharger,/obj/structure/sign/biohazard{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor,/area/gateway) -"ajp" = (/turf/simulated/wall,/area/gateway) -"ajq" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/turf/simulated/floor,/area/hallway/secondary/entry) -"ajr" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/hallway/secondary/entry) -"ajs" = (/obj/structure/closet/emcloset,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor,/area/hallway/secondary/entry) -"ajt" = (/obj/machinery/requests_console{department = "Arrival shuttle"; pixel_x = -30},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aju" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"ajv" = (/obj/machinery/vending/coffee,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor,/area/hallway/secondary/entry) -"ajw" = (/turf/simulated/wall,/area/janitor2) -"ajx" = (/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"ajy" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor/plating,/area/engineering/atmos) -"ajz" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/simulated/floor/plating,/area/engineering/atmos) -"ajA" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos) -"ajB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"ajC" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"ajD" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/closet/firecloset,/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"ajE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/simulated/floor,/area/engineering/atmos) -"ajF" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"ajG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"ajH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"ajI" = (/obj/machinery/light,/turf/simulated/floor,/area/engineering/atmos) -"ajJ" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"ajK" = (/obj/machinery/firealarm{dir = 1; pixel_y = -27},/obj/machinery/portable_atmospherics/pump,/obj/structure/window/reinforced{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"ajL" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"ajM" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"ajN" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/window/reinforced{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"ajO" = (/obj/machinery/camera{c_tag = "Atmospherics SE"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"ajP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/engineering/atmos) -"ajQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ajR" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/virology) -"ajS" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/virology) -"ajT" = (/obj/machinery/door/airlock/glass_medical{name = "Monkey Pen"; req_access_txt = "39"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajU" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/virology) -"ajV" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/medical/virology) -"ajW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajX" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajY" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ajZ" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aka" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"akb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/turf/simulated/floor,/area/gateway) -"akc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/gateway) -"akd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/gateway) -"ake" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/gateway) -"akf" = (/obj/structure/table,/obj/item/weapon/folder/white,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"akg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"akh" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/arrival/station) -"aki" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"akj" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"akk" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"akl" = (/obj/structure/table,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/legcuffs/beartrap,/obj/item/weapon/legcuffs/beartrap,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"akm" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"akn" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"ako" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"akp" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/simulated/floor{dir = 9; icon_state = "caution"},/area/engineering/atmos) -"akq" = (/obj/machinery/atmospherics/binary/valve/digital{dir = 4; name = "Gas Mix Outlet Valve"},/turf/simulated/floor{dir = 9; icon_state = "green"},/area/engineering/atmos) -"akr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1441; input_tag = "waste_in"; name = "Gas Mix Tank Control"; output_tag = "waste_out"; sensors = list("waste_sensor" = "Tank")},/turf/simulated/floor{dir = 5; icon_state = "green"},/area/engineering/atmos) -"aks" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"akt" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"aku" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/suit_storage_unit/atmos,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"akv" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"akw" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"akx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"aky" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor,/area/engineering/atmos) -"akz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/turf/simulated/floor,/area/engineering/atmos) -"akA" = (/turf/simulated/wall/r_wall,/area/tcomms/storage) -"akB" = (/turf/simulated/wall/r_wall,/area/tcomms/chamber) -"akC" = (/obj/structure/grille,/obj/structure/grille,/turf/space,/area) -"akD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"akE" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"akF" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 8; pixel_y = 28; req_access_txt = "39"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"akG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"akH" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"akI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"akJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/gateway) -"akK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/gateway) -"akL" = (/turf/simulated/floor,/area/gateway) -"akM" = (/obj/machinery/light_switch{pixel_x = 22; pixel_y = 6},/turf/simulated/floor,/area/gateway) -"akN" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/gateway) -"akO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"akP" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"akQ" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor,/area/janitor2) -"akR" = (/turf/simulated/floor,/area/janitor2) -"akS" = (/obj/item/weapon/stool,/turf/simulated/floor,/area/janitor2) -"akT" = (/obj/item/weapon/mop,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light{dir = 4},/obj/structure/mopbucket,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"akU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{dir = 8; icon_state = "caution"},/area/engineering/atmos) -"akV" = (/obj/machinery/atmospherics/pipe/layer_adapter/scrubbers/hidden{tag = "icon-adapter_4 (WEST)"; icon_state = "adapter_4"; dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"akW" = (/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"akX" = (/obj/machinery/atmospherics/binary/pump{name = "Mix to Distro"},/turf/simulated/floor,/area/engineering/atmos) -"akY" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"akZ" = (/obj/machinery/light{dir = 8},/obj/structure/window/reinforced,/obj/machinery/suit_storage_unit/atmos,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"ala" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Air to Port"},/turf/simulated/floor,/area/engineering/atmos) -"alb" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Pure to Port"},/turf/simulated/floor,/area/engineering/atmos) -"alc" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Mix to Port"},/turf/simulated/floor,/area/engineering/atmos) -"ald" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/obj/machinery/atmospherics/pipe/layer_adapter/supply/hidden{tag = "icon-adapter_2 (NORTH)"; icon_state = "adapter_2"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"ale" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/structure/table,/obj/item/weapon/storage/belt/utility,/turf/simulated/floor,/area/engineering/atmos) -"alf" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/tcomms/storage) -"alg" = (/obj/machinery/camera{c_tag = "Telecoms Atmospherics North"},/turf/simulated/floor/plating,/area/tcomms/storage) -"alh" = (/turf/simulated/floor/plating,/area/tcomms/storage) -"ali" = (/turf/simulated/wall,/area/tcomms/chamber) -"alj" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"alk" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"all" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"alm" = (/obj/machinery/camera{c_tag = "Telecoms Server Room"},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aln" = (/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Telecoms Server APC"; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"alo" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/machinery/alarm/server{pixel_y = 27},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"alp" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"alq" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alr" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"als" = (/obj/machinery/shower{dir = 4},/obj/structure/sign/securearea{pixel_x = -32},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alu" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/structure/closet/l3closet/virology,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alv" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alw" = (/obj/machinery/light_switch{pixel_x = 23},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"alx" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/secure_closet/exile,/turf/simulated/floor,/area/gateway) -"aly" = (/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/cable,/turf/simulated/floor,/area/gateway) -"alz" = (/obj/structure/closet/l3closet/scientist,/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/gateway) -"alA" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/light{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/gateway) -"alB" = (/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"alC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"alD" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/shuttle/arrival/station) -"alE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"alF" = (/obj/machinery/requests_console{department = "Janitorial 2"; departmentType = 1; pixel_x = -32},/obj/structure/bed/chair/vehicle/janicart,/turf/simulated/floor,/area/janitor2) -"alG" = (/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/janitor2) -"alH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/janitor2) -"alI" = (/obj/machinery/door/window{dir = 8; name = "Janitoral Delivery"; req_access_txt = "26"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/janitor2) -"alJ" = (/obj/machinery/atmospherics/unary/portables_connector,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor{dir = 8; icon_state = "caution"},/area/engineering/atmos) -"alK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor,/area/engineering/atmos) -"alL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"alM" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"alN" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/binary/pump{dir = 8; icon_state = "intact_on"; name = "Air to Distro"; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"alO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layered{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"alP" = (/obj/machinery/door/airlock/glass_atmos{name = "Distribution Loop"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"alQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layered{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"alR" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"alS" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"alT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"alU" = (/obj/item/beacon,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"alV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden/layered{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor,/area/engineering/atmos) -"alW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/storage/hazardvest,/obj/item/clothing/suit/storage/hazardvest,/obj/item/clothing/suit/storage/hazardvest,/obj/item/clothing/suit/storage/hazardvest,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/structure/sign/nosmoking_2{pixel_x = 32},/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"alX" = (/obj/machinery/atmospherics/unary/tank/carbon_dioxide{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"alY" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible/blue{dir = 1},/turf/simulated/floor/plating,/area/tcomms/storage) -"alZ" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{current_temperature = 73.15; dir = 8; icon_state = "freezer_1"; on = 1},/turf/simulated/floor/plating,/area/tcomms/storage) -"ama" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction/hidden{dir = 1},/obj/machinery/telecomms/server/presets/service,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"amb" = (/obj/machinery/telecomms/server/presets/supply,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"amc" = (/obj/machinery/message_server,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"amd" = (/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ame" = (/obj/machinery/power/battery/smes{charge = 5e+006},/obj/structure/cable,/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"amf" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"amg" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"amh" = (/obj/machinery/telecomms/server/presets/engineering,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction/hidden{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ami" = (/turf/simulated/wall,/area/maintenance/fore) -"amj" = (/obj/structure/window/reinforced{dir = 4},/turf/space,/area) -"amk" = (/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id_tag = "toxinsdriver"; name = "toxins launcher bay door"; opacity = 1},/turf/simulated/floor/airless{icon_state = "circuit"},/area/science/mixing) -"aml" = (/obj/structure/window/reinforced{dir = 8},/turf/space,/area) -"amm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"amn" = (/obj/machinery/door/airlock/command{name = "Gateway Access"; req_access_txt = "62"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/gateway) -"amo" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"amp" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"amq" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"amr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"ams" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/l3closet/virology,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"amt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/medical/virology) -"amu" = (/obj/machinery/atmospherics/unary/tank/air{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"amv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"amw" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = -29},/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/camera{c_tag = "Virology Break Room"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"amx" = (/obj/structure/closet/wardrobe/virology_white,/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"amy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/gateway) -"amz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/secondary/entry) -"amA" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/hallway/secondary/entry) -"amB" = (/turf/simulated/shuttle/wall{icon_state = "swall_s5"},/area/shuttle/arrival/station) -"amC" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/space,/area/shuttle/arrival/station) -"amD" = (/obj/structure/shuttle/engine/propulsion{dir = 1},/turf/space,/area/shuttle/arrival/station) -"amE" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/space,/area/shuttle/arrival/station) -"amF" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/arrival/station) -"amG" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor,/area/hallway/secondary/entry) -"amH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"amI" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/obj/structure/closet/jcloset,/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"amJ" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/machinery/camera{c_tag = "Custodial Closet 2"; dir = 8},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor,/area/janitor2) -"amK" = (/obj/structure/plasticflaps,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Northern Custodial Closet"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/janitor2) -"amL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/janitor2) -"amM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"amN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"amO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"amP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"amQ" = (/obj/machinery/atmospherics/trinary/filter{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "caution"},/area/engineering/atmos) -"amR" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/machinery/atmospherics/pipe/layer_adapter/scrubbers/visible,/turf/simulated/floor/plating,/area/engineering/atmos) -"amS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"amT" = (/obj/machinery/meter{frequency = 1443; id_tag = "dloop_atm_meter"; name = "Distribution Loop"},/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/simulated/floor,/area/engineering/atmos) -"amU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"amV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"amW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"amX" = (/obj/machinery/atmospherics/pipe/layer_adapter/scrubbers/hidden,/turf/simulated/floor,/area/engineering/atmos) -"amY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics East"; dir = 8},/obj/structure/reagent_dispensers/fueltank,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"amZ" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible/blue{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"ana" = (/obj/effect/decal/cleanable/blood/oil,/obj/machinery/light{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"anb" = (/obj/machinery/telecomms/processor/preset_two,/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"anc" = (/obj/machinery/telecomms/bus/preset_two,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"and" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ane" = (/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"anf" = (/obj/machinery/power/terminal{dir = 1},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"ang" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"anh" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"ani" = (/obj/machinery/telecomms/bus/preset_four,/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"anj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/cell/high,/turf/simulated/floor/plating,/area/maintenance/fore) -"ank" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore) -"anl" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/airless{icon_state = "circuit"},/area/science/mixing) -"anm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ann" = (/turf/simulated/wall,/area/medical/surgery) -"ano" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/blood/writing,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/obj/structure/window/barricade/full/block,/turf/simulated/floor/plating,/area/derelictparts/fore) -"anp" = (/obj/structure/table,/obj/machinery/computer/med_data/laptop,/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"anq" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"anr" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ans" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ant" = (/turf/simulated/wall,/area/storage/emergency) -"anu" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/oxygen,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating,/area/storage/emergency) -"anv" = (/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency) -"anw" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"anx" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"any" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"anz" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"anA" = (/obj/machinery/light_switch{pixel_x = 24; pixel_y = -5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/janitor2) -"anB" = (/obj/structure/rack,/obj/item/weapon/wrench,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"anC" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"anD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"anE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"anF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"anG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"anH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"anI" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/camera{c_tag = "Atmospherics Central"; dir = 4},/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/simulated/floor{dir = 8; icon_state = "caution"},/area/engineering/atmos) -"anJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"anK" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Distro to Waste"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"anL" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible,/turf/simulated/floor,/area/engineering/atmos) -"anM" = (/obj/machinery/atmospherics/binary/pump{icon_state = "intact_on"; name = "Mix to Filter"; on = 1},/obj/machinery/atmospherics/pipe/layer_adapter/supply/visible{tag = "icon-adapter_2 (WEST)"; icon_state = "adapter_2"; dir = 8},/turf/simulated/floor/plating,/area/engineering/atmos) -"anN" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor,/area/engineering/atmos) -"anO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"anP" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"anQ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"anR" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/engineering/atmos) -"anS" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"anT" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"anU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"anV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"anW" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible/blue,/turf/simulated/floor/plating,/area/tcomms/storage) -"anX" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible/blue{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"anY" = (/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue{dir = 4},/turf/simulated/wall,/area/tcomms/chamber) -"anZ" = (/obj/machinery/light{dir = 8},/obj/structure/sign/nosmoking_2{pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/insulated/hidden/blue{dir = 4},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"aoa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"aob" = (/obj/machinery/telecomms/hub/preset,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aoc" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"aod" = (/obj/machinery/light{dir = 4},/obj/structure/sign/nosmoking_2{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue,/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"aoe" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fore) -"aof" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fore) -"aog" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged2"},/area/maintenance/fore) -"aoh" = (/obj/machinery/light/small{dir = 4},/obj/item/stack/rods,/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fore) -"aoi" = (/turf/simulated/floor/airless{icon_state = "circuit"},/area/science/mixing) -"aoj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aok" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/retractor,/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"aol" = (/obj/machinery/optable,/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"aom" = (/obj/machinery/computer/operating,/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"aon" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/item/weapon/FixOVein,/turf/simulated/floor,/area/medical/surgery) -"aoo" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor{icon_state = "whitehall"},/area/medical/surgery) -"aop" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Surgery Operating"; pixel_x = 22},/obj/machinery/vending/wallmed2{pixel_y = 28},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"aoq" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor{icon_state = "whitehall"},/area/medical/surgery) -"aor" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/simulated/floor,/area/medical/surgery) -"aos" = (/obj/machinery/vending/medical{pixel_x = -2},/turf/simulated/floor{dir = 4; icon_state = "whitegreencorner"},/area/medical/medbay) -"aot" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 1; icon_state = "whitegreen"},/area/medical/medbay) -"aou" = (/obj/machinery/bioprinter/prosthetics,/turf/simulated/floor{dir = 1; icon_state = "whitegreencorner"},/area/medical/medbay) -"aov" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay2) -"aow" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"aox" = (/obj/structure/sink{dir = 1; pixel_y = 25},/obj/machinery/camera{c_tag = "Medbay Storage"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"aoy" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/regular{pixel_x = -2; pixel_y = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"aoz" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -2; pixel_y = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"aoA" = (/turf/simulated/wall,/area/medical/medbay2) -"aoB" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aoC" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aoD" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/storage/emergency) -"aoE" = (/obj/item/weapon/extinguisher,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/emergency) -"aoF" = (/obj/machinery/status_display{layer = 4; pixel_y = 32},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"aoG" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"aoH" = (/obj/machinery/vending/discount,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"aoI" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/machinery/vending/groans,/turf/simulated/floor,/area/hallway/secondary/entry) -"aoJ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"aoK" = (/obj/machinery/vending/coffee,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"aoL" = (/obj/machinery/vending/cigarette,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"aoM" = (/obj/machinery/light{dir = 1},/obj/structure/sign/map/efficiency{pixel_x = 0; pixel_y = 32},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window{base_state = "left"; dir = 2},/turf/simulated/floor,/area/hallway/secondary/entry) -"aoN" = (/obj/machinery/status_display{layer = 4; pixel_y = 32},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/machinery/computer/pda_terminal,/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor,/area/hallway/secondary/entry) -"aoO" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor2) -"aoP" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor,/area/janitor2) -"aoQ" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/janitor2) -"aoR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aoS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aoT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aoU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aoV" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor{dir = 10; icon_state = "caution"},/area/engineering/atmos) -"aoW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/meter{frequency = 1443; id_tag = "wloop_atm_meter"; name = "Waste Loop"},/obj/machinery/atmospherics/pipe/layer_adapter/supply/hidden{tag = "icon-adapter_2 (WEST)"; icon_state = "adapter_2"; dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"aoX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor,/area/engineering/atmos) -"aoY" = (/obj/machinery/atmospherics/binary/pump{dir = 4; icon_state = "intact_on"; name = "Waste In"; on = 1},/turf/simulated/floor,/area/engineering/atmos) -"aoZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/simulated/floor,/area/engineering/atmos) -"apa" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"apb" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"apc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"apd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/structure/closet/secure_closet/engineering_atmos,/turf/simulated/floor,/area/engineering/atmos) -"ape" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/tcomms/storage) -"apf" = (/obj/machinery/telecomms/bus/preset_one,/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"apg" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aph" = (/obj/machinery/telecomms/receiver/preset_left,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"api" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"apj" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden,/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"apk" = (/obj/machinery/telecomms/receiver/preset_right,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"apl" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"apm" = (/obj/machinery/telecomms/processor/preset_three,/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"apn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/engineering/antimatter_room) -"apo" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/engineering/antimatter_room) -"app" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/engineering/antimatter_room) -"apq" = (/turf/simulated/wall/r_wall,/area/engineering/antimatter_room) -"apr" = (/obj/structure/table,/obj/item/weapon/wirecutters,/obj/item/device/t_scanner,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore) -"aps" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/igniter,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/maintenance/fore) -"apt" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 8},/obj/item/weapon/cell/high,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"apu" = (/obj/structure/closet/firecloset,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"apv" = (/obj/structure/closet/emcloset,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"apw" = (/obj/machinery/camera{c_tag = "Science Maint. Top"; network = list("Toxins")},/obj/machinery/vending/discount,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"apx" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"apy" = (/obj/item/weapon/stock_parts/manipulator{pixel_x = -6; pixel_y = -4},/turf/simulated/floor/plating,/area/maintenance/fore) -"apz" = (/obj/machinery/vending/assist,/turf/simulated/floor/plating,/area/maintenance/fore) -"apA" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/space,/area/science/mixing) -"apB" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/science/mixing) -"apC" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 4},/turf/simulated/floor/airless{icon_state = "circuit"},/area/science/mixing) -"apD" = (/obj/machinery/mass_driver{dir = 1; id_tag = "toxinsdriver"; throw_speed = 2},/obj/machinery/door/window{dir = 2; name = "Mass Driver Door"; req_access_txt = "7"},/turf/simulated/floor/airless{icon_state = "circuit"},/area/science/mixing) -"apE" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/obj/machinery/camera{c_tag = "Arrivals North-East"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"apF" = (/obj/machinery/camera{c_tag = "Atmospherics Airlock"; dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos) -"apG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"apH" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/item/weapon/FixOVein,/obj/item/weapon/surgicaldrill,/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"apI" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"apJ" = (/obj/machinery/atmospherics/unary/vent_pump,/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"apK" = (/obj/structure/table,/obj/item/clothing/gloves/latex,/obj/item/clothing/mask/surgical,/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = -26; pixel_y = 2},/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/surgery) -"apL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"apM" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"apN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"apO" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/table,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/item/weapon/bonesetter,/obj/item/weapon/bonegel,/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/medical/surgery) -"apP" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"apQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"apR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"apS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay2) -"apT" = (/obj/structure/closet/l3closet/general,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"apU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"apV" = (/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"apW" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/fire{pixel_x = -2; pixel_y = 4},/obj/item/device/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 30},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"apX" = (/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"apY" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"apZ" = (/obj/machinery/space_heater,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/turf/simulated/floor/plating,/area/storage/emergency) -"aqa" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/storage/emergency) -"aqb" = (/obj/machinery/access_button{command = "cycle_exterior"; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; req_access_txt = "39"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/medical{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor{icon_state = "white"},/area/medical/virology) -"aqc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/hallway/secondary/entry) -"aqd" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/secondary/entry) -"aqe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"aqf" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/hallway/secondary/entry) -"aqg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/secondary/entry) -"aqh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/secondary/entry) -"aqi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes{tag = "icon-loading_area (NORTH)"; icon_state = "loading_area"; dir = 1},/turf/simulated/floor,/area/hallway/secondary/entry) -"aqj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/secondary/entry) -"aqk" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/media/receiver/boombox/wallmount/muzak{on = 0; pixel_x = 32},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"aql" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aqm" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aqn" = (/obj/structure/closet/crate,/obj/item/device/multitool,/obj/item/mounted/poster,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aqp" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"aqq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"aqr" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"aqs" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/structure/window/reinforced,/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"aqt" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/atmos) -"aqu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/closet/secure_closet/engineering_atmos,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/turf/simulated/floor,/area/engineering/atmos) -"aqv" = (/obj/machinery/atmospherics/unary/tank/nitrogen{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"aqw" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/simulated/floor/plating,/area/tcomms/storage) -"aqx" = (/obj/machinery/atmospherics/binary/pump{dir = 4; icon_state = "intact_on"; name = "Gas pump"; on = 1},/turf/simulated/floor/plating,/area/tcomms/storage) -"aqy" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/wall,/area/tcomms/chamber) -"aqz" = (/obj/machinery/telecomms/server/presets/science,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction/hidden,/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqA" = (/obj/machinery/telecomms/server/presets/medical,/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqB" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqD" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"aqE" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqF" = (/obj/machinery/telecomms/server/presets/command,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqG" = (/obj/machinery/telecomms/server/presets/security,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction/hidden,/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"aqH" = (/obj/machinery/camera{c_tag = "Engineering AME North"; dir = 4; network = list("SS13","RD")},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/antimatter_room) -"aqI" = (/turf/simulated/floor{dir = 1; icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"aqJ" = (/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/antimatter_room) -"aqK" = (/turf/simulated/wall,/area/derelictparts/fore) -"aqL" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/maintenance/fore) -"aqM" = (/turf/simulated/floor{icon_state = "floorscorched1"},/area/maintenance/fore) -"aqN" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"aqO" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"aqP" = (/turf/simulated/floor/plating,/area/maintenance/fore) -"aqQ" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore) -"aqR" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor{icon_state = "damaged1"},/area/maintenance/fore) -"aqS" = (/turf/simulated/wall,/area/science/mixing) -"aqT" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); pixel_y = 32},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor,/area/science/mixing) -"aqU" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/science/mixing) -"aqV" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (NORTH)"; icon_state = "loading_area"; dir = 1},/turf/simulated/floor,/area/science/mixing) -"aqW" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); pixel_y = 32},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/science/mixing) -"aqX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi,/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"aqY" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/obj/item/weapon/bonesetter,/obj/item/weapon/bonegel,/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"aqZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"ara" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"arb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"arc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"ard" = (/obj/machinery/optable,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"are" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"arf" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"arg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 0; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor,/area/hallway/secondary/entry) -"arh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"ari" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"arj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"ark" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay2) -"arl" = (/obj/structure/closet/secure_closet/medical3,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"arm" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/o2{pixel_x = -2; pixel_y = 4},/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"arn" = (/obj/structure/rack,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aro" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/storage/emergency) -"arp" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor/plating,/area/storage/emergency) -"arq" = (/turf/simulated/floor{icon_state = "arrival"},/area/hallway/secondary/entry) -"arr" = (/obj/machinery/camera{c_tag = "Arrivals South West"; dir = 1},/turf/simulated/floor{icon_state = "arrival"},/area/hallway/secondary/entry) -"ars" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/hallway/secondary/entry) -"art" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/secondary/entry) -"aru" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/machinery/camera{c_tag = "Arrivals South East"; dir = 1},/turf/simulated/floor{icon_state = "arrival"},/area/hallway/secondary/entry) -"arv" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/item/weapon/paper/crumpled/bloody{info = "they're coming for you

honk!"},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"arw" = (/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibmid3"},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"arx" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"ary" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"arz" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/weapon/cigbutt{pixel_x = -6; pixel_y = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"arA" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"arB" = (/obj/structure/table,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 7},/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/item/device/multitool,/turf/simulated/floor,/area/engineering/atmos) -"arC" = (/obj/structure/table,/obj/item/stack/sheet/glass/glass{amount = 50},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/floor,/area/engineering/atmos) -"arD" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/item/device/rcd/rpd,/turf/simulated/floor,/area/engineering/atmos) -"arE" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/turf/simulated/floor,/area/engineering/atmos) -"arF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"arG" = (/obj/machinery/space_heater,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/pipe/layer_adapter/supply/hidden{tag = "icon-adapter_2 (WEST)"; icon_state = "adapter_2"; dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"arH" = (/obj/machinery/space_heater,/obj/structure/window/reinforced{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layered{tag = "icon-manifold (NORTH)"; icon_state = "manifold"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"arI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden/layered{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"arJ" = (/obj/machinery/atmospherics/binary/pump{dir = 2; name = "Port to Filter"},/turf/simulated/floor,/area/engineering/atmos) -"arK" = (/obj/machinery/atmospherics/unary/heat_reservoir/heater{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"arL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/engineering/atmos) -"arM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/simulated/floor/plating,/area/tcomms/storage) -"arN" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"arO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction/hidden{dir = 8},/turf/simulated/floor/plating,/area/tcomms/chamber) -"arP" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room"; req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/tcomms/chamber) -"arQ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction/hidden{dir = 4},/turf/simulated/floor/plating,/area/tcomms/chamber) -"arR" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/bluegrid,/area/tcomms/chamber) -"arS" = (/turf/simulated/floor{dir = 8; icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"arT" = (/turf/simulated/floor{icon_state = "dark"},/area/engineering/antimatter_room) -"arU" = (/turf/simulated/floor{icon_state = "dark vault stripe"; dir = 4},/area/engineering/antimatter_room) -"arV" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/space,/area) -"arW" = (/obj/structure/lattice,/obj/structure/grille/broken,/obj/item/stack/rods,/turf/space,/area) -"arX" = (/obj/structure/table,/obj/item/stack/medical/ointment,/obj/item/weapon/reagent_containers/food/snacks/donkpocket,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/fore) -"arY" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/fore) -"arZ" = (/obj/item/weapon/shard,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"asa" = (/obj/item/stack/sheet/cardboard,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "damaged5"},/area/maintenance/fore) -"asb" = (/turf/simulated/floor{icon_state = "damaged1"},/area/maintenance/fore) -"asc" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/maintenance/fore) -"asd" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/device/multitool,/obj/item/device/assembly/signaler{pixel_x = 6},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"ase" = (/obj/item/device/radio/intercom{pixel_x = -27},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/science/mixing) -"asf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor,/area/science/mixing) -"asg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/science/mixing) -"ash" = (/obj/machinery/driver_button{id_tag = "toxinsdriver"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/science/mixing) -"asi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"asj" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ask" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/medical/surgery) -"asl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"asm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"asn" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/surgery) -"aso" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/surgery) -"asp" = (/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"asq" = (/obj/machinery/computer/operating,/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"asr" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/medical/surgery) -"ass" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/closet/walllocker/defiblocker{pixel_x = -32},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"ast" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"asu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/bioprinter,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "whitegreencorner"},/area/medical/medbay) -"asv" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/medbay2) -"asw" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"asx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"asy" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 30},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"asz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"asA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"asB" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"asC" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"asD" = (/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/hallway/secondary/entry) -"asE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/hallway/secondary/entry) -"asF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/hallway/secondary/entry) -"asG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor/plating,/area/hallway/secondary/entry) -"asH" = (/turf/simulated/wall,/area/security/checkpoint2) -"asI" = (/turf/simulated/wall,/area/storage/primary) -"asJ" = (/obj/structure/closet/fireaxecabinet{locked = 1; pixel_x = -32},/turf/simulated/floor,/area/engineering/atmos) -"asK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor,/area/engineering/atmos) -"asL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"asM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"asN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"asO" = (/obj/machinery/atmospherics/pipe/layer_adapter/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor,/area/engineering/atmos) -"asP" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Port to Filter"},/turf/simulated/floor,/area/engineering/atmos) -"asQ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor,/area/engineering/atmos) -"asR" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/atmos) -"asS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/atmos) -"asT" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/janitor2) -"asU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/tcomms/storage) -"asV" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"asW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tcommsat/computer) -"asX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tcommsat/computer) -"asY" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/tcommsat/computer) -"asZ" = (/turf/simulated/floor{icon_state = "dark"},/area/tcommsat/computer) -"ata" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tcommsat/computer) -"atb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tcommsat/computer) -"atc" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"atd" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "dark vault stripe"; dir = 4},/area/engineering/antimatter_room) -"ate" = (/obj/machinery/door/airlock{name = "Fore Starboard Emergency Storage"; req_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/storage/emergency) -"atf" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/fore) -"atg" = (/obj/item/weapon/folder,/obj/machinery/light_construct/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/fore) -"ath" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"ati" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fore) -"atj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fore) -"atk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fore) -"atl" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"atm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fore) -"atn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fore) -"ato" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"atp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fore) -"atq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/device/analyzer{pixel_x = 5},/obj/item/device/assembly/prox_sensor{pixel_x = -3},/turf/simulated/floor{icon_state = "floorscorched2"},/area/maintenance/fore) -"atr" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/fore) -"ats" = (/obj/machinery/computer/bhangmeter,/turf/simulated/floor,/area/science/mixing) -"att" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/science/mixing) -"atu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/science/mixing) -"atv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/science/mixing) -"atw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"atx" = (/turf/simulated/wall,/area/medical/break_room) -"aty" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/medical/surgery) -"atz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whitehall"; dir = 1},/area/medical/surgery) -"atA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"atB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/soap,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor,/area/medical/surgery) -"atC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/surgery) -"atD" = (/obj/machinery/camera{c_tag = "Medbay North"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/recharger/defibcharger/wallcharger{pixel_x = -24},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"atE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"atF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{dir = 4; icon_state = "whitegreen"},/area/medical/medbay) -"atG" = (/obj/machinery/door/airlock/medical{name = "Operating Theatre"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/medical/surgery) -"atH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"atI" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/obj/item/weapon/gun/syringe,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"atJ" = (/obj/structure/table,/obj/item/weapon/storage/belt/medical{pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_y = 2},/obj/item/clothing/accessory/stethoscope,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"atK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atL" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atM" = (/obj/structure/closet/crate,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atN" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atO" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"atQ" = (/turf/simulated/wall,/area/maintenance/fpmaint2) -"atR" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"atS" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/cigarettes{pixel_y = 2},/obj/item/weapon/lighter{pixel_x = 4; pixel_y = 2},/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"atT" = (/obj/structure/table/woodentable,/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"atU" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"atV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/hallway/secondary/entry) -"atW" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/security/checkpoint2) -"atX" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor{icon_state = "red"; dir = 9},/area/security/checkpoint2) -"atY" = (/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/checkpoint2) -"atZ" = (/obj/machinery/computer/security,/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/turf/simulated/floor{icon_state = "red"; dir = 5},/area/security/checkpoint2) -"aua" = (/obj/machinery/vending/assist,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aub" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"auc" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/firealarm{pixel_y = 24},/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor,/area/storage/primary) -"aud" = (/obj/structure/table,/obj/item/device/t_scanner,/obj/machinery/alarm{pixel_y = 23},/obj/item/device/silicate_sprayer,/turf/simulated/floor,/area/storage/primary) -"aue" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/device/assembly/igniter,/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/machinery/requests_console{department = "Tool Storage"; pixel_y = 30},/obj/machinery/light{dir = 1},/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"auf" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = 20},/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aug" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"auh" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor,/area/storage/primary) -"aui" = (/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"auj" = (/obj/machinery/vending/tool,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"auk" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor,/area/engineering/atmos) -"aul" = (/obj/machinery/atmospherics/binary/pump{dir = 1; icon_state = "intact_on"; name = "External to Filter"; on = 1},/turf/simulated/floor,/area/engineering/atmos) -"aum" = (/obj/machinery/atmospherics/binary/pump{icon_state = "intact_on"; name = "Air to External"; on = 1},/obj/machinery/light,/obj/machinery/camera{c_tag = "Atmospherics South West"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"aun" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"auo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"aup" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"auq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"aur" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1},/turf/simulated/floor,/area/engineering/atmos) -"aus" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/obj/machinery/camera{c_tag = "Atmospherics South East"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"aut" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/light,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/engineering/atmos) -"auu" = (/obj/machinery/atmospherics/unary/portables_connector,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"auv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor,/area/engineering/atmos) -"auw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/tcomms/storage) -"aux" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plating,/area/tcomms/storage) -"auy" = (/obj/machinery/computer/message_monitor,/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/tcommsat/computer) -"auz" = (/obj/machinery/computer/telecomms/traffic{network = "tcommsat"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/tcommsat/computer) -"auA" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/simulated/floor{dir = 5; icon_state = "yellow"},/area/tcommsat/computer) -"auB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/tcommsat/computer) -"auC" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room"; req_access_txt = "61"},/turf/simulated/floor{icon_state = "dark"},/area/tcommsat/computer) -"auD" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/tcommsat/computer) -"auE" = (/obj/structure/table,/obj/item/device/multitool,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/tcommsat/computer) -"auF" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/tcommsat/computer) -"auG" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/structure/table,/obj/item/device/radio/off,/turf/simulated/floor{dir = 5; icon_state = "yellow"},/area/tcommsat/computer) -"auH" = (/obj/item/stack/rods,/turf/space,/area) -"auI" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar/panel{id_tag = "foreportsolar"; name = "Fore Port Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/fport) -"auJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fport) -"auK" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar/panel{id_tag = "foreportsolar"; name = "Fore Port Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/fport) -"auL" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/solar/fport) -"auM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fport) -"auN" = (/obj/structure/closet,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"auO" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/bruise_pack,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/fore) -"auP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"auQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/fore) -"auR" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"auS" = (/obj/structure/reagent_dispensers/silicate,/turf/simulated/floor/plating,/area/maintenance/fore) -"auT" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"auU" = (/obj/item/stack/sheet/glass/glass{amount = 28},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fore) -"auV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fore) -"auW" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fore) -"auX" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fore) -"auY" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/science/mixing) -"auZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/science/mixing) -"ava" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"avb" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Restroom Maintenance"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/break_room) -"avc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"avd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"ave" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"avf" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"avg" = (/obj/structure/window/full/reinforced,/turf/simulated/floor/plating,/area/medical/surgery) -"avh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay) -"avi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Recovery"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"avj" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/medical/medbay) -"avk" = (/turf/simulated/wall/r_wall,/area/medical/cmo) -"avl" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avm" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avo" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"avq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fpmaint2) -"avr" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"avs" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"avt" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"avu" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"avv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"avw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/hallway/secondary/entry) -"avx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/hallway/secondary/entry) -"avy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/security/checkpoint2) -"avz" = (/obj/structure/table/reinforced,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/checkpoint2) -"avA" = (/obj/structure/bed/chair/office/dark,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/security/checkpoint2) -"avB" = (/obj/machinery/computer/card,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/checkpoint2) -"avC" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/storage/primary) -"avD" = (/obj/item/weapon/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"avE" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"avF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/storage/primary) -"avG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"avH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/simulated/wall,/area/engineering/atmos) -"avI" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/wall,/area/engineering/atmos) -"avJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"avK" = (/obj/structure/sign/securearea,/turf/simulated/wall,/area/engineering/atmos) -"avL" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"avM" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engineering/atmos) -"avN" = (/obj/machinery/atmospherics/trinary/mixer{dir = 8},/obj/machinery/camera{c_tag = "Atmospherics South East"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"avO" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/turf/simulated/floor,/area/engineering/atmos) -"avP" = (/obj/machinery/power/apc{dir = 8; level = 4; name = "apc"; pixel_x = -24},/obj/structure/cable,/turf/simulated/floor/plating,/area/tcomms/storage) -"avQ" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/tcommsat/computer) -"avR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor,/area/tcommsat/computer) -"avS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor,/area/tcommsat/computer) -"avT" = (/obj/machinery/door/airlock/glass_command{name = "Control Room"; req_access_txt = "19; 61"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/tcommsat/computer) -"avU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor,/area/tcommsat/computer) -"avV" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/tcommsat/computer) -"avW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/tcommsat/computer) -"avX" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/tcommsat/computer) -"avY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/tcommsat/computer) -"avZ" = (/obj/structure/closet/crate,/obj/item/device/am_shielding_container,/obj/item/device/am_shielding_container,/obj/item/device/am_shielding_container,/obj/item/device/am_shielding_container,/obj/item/device/am_shielding_container,/obj/item/device/am_shielding_container,/obj/item/device/am_shielding_container,/obj/item/device/am_shielding_container,/obj/item/device/am_shielding_container,/turf/simulated/floor{dir = 8; icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"awa" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/engineering/antimatter_room) -"awb" = (/obj/machinery/camera{c_tag = "Engineering AME South"; dir = 8; network = list("MINE")},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor{icon_state = "dark vault stripe"; dir = 4},/area/engineering/antimatter_room) -"awc" = (/turf/simulated/floor/plating/airless{oxygen = 5000; toxins = 5000},/area) -"awd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fport) -"awe" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/solar/fport) -"awf" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fport) -"awg" = (/turf/simulated/wall/r_wall,/area/maintenance/fportsolar) -"awh" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fore) -"awi" = (/turf/simulated/floor{icon_state = "damaged5"},/area/maintenance/fore) -"awj" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "floorscorched2"},/area/maintenance/fore) -"awk" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fore) -"awl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"awm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fore) -"awn" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor,/area/science/mixing) -"awo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/science/mixing) -"awp" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/science/mixing) -"awq" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"awr" = (/obj/machinery/light/small{dir = 4},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"aws" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"awt" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"awu" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"awv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aww" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"awx" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/iv_drip,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"awy" = (/obj/machinery/suit_storage_unit/medical,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"awz" = (/obj/machinery/computer/crew,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = 32},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"awA" = (/obj/machinery/computer/med_data,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"awB" = (/obj/machinery/disposal,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/trunk,/obj/machinery/media/receiver/boombox/wallmount{pixel_y = 32},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"awC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awD" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awE" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awF" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awG" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awH" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awI" = (/obj/item/weapon/reagent_containers/syringe,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awK" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"awL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"awM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"awN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Reading Area"; dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/carpet,/area/hallway/secondary/entry) -"awO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"awP" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 8},/turf/simulated/floor,/area/hallway/secondary/entry) -"awQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/hallway/secondary/entry) -"awR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/security/checkpoint2) -"awS" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/checkpoint2) -"awT" = (/turf/simulated/floor,/area/security/checkpoint2) -"awU" = (/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = 32},/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/checkpoint2) -"awV" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"awW" = (/obj/item/stack/rods{amount = 50},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/storage/primary) -"awX" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/storage/primary) -"awY" = (/obj/item/stack/sheet/glass/glass{amount = 50},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/storage/primary) -"awZ" = (/obj/item/stack/sheet/metal{amount = 50},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/storage/primary) -"axa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"axb" = (/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"axc" = (/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"axd" = (/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"axe" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/engineering/atmos) -"axf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered,/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered,/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"axg" = (/obj/machinery/computer/atmoscontrol,/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"axh" = (/obj/machinery/computer/general_air_control{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/machinery/camera{c_tag = "Atmospherics Monitoring"},/obj/machinery/door_control{id_tag = "atmos"; name = "Atmospherics Lockdown"; pixel_y = 24; req_access_txt = "24"},/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"axi" = (/obj/machinery/computer/general_air_control{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" = "Waste Loop")},/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"axj" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"axk" = (/obj/machinery/computer/station_alert,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_y = 30},/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/atmos) -"axl" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor{icon_state = "caution"; dir = 5},/area/engineering/atmos) -"axm" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/tcomms/storage) -"axn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera{c_tag = "Telecoms Atmospherics South"; dir = 1},/turf/simulated/floor/plating,/area/tcomms/storage) -"axo" = (/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor/plating,/area/tcomms/storage) -"axp" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/weapon/pen/blue,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor,/area/tcommsat/computer) -"axq" = (/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecoms)"; pixel_y = -28},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/tcommsat/computer) -"axr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/tcommsat/computer) -"axs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/tcommsat/computer) -"axt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/tcommsat/computer) -"axu" = (/obj/machinery/camera{c_tag = "Telecoms Monitoring"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor,/area/tcommsat/computer) -"axv" = (/obj/structure/closet/emcloset,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor,/area/tcommsat/computer) -"axw" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor,/area/tcommsat/computer) -"axx" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/tcommsat/computer) -"axy" = (/obj/machinery/power/am_control_unit{anchored = 0},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/antimatter_room) -"axz" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/turf/simulated/floor{icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"axA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/antimatter_room) -"axB" = (/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor{icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"axC" = (/obj/structure/closet/secure_closet/engineering_general,/obj/item/weapon/am_containment,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/antimatter_room) -"axD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fport) -"axE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/wardrobe/grey,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/circuitboard/fire_alarm,/turf/simulated/floor/plating,/area/derelictparts/fore) -"axF" = (/obj/structure/bed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"axG" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet,/obj/item/weapon/wirecutters,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fore) -"axH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/window/reinforced{dir = 4},/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fore) -"axI" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fore) -"axJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/blood/writing,/turf/simulated/floor/plating,/area/maintenance/fore) -"axK" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"axL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fore) -"axM" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fore) -"axN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore) -"axO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fore) -"axP" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fore) -"axQ" = (/obj/machinery/atmospherics/unary/tank/air{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"axR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fore) -"axS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"axT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"axU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"axV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"axW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"axX" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/science/mixing) -"axY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"axZ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aya" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"ayb" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/science/mixing) -"ayc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fpmaint) -"ayd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"aye" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"ayf" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/break_room) -"ayg" = (/obj/structure/bed/chair{dir = 1},/obj/structure/sign/nosmoking_2{pixel_x = -28},/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"ayh" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"ayi" = (/obj/machinery/camera{c_tag = "Surgery Observation"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"ayj" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"ayk" = (/obj/machinery/door/airlock/atmos{name = "Telecomms Atmospherics"; req_access_txt = "24"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/tcomms/storage) -"ayl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aym" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"ayn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/bed/chair/vehicle/wheelchair{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"ayo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/cmo) -"ayp" = (/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"ayq" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"ayr" = (/obj/machinery/keycard_auth{pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"ays" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ayt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ayu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ayv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"ayw" = (/turf/simulated/wall/r_wall,/area/engineering/mechanics) -"ayx" = (/obj/item/weapon/crowbar,/obj/item/device/flash,/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/checkpoint2) -"ayy" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 8},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/checkpoint2) -"ayz" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"ayA" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/plasteel{amount = 30},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/storage/primary) -"ayB" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/storage/primary) -"ayC" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"ayD" = (/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"ayE" = (/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"ayF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden/layered,/turf/simulated/floor,/area/engineering/atmos) -"ayG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layered{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"ayH" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/layer_adapter/scrubbers/hidden{dir = 4; icon_state = "adapter_4"; tag = "icon-adapt_4 (EAST)"},/turf/simulated/floor,/area/engineering/atmos) -"ayI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"ayJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"ayK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor,/area/engineering/atmos) -"ayL" = (/obj/structure/disposalpipe/segment,/obj/machinery/light_switch{pixel_x = 25; pixel_y = 25},/turf/simulated/floor,/area/engineering/atmos) -"ayM" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/atmos) -"ayN" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "atmos"; name = "atmos blast door"},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"ayO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera{c_tag = "Atmospherics Access"},/obj/structure/sign/atmosplaque{desc = "This plaque commemorates the fall of the Atmos LINDA division. For all the charred, dizzy, and brittle men who have died in its hands."; name = "\improper LINDA Atmospherics Division plaque"; pixel_y = 32},/turf/simulated/floor,/area/engineering/atmos) -"ayP" = (/obj/structure/closet/firecloset,/turf/simulated/floor{icon_state = "caution"; dir = 5},/area/engineering/atmos) -"ayQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/tcomms/storage) -"ayR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/tcomms/storage) -"ayS" = (/mob/living/simple_animal/hostile/necro/zombie,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/fore) -"ayT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"ayU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"ayV" = (/turf/simulated/wall,/area/engineering/antimatter_room) -"ayW" = (/obj/machinery/door/airlock/glass_medical{name = "Medbay Storage"; req_access_txt = "5"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay2) -"ayX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/engineering/antimatter_room) -"ayY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/engineering/antimatter_room) -"ayZ" = (/turf/simulated/wall/r_wall,/area/engineering/engine) -"aza" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"azb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor{icon_state = "grimy"},/area/hallway/secondary/entry) -"azc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/extinguisher,/obj/item/weapon/cigbutt{pixel_x = 6},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"azd" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aze" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"azf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"azg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"azh" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fore) -"azi" = (/obj/item/weapon/cigbutt,/obj/machinery/camera{c_tag = "Science Maint. Bottom"; dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fore) -"azj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/fore) -"azk" = (/obj/machinery/atmospherics/binary/valve{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"azl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"azm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"azn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"azo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"azp" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"azq" = (/turf/simulated/wall/r_wall,/area/medical/break_room) -"azr" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"azs" = (/turf/simulated/wall,/area/medical/patients_rooms) -"azt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"azu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"azv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/chair/vehicle/wheelchair{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"azw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/cmo) -"azx" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"azy" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/stamp/cmo,/obj/item/clothing/glasses/hud/health,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"azz" = (/obj/structure/table,/obj/item/weapon/pen,/obj/item/clothing/accessory/stethoscope,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/cat/Runtime,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"azA" = (/obj/item/device/radio/intercom{pixel_x = 25},/obj/machinery/camera{c_tag = "Chief Medical Office"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"azB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"azC" = (/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"azD" = (/obj/machinery/door/airlock/maintenance{name = "Mechanics Maintenance"; req_access_txt = "501"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/mechanics) -"azE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/engineering/mechanics) -"azF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/engineering/mechanics) -"azG" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/mechanics) -"azH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/table,/obj/item/weapon/paper_bin/nano,/obj/item/weapon/paper_pack,/obj/item/weapon/paper_pack/nano,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor,/area/engineering/mechanics) -"azI" = (/obj/machinery/r_n_d/reverse_engine,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor,/area/engineering/mechanics) -"azJ" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Mechanics Workshop"},/obj/structure/closet/secure_closet/engineering_mechanic,/turf/simulated/floor,/area/engineering/mechanics) -"azK" = (/obj/structure/closet/secure_closet/engineering_mechanic,/turf/simulated/floor,/area/engineering/mechanics) -"azL" = (/obj/structure/rack,/obj/item/weapon/storage/belt,/obj/item/device/device_analyser,/obj/item/device/device_analyser,/turf/simulated/floor,/area/engineering/mechanics) -"azM" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{dir = 8; icon_state = "cautioncorner"},/area/hallway/primary/fore) -"azN" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/hallway/primary/fore) -"azO" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/fore) -"azP" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/checkpoint2) -"azQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/checkpoint2) -"azR" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/airlock,/obj/item/weapon/circuitboard/power_control,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"azS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"azT" = (/obj/item/weapon/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor,/area/storage/primary) -"azU" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/storage/primary) -"azV" = (/obj/structure/table,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"azW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"azX" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"azY" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"azZ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/layer_adapter/supply/hidden,/turf/simulated/floor,/area/engineering/atmos) -"aAa" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"aAb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"aAc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/atmos) -"aAd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aAe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aAf" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "atmos"; name = "atmos blast door"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"aAg" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aAh" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "caution"; dir = 4},/area/engineering/atmos) -"aAi" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aAj" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/storage/hazardvest,/obj/item/clothing/suit/storage/hazardvest,/obj/item/weapon/tank/emergency_oxygen/engi,/obj/item/weapon/tank/emergency_oxygen/engi,/obj/item/clothing/glasses/meson,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aAk" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor,/area/engineering/engine) -"aAl" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aAm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine) -"aAn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aAo" = (/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aAp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine) -"aAq" = (/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aAr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/engine) -"aAs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aAt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"aAu" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aAv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aAw" = (/obj/machinery/camera{c_tag = "Engineering AME Hallway 2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aAx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aAy" = (/turf/simulated/floor,/area/engineering/engine) -"aAz" = (/obj/structure/grille,/obj/structure/lattice,/turf/space,/area) -"aAA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/medical/break_room) -"aAB" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aAC" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aAD" = (/obj/structure/bed,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aAE" = (/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Surgery Observation"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "dark"},/area/medical/surgery) -"aAF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"aAG" = (/turf/simulated/wall/r_wall,/area/science/xenobiology) -"aAH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/fore) -"aAI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fore) -"aAJ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/science/storage) -"aAK" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/science/storage) -"aAL" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/window/reinforced{dir = 8},/obj/structure/sign/nosmoking_2{pixel_y = 32},/turf/simulated/floor{icon_state = "bot"},/area/science/storage) -"aAM" = (/turf/simulated/wall,/area/science/storage) -"aAN" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aAO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aAP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aAQ" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aAR" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aAS" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aAT" = (/obj/machinery/vending/coffee,/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aAU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aAV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/medical/break_room) -"aAW" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/sleep_console/mancrowave_console,/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aAX" = (/obj/machinery/sleeper/mancrowave,/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aAY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/medical/patients_rooms) -"aAZ" = (/obj/machinery/sleeper,/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_y = 25},/turf/simulated/floor,/area/medical/medbay) -"aBa" = (/obj/machinery/sleep_console,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor,/area/medical/medbay) -"aBb" = (/obj/machinery/iv_drip,/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/medical/medbay) -"aBc" = (/obj/machinery/bodyscanner,/obj/structure/closet/walllocker/defiblocker{pixel_y = 32},/turf/simulated/floor,/area/medical/medbay) -"aBd" = (/obj/machinery/body_scanconsole,/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/obj/machinery/recharger/defibcharger/wallcharger{pixel_y = 27},/turf/simulated/floor,/area/medical/medbay) -"aBe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aBf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aBg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aBh" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/medical/cmo) -"aBi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aBj" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aBk" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aBl" = (/obj/machinery/light_switch{pixel_x = 28},/obj/structure/disposalpipe/segment,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aBm" = (/turf/simulated/wall,/area/medical/cmo) -"aBn" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/cmo) -"aBo" = (/obj/structure/rack,/obj/item/weapon/circuitboard/airlock,/obj/item/device/assembly/prox_sensor,/obj/item/device/t_scanner,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aBp" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aBq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aBr" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/engineering/mechanics) -"aBs" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/mechanics) -"aBt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/mechanics) -"aBu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/mechanics) -"aBv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor,/area/engineering/mechanics) -"aBw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/mechanics) -"aBx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/engineering{name = "Telecommunications"; req_access_txt = "61"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/tcommsat/computer) -"aBy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/hallway/primary/fore) -"aBz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction/Cargo{dir = 1; icon_state = "pipe-j2s"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/simulated/floor,/area/hallway/primary/fore) -"aBA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/fore) -"aBB" = (/obj/machinery/door/airlock/engineering{name = "Antimatter Room"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/engineering/antimatter_room) -"aBC" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 10},/area/security/checkpoint2) -"aBD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "red"},/area/security/checkpoint2) -"aBE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/closet/wardrobe/red,/turf/simulated/floor{icon_state = "red"; dir = 6},/area/security/checkpoint2) -"aBF" = (/obj/structure/table,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor,/area/storage/primary) -"aBG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/storage/primary) -"aBH" = (/obj/structure/reagent_dispensers/silicate,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBI" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBJ" = (/obj/structure/table,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/black,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBK" = (/obj/structure/table,/obj/map/spawner/assistant/tools,/obj/map/spawner/assistant/tools,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBL" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/storage/primary) -"aBN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/storage/primary) -"aBO" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor{icon_state = "floorgrime"},/area/storage/primary) -"aBP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/fpmaint3) -"aBQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/simulated/wall/r_wall,/area/maintenance/fpmaint3) -"aBR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aBS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/meter,/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aBT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/decal/warning_stripes{tag = "icon-loading_area (NORTH)"; icon_state = "loading_area"; dir = 1},/turf/simulated/floor,/area/engineering/atmos) -"aBU" = (/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/device/modkit/gold_rig,/turf/simulated/floor,/area/engineering/atmos) -"aBV" = (/obj/structure/table,/obj/item/weapon/tank/emergency_oxygen{pixel_x = -8},/obj/item/weapon/tank/emergency_oxygen{pixel_x = -8},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aBW" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor,/area/engineering/atmos) -"aBX" = (/obj/structure/dispenser{pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/atmos) -"aBY" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -27},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"aBZ" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"aCa" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "atmos"; name = "atmos blast door"},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"aCb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/atmos) -"aCc" = (/turf/simulated/floor{dir = 6; icon_state = "caution"},/area/engineering/atmos) -"aCd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aCe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"aCf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aCg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aCh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine) -"aCi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aCj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aCk" = (/obj/machinery/camera{c_tag = "Engineering AME Hallway 1"; dir = 1; network = list("SS13","RD")},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aCl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aCm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"aCn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aCo" = (/obj/structure/lattice,/obj/item/stack/rods,/turf/space,/area) -"aCp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/solar/fport) -"aCq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fport) -"aCr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aCs" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aCt" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/battery/smes{charge = 0},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aCu" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/terminal{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aCv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/maintenance/fportsolar) -"aCw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/break_room) -"aCx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aCy" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Outer Xenobiology Test North"; name = "motion-sensitive security camera"; network = list("Misc","RD")},/turf/space,/area) -"aCz" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "bot"},/area/science/storage) -"aCA" = (/obj/machinery/computer/area_atmos,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aCB" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aCC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aCD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aCE" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aCF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aCG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aCH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aCI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/medical/break_room) -"aCJ" = (/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aCK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aCL" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/medical/patients_rooms) -"aCM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aCN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aCO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aCP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aCQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/sortjunction/CMO{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aCR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aCS" = (/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aCT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aCU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aCV" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aCW" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aCX" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/cmo) -"aCY" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/medical/cmo) -"aCZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/rack,/obj/item/device/multitool,/obj/item/weapon/weldingtool,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aDa" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aDb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fpmaint2) -"aDc" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor,/area/engineering/mechanics) -"aDd" = (/obj/structure/closet/toolcloset,/turf/simulated/floor,/area/engineering/mechanics) -"aDe" = (/turf/simulated/floor,/area/engineering/mechanics) -"aDf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor,/area/engineering/mechanics) -"aDg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/engineering/mechanics) -"aDh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/mechanics) -"aDi" = (/obj/machinery/r_n_d/fabricator/circuit_imprinter,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor,/area/engineering/mechanics) -"aDj" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/hallway/primary/fore) -"aDk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/hallway/primary/fore) -"aDl" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor,/area/hallway/primary/fore) -"aDm" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/storage/primary) -"aDn" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aDo" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/storage/primary) -"aDp" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/storage/primary) -"aDq" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/primary) -"aDr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{icon = 'icons/obj/doors/Doorsci.dmi'; name = "Mechanics Workshop"; req_access_txt = "501"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/engineering/mechanics) -"aDs" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/storage/primary) -"aDt" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fpmaint3) -"aDu" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor{dir = 1; icon_state = "escape"},/area/hallway/primary/starboard) -"aDv" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/scrubber,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/turf/simulated/floor{dir = 1; icon_state = "escape"},/area/hallway/primary/starboard) -"aDw" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{dir = 1; icon_state = "arrival"},/area/hallway/primary/starboard) -"aDx" = (/obj/structure/plasticflaps,/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Atmospherics"},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/atmos) -"aDy" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/engineering/atmos) -"aDz" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 1; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/engineering/atmos) -"aDA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aDB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aDC" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/atmos) -"aDD" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access = null; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/security/checkpoint2) -"aDE" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aDF" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine) -"aDG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aDH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aDI" = (/obj/structure/table,/obj/item/device/flashlight{pixel_y = 5},/obj/item/clothing/ears/earmuffs{pixel_x = -5; pixel_y = 6},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine) -"aDJ" = (/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aDK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aDL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aDM" = (/turf/simulated/wall,/area/engineering/supermatter_room) -"aDN" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aDO" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aDP" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aDQ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = -32; pixel_y = 0},/turf/space,/area) -"aDR" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar/panel/tracker,/turf/simulated/floor/plating/airless,/area/solar/fport) -"aDS" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fport) -"aDT" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fport) -"aDU" = (/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fport) -"aDV" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/solar/fport) -"aDW" = (/turf/simulated/floor/plating/airless,/area/solar/fport) -"aDX" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/solar/fport) -"aDY" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fport) -"aDZ" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating/airless,/area/solar/fport) -"aEa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aEb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aEc" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aEd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Aft Port Solar Access"; req_access_txt = "10"},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aEe" = (/obj/structure/cable,/obj/machinery/power/solar/control{id_tag = "foreportsolar"; name = "Fore Port Solar Control"},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aEf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aEg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aEh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aEi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = -6},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fore) -"aEj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fore) -"aEk" = (/obj/structure/rack,/obj/effect/decal/cleanable/dirt,/obj/item/device/paicard,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/maintenance/fore) -"aEl" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/fore) -"aEm" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 4; network = list("SS13","RD")},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aEn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_animal/mouse/brown,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aEo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aEp" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aEq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aEr" = (/obj/machinery/door/airlock/glass_command{name = "Chief Medical Officer"; req_access_txt = "40"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aEs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aEt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aEu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aEv" = (/obj/structure/noticeboard{pixel_x = -32},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/reagent_dispensers/water_cooler,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aEw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aEx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aEy" = (/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/storage/primary) -"aEz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aEA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aEB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aEC" = (/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/storage/primary) -"aED" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aEE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aEF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aEG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aEH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aEI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aEJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aEK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aEL" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/cmo) -"aEM" = (/obj/structure/table,/obj/item/weapon/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/weapon/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/weapon/cartridge/medical,/obj/item/weapon/cartridge/chemistry{pixel_y = 2},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aEN" = (/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/cable,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aEO" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aEP" = (/obj/structure/closet/secure_closet/CMO,/obj/machinery/light{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/medical/cmo) -"aEQ" = (/turf/simulated/wall/r_wall,/area/medical/morgue) -"aER" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/medical/morgue) -"aES" = (/turf/simulated/wall,/area/medical/morgue) -"aET" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Morgue Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aEU" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Mechanic"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/engineering/mechanics) -"aEV" = (/obj/machinery/mineral/output,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/mechanics) -"aEW" = (/obj/machinery/r_n_d/fabricator/mechanic_fab/flatpacker,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/engineering/mechanics) -"aEX" = (/turf/simulated/floor,/area/hallway/primary/fore) -"aEY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/hallway/primary/fore) -"aEZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/fore) -"aFa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/fore) -"aFb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/starboard) -"aFc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/starboard) -"aFd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/starboard) -"aFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/media/receiver/boombox/wallmount/muzak{on = 0; pixel_y = 32},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Fore Starboard Hall East"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aFo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-loading_area"; icon_state = "loading_area"; dir = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/hallway/primary/starboard) -"aFp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/hallway/primary/starboard) -"aFq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/hallway/primary/starboard) -"aFr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/hallway/primary/starboard) -"aFs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 5; icon_state = "yellow"},/area/hallway/primary/starboard) -"aFt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/engineering/break_room) -"aFu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/dispenser{pixel_x = -1},/turf/simulated/floor,/area/engineering/break_room) -"aFv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/engineering/break_room) -"aFw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/break_room) -"aFx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/break_room) -"aFy" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor{dir = 1; icon_state = "caution"},/area/engineering/break_room) -"aFz" = (/turf/simulated/wall,/area/engineering/break_room) -"aFA" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/nosmoking_2{pixel_x = -32},/obj/machinery/camera{c_tag = "Engineering N-O"; dir = 4},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aFB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine) -"aFC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"aFD" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_guide,/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/off,/obj/item/device/radio/off,/turf/simulated/floor,/area/engineering/engine) -"aFE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/engine) -"aFF" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Access"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aFG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aFH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine) -"aFI" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine) -"aFJ" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine) -"aFK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aFL" = (/obj/machinery/camera{c_tag = "Supermatter N-O"; dir = 4},/obj/structure/dispenser,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 101.325; on = 1},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aFM" = (/obj/machinery/power/emitter,/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aFN" = (/obj/machinery/power/emitter,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFO" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFP" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aFQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aFR" = (/obj/machinery/portable_atmospherics/canister/plasma,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFS" = (/obj/machinery/camera{c_tag = "Engineering Supermatter North"; dir = 2; network = list("SS13","RD")},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFT" = (/obj/machinery/light{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFU" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFV" = (/obj/machinery/atmospherics/unary/portables_connector,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFW" = (/obj/machinery/atmospherics/unary/cold_sink/freezer,/turf/simulated/floor,/area/engineering/supermatter_room) -"aFX" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aFY" = (/turf/simulated/floor,/area/engineering/supermatter_room) -"aFZ" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor,/area/engineering/supermatter_room) -"aGa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aGb" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area) -"aGc" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/space,/area) -"aGd" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aGe" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aGf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGg" = (/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGh" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aGi" = (/obj/structure/closet,/obj/item/mounted/poster,/obj/item/weapon/lighter/random,/turf/simulated/floor/plating,/area/maintenance/fore) -"aGj" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"aGk" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aGl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aGm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aGn" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/wrench,/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aGo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/science/storage) -"aGp" = (/obj/machinery/camera{c_tag = "Toxins Launch Room Access"; dir = 1},/obj/structure/sign/securearea{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/turf/simulated/floor,/area/science/mixing) -"aGq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/science/mixing) -"aGr" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/science/mixing) -"aGs" = (/obj/structure/table,/obj/machinery/status_display{layer = 4; pixel_y = -32},/obj/item/weapon/paper,/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aGt" = (/obj/item/weapon/stool,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -27},/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aGu" = (/obj/machinery/camera{c_tag = "Medbay Break Room"; dir = 1},/obj/machinery/vending/cola,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aGv" = (/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/cable,/obj/structure/table,/obj/item/weapon/storage/box/masks,/obj/item/weapon/storage/box/gloves{pixel_x = 3; pixel_y = 4},/obj/item/weapon/storage/firstaid/fire{pixel_x = 2; pixel_y = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aGw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/table,/obj/item/weapon/storage/box/syringes{pixel_x = 2; pixel_y = 6},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 6},/obj/item/weapon/storage/firstaid/regular{pixel_x = 4; pixel_y = 2},/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aGx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Toxins Launch Room Access North"; dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/mixing) -"aGy" = (/obj/machinery/ai_status_display{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/patients_rooms) -"aGz" = (/obj/machinery/camera{c_tag = "Medbay Treatment Center"; dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/sleeper,/turf/simulated/floor,/area/medical/medbay) -"aGA" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/sleep_console,/turf/simulated/floor,/area/medical/medbay) -"aGB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/iv_drip,/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/medical/medbay) -"aGC" = (/obj/machinery/bodyscanner,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/medical/medbay) -"aGD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/body_scanconsole,/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/medical/medbay) -"aGE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aGF" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/BPlus,/obj/item/weapon/reagent_containers/blood/BMinus,/obj/item/weapon/reagent_containers/blood/APlus,/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aGG" = (/obj/structure/morgue,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGH" = (/obj/structure/morgue{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGJ" = (/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGK" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aGL" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/r_n_d/blueprinter,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor,/area/engineering/mechanics) -"aGM" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor,/area/engineering/mechanics) -"aGN" = (/obj/machinery/r_n_d/fabricator/protolathe,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor,/area/engineering/mechanics) -"aGO" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Engineering"; location = "ArrivalsL"},/turf/simulated/floor,/area/hallway/primary/fore) -"aGP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor,/area/hallway/primary/fore) -"aGQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHTR"; location = "ArrivalsR"},/turf/simulated/floor,/area/hallway/primary/fore) -"aGR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/fore) -"aGS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/starboard) -"aGT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor,/area/hallway/primary/starboard) -"aGU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/starboard) -"aGV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/hallway/primary/starboard) -"aGW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor,/area/hallway/primary/starboard) -"aGX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/hallway/primary/starboard) -"aGY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/hallway/primary/starboard) -"aGZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/hallway/primary/starboard) -"aHa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/starboard) -"aHb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/hallway/primary/starboard) -"aHc" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=ArrivalsR"; location = "Engineering"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/hallway/primary/starboard) -"aHd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "yellow"},/area/hallway/primary/starboard) -"aHe" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 4; name = "Engineering Desk"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/engineering/break_room) -"aHf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/bed/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aHg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aHh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aHi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/comfy/black{dir = 4},/obj/structure/disposalpipe/sortjunction/Atmos{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor,/area/engineering/break_room) -"aHj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/structure/table,/obj/item/weapon/wrench,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor,/area/engineering/break_room) -"aHk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/engineering/break_room) -"aHl" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aHm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aHn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine) -"aHo" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aHp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/engineering/engine) -"aHq" = (/obj/structure/reagent_dispensers/silicate,/turf/simulated/floor,/area/engineering/engine) -"aHr" = (/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aHs" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aHt" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Supermatter Engine Access"; req_access_txt = "11"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/engine) -"aHu" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/engineering/engine) -"aHv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/engineering/engine) -"aHw" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Supermatter Engine Access"; req_access_txt = "11"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aHx" = (/obj/effect/decal/warning_stripes{dir = 2; icon_state = "radiation-w"},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aHy" = (/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aHz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aHA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aHB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aHC" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor,/area/engineering/supermatter_room) -"aHD" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible/blue,/turf/simulated/floor,/area/engineering/supermatter_room) -"aHE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aHF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/space,/area) -"aHG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fport) -"aHH" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fport) -"aHI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/solar/fport) -"aHJ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fportsolar) -"aHK" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aHL" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aHM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster{desc = "Grey Pride World Wide!"; icon_state = "poster8"; pixel_x = 32},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aHN" = (/turf/simulated/floor/engine,/area/science/xenobiology) -"aHO" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Xenobiology Test Chamber North"; network = list("Misc","RD")},/turf/simulated/floor/engine,/area/science/xenobiology) -"aHP" = (/turf/simulated/wall/r_wall,/area/science/telescience) -"aHQ" = (/obj/machinery/portable_atmospherics/canister/plasma,/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/science/storage) -"aHR" = (/obj/machinery/portable_atmospherics/canister/plasma,/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/science/storage) -"aHS" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/science/storage) -"aHT" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/science/storage) -"aHU" = (/turf/simulated/wall/r_wall,/area/science/mixing) -"aHV" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/r_wall,/area/science/mixing) -"aHW" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room Access"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aHX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/science/mixing) -"aHY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/medical/break_room) -"aHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/medical/patients_rooms) -"aIa" = (/turf/simulated/wall,/area/medical/medbay) -"aIb" = (/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay) -"aIc" = (/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay) -"aId" = (/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/medbay) -"aIe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "whitehall"; dir = 5},/area/medical/medbay) -"aIf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aIg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aIh" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aIi" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aIj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aIk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aIl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aIm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/medical/medbay) -"aIn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/morgue,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aIo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/medical/morgue) -"aIp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aIq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aIr" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aIs" = (/obj/structure/morgue{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aIt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aIu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = -22; pixel_y = 25},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aIv" = (/obj/structure/table,/obj/item/stack/sheet/glass/glass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/mineral/plastic{amount = 20},/obj/machinery/requests_console/mechanic{dir = 8; pixel_x = -32},/turf/simulated/floor,/area/engineering/mechanics) -"aIw" = (/obj/machinery/light_switch{pixel_x = -26; pixel_y = -24},/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Mechanic"},/turf/simulated/floor,/area/engineering/mechanics) -"aIx" = (/obj/machinery/computer/rdconsole/mechanic,/turf/simulated/floor,/area/engineering/mechanics) -"aIy" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/engineering/mechanics) -"aIz" = (/obj/structure/rack,/obj/item/weapon/storage/bag/gadgets{pixel_x = 3; pixel_y = -3},/obj/item/weapon/storage/bag/gadgets,/obj/item/weapon/storage/bag/gadgets{pixel_x = -3; pixel_y = 3},/turf/simulated/floor,/area/engineering/mechanics) -"aIA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/fore) -"aIB" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/fore) -"aIC" = (/turf/simulated/floor{icon_state = "greencorner"},/area/hallway/primary/starboard) -"aID" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "green"},/area/hallway/primary/starboard) -"aIE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "green"},/area/hallway/primary/starboard) -"aIF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "greencorner"},/area/hallway/primary/starboard) -"aIG" = (/turf/simulated/floor,/area/hallway/primary/starboard) -"aIH" = (/obj/machinery/light,/turf/simulated/floor,/area/hallway/primary/starboard) -"aII" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIJ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIK" = (/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIL" = (/obj/machinery/camera{c_tag = "Fore Starboard Hall Center"; dir = 1},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 4},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIO" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIP" = (/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/cable,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aIU" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/engineering/atmos) -"aIV" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "yellow"},/area/hallway/primary/starboard) -"aIW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -27},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "yellow"},/area/hallway/primary/starboard) -"aIX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "yellow"},/area/hallway/primary/starboard) -"aIY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "yellow"},/area/hallway/primary/starboard) -"aIZ" = (/turf/simulated/floor{dir = 6; icon_state = "yellow"},/area/hallway/primary/starboard) -"aJa" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/engineering/break_room) -"aJb" = (/obj/structure/table,/obj/item/weapon/tank/emergency_oxygen{pixel_x = -8},/obj/item/weapon/tank/emergency_oxygen{pixel_x = -8},/obj/item/clothing/mask/breath{pixel_x = 4},/obj/item/clothing/mask/breath{pixel_x = 4},/turf/simulated/floor,/area/engineering/break_room) -"aJc" = (/turf/simulated/floor,/area/engineering/break_room) -"aJd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/break_room) -"aJe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor,/area/engineering/break_room) -"aJf" = (/obj/structure/table,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Engineering Break Room"; dir = 8},/obj/item/device/radio/off,/obj/item/device/radio/off,/turf/simulated/floor,/area/engineering/break_room) -"aJg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/engineering/break_room) -"aJh" = (/obj/structure/table,/obj/item/clothing/gloves/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aJi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor,/area/engineering/engine) -"aJj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/engineering/engine) -"aJk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aJl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aJm" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/engine) -"aJn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aJo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aJp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine) -"aJq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine) -"aJr" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/plating,/area/engineering/engine) -"aJs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/supermatter_room) -"aJt" = (/obj/machinery/power/apc{dir = 8; level = 4; name = "apc"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aJu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aJv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJw" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJx" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJy" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJz" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJA" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJB" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible/blue{dir = 5},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJC" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible/blue,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJD" = (/obj/machinery/atmospherics/pipe/manifold4w/insulated/visible/blue,/turf/simulated/floor,/area/engineering/supermatter_room) -"aJE" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible/blue{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aJF" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aJG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fport) -"aJH" = (/obj/structure/window/barricade/full,/turf/simulated/floor/plating{icon_state = "warnplate"},/area/derelictparts/fore) -"aJI" = (/obj/item/weapon/caution/cone,/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 1},/area/derelictparts/fore) -"aJJ" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/food/snacks/donkpocket,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aJK" = (/obj/structure/bed,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aJL" = (/turf/simulated/floor/engine,/area/science/telescience) -"aJM" = (/turf/simulated/wall,/area/science/telescience) -"aJN" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aJO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/alarm{pixel_y = 23},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aJP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aJQ" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aJR" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aJS" = (/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/device/assembly/timer,/obj/structure/table/reinforced,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aJT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aJU" = (/obj/machinery/camera{c_tag = "Genetics Research"; dir = 2; network = list("SS13","RD")},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aJV" = (/obj/machinery/requests_console{department = "Genetics"; name = "Genetics Requests Console"; pixel_y = 30},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aJW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aJX" = (/obj/machinery/dna_scannernew,/turf/simulated/floor{dir = 5; icon_state = "whitepurple"},/area/medical/genetics) -"aJY" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/medical/genetics) -"aJZ" = (/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) -"aKa" = (/turf/simulated/wall,/area/medical/genetics) -"aKb" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 4},/turf/simulated/floor,/area/medical/medbay) -"aKc" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4; pixel_y = 5},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/wrench{pixel_x = 5; pixel_y = -5},/turf/simulated/floor,/area/medical/medbay) -"aKd" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/medical/medbay) -"aKe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aKf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aKg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aKh" = (/obj/machinery/camera{c_tag = "Morgue Access"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aKi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aKj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aKk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/medical/medbay) -"aKl" = (/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "floorgrime"},/area/science/storage) -"aKm" = (/obj/machinery/camera{c_tag = "Medbay Morgue"; dir = 8},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aKn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aKo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aKp" = (/obj/structure/table,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/box/masks,/obj/item/weapon/storage/box/gloves,/obj/machinery/light/small,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aKq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Break Room"; req_access_txt = "0"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "cafeteria"},/area/medical/break_room) -"aKr" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/engineering/mechanics) -"aKs" = (/obj/machinery/r_n_d/fabricator/mechanic_fab,/obj/machinery/door/window{dir = 2; name = "Mechanics Desk"},/turf/simulated/floor,/area/engineering/mechanics) -"aKt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hydroponics) -"aKu" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hydroponics) -"aKv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Braindead Resting Room"; req_access_txt = "0"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aKw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor{icon_state = "yellowcorner"},/area/hallway/primary/starboard) -"aKx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hydroponics) -"aKy" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hydroponics) -"aKz" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"aKA" = (/turf/simulated/wall,/area/hydroponics) -"aKB" = (/obj/structure/closet/emcloset,/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/hallway/primary/starboard) -"aKC" = (/turf/simulated/wall,/area/hallway/primary/starboard) -"aKD" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKE" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aKF" = (/turf/simulated/wall,/area/storage/tech) -"aKG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/storage/tech) -"aKH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aKI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/storage/tech) -"aKJ" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 1; name = "Mechanics Desk"},/obj/item/weapon/paper_bin,/obj/item/weapon/folder,/obj/item/weapon/pen,/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/engineering/mechanics) -"aKK" = (/obj/structure/table,/obj/machinery/alarm{dir = 4; pixel_x = -23},/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/turf/simulated/floor,/area/engineering/break_room) -"aKL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/engineering/break_room) -"aKM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/chair/comfy/black{dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor,/area/engineering/break_room) -"aKN" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/cigbutt,/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor,/area/engineering/break_room) -"aKO" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aKP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aKQ" = (/obj/structure/closet/radiation,/turf/simulated/floor,/area/engineering/engine) -"aKR" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aKS" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/engineering/engine) -"aKT" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine) -"aKU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor,/area/engineering/supermatter_room) -"aKV" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aKW" = (/turf/simulated/floor{icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aKX" = (/obj/structure/cable,/obj/machinery/power/rad_collector{anchored = 0; dir = 4},/turf/simulated/floor{icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aKY" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/engineering/supermatter_room) -"aKZ" = (/obj/machinery/atmospherics/binary/pump{dir = 1; icon_state = "intact_on"; on = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aLa" = (/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aLb" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aLc" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/engine,/area/science/telescience) -"aLd" = (/obj/machinery/telepad,/turf/simulated/floor/engine,/area/science/telescience) -"aLe" = (/obj/item/beacon,/turf/simulated/floor/engine,/area/science/telescience) -"aLf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/engine,/area/science/telescience) -"aLg" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aLh" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aLi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aLj" = (/obj/item/weapon/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aLk" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve,/obj/item/device/transfer_valve,/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 30},/obj/structure/table/reinforced,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aLl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aLm" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aLn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aLo" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Geneticist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aLp" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor{dir = 6; icon_state = "whitepurple"},/area/medical/genetics) -"aLq" = (/obj/structure/window/reinforced{dir = 8},/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) -"aLr" = (/turf/simulated/floor,/area/medical/genetics) -"aLs" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue{dir = 5},/turf/simulated/floor,/area/medical/medbay) -"aLt" = (/obj/machinery/atmospherics/pipe/manifold/insulated/hidden/blue{dir = 1},/turf/simulated/floor,/area/medical/medbay) -"aLu" = (/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/obj/machinery/atmospherics/pipe/simple/insulated/hidden/blue{dir = 9},/turf/simulated/floor,/area/medical/medbay) -"aLv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aLw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aLx" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aLy" = (/turf/simulated/wall,/area/security/checkpoint/medical) -"aLz" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aLA" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aLB" = (/turf/simulated/wall,/area/hallway/primary/fore) -"aLC" = (/turf/simulated/floor{dir = 4; icon_state = "yellowcorner"},/area/hallway/primary/fore) -"aLD" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/hallway/primary/fore) -"aLE" = (/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/hallway/primary/fore) -"aLF" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area"; icon_state = "loading_area"; dir = 2},/turf/simulated/floor,/area/hallway/primary/fore) -"aLG" = (/turf/simulated/floor{icon_state = "greencorner"},/area/hallway/primary/fore) -"aLH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"aLI" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor,/area/hydroponics) -"aLJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/hydroponics) -"aLK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hydroponics) -"aLL" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aLM" = (/obj/machinery/camera{c_tag = "Hydroponics North"},/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_y = 30},/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aLN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aLO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aLP" = (/turf/simulated/floor/plating,/area/storage/tech) -"aLQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"aLR" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/storage/tech) -"aLS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/storage/tech) -"aLT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"aLU" = (/obj/machinery/vending/assist,/turf/simulated/floor/plating,/area/storage/tech) -"aLV" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor,/area/engineering/break_room) -"aLW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/engineering/break_room) -"aLX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aLY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_x = -8; pixel_y = 25},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/break_room) -"aLZ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aMa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aMb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/break_room) -"aMc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/engineering/break_room) -"aMd" = (/obj/machinery/vending/cigarette,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor,/area/engineering/break_room) -"aMe" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aMf" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/yellow,/obj/item/weapon/storage/belt/utility,/turf/simulated/floor,/area/engineering/engine) -"aMg" = (/obj/machinery/power/apc{dir = 8; level = 4; name = "apc"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aMh" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aMi" = (/obj/item/device/radio/intercom{pixel_y = 25},/turf/simulated/floor,/area/engineering/supermatter_room) -"aMj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id_tag = "SM_Monitor"; name = "radiation shutters"; opacity = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aMk" = (/turf/simulated/floor{icon_state = "dark vault stripe"; dir = 4},/area/engineering/supermatter_room) -"aMl" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aMm" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aMn" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aMo" = (/turf/simulated/floor{dir = 8; icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aMp" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible,/turf/simulated/floor,/area/engineering/supermatter_room) -"aMq" = (/obj/item/pipe_planner,/turf/simulated/floor,/area/engineering/supermatter_room) -"aMr" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/space,/area) -"aMs" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aMt" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/rack_parts,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aMu" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aMv" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aMw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{cell_type = 0; dir = 1; icon_state = "apc1"; opened = 1; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aMx" = (/obj/machinery/space_heater,/obj/item/weapon/wrench,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aMy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fore) -"aMz" = (/obj/machinery/hologram/holopad{name = "\improper Acid-Proof AI holopad"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aMA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/engine,/area/science/telescience) -"aMB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/engine,/area/science/telescience) -"aMC" = (/obj/machinery/door_control{id_tag = "telelab"; name = "Test Chamber Blast Doors"; pixel_x = 25; pixel_y = -5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/engine,/area/science/telescience) -"aMD" = (/obj/machinery/portable_atmospherics/canister/plasma,/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/science/storage) -"aME" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/science/storage) -"aMF" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aMG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aMH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aMI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aMJ" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_y = 2},/obj/structure/table/reinforced,/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aMK" = (/obj/item/device/assembly/signaler{pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aML" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/weapon/storage/box/disks{pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aMM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aMN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aMO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aMP" = (/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aMQ" = (/obj/machinery/door/window{dir = 8; name = "Monkey Pen"; req_access_txt = "9"},/turf/simulated/floor,/area/medical/genetics) -"aMR" = (/obj/machinery/light{dir = 4},/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) -"aMS" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/medical/medbay) -"aMT" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/manifold/insulated/hidden/blue{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/medical/medbay) -"aMU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/medical/medbay) -"aMV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aMW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aMX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aMY" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/window/reinforced/plasma{dir = 1},/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma,/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aMZ" = (/obj/structure/closet/secure_closet/security,/turf/simulated/floor{icon_state = "red"; dir = 9},/area/security/checkpoint/medical) -"aNa" = (/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/machinery/camera{c_tag = "Security Post - Medbay"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/checkpoint/medical) -"aNb" = (/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/machinery/light{dir = 1},/obj/machinery/sleeper,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/checkpoint/medical) -"aNc" = (/obj/item/device/radio/intercom{pixel_y = 24},/obj/machinery/sleep_console,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/checkpoint/medical) -"aNd" = (/obj/machinery/computer/secure_data,/turf/simulated/floor{icon_state = "red"; dir = 5},/area/security/checkpoint/medical) -"aNe" = (/obj/structure/morgue,/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aNf" = (/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light_switch{pixel_x = -26; pixel_y = -24},/turf/simulated/floor,/area/hydroponics) -"aNg" = (/obj/machinery/camera{c_tag = "Bar Storage"},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/device/rcd/matter/rsf,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aNh" = (/obj/machinery/optable,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aNi" = (/obj/structure/table,/obj/item/weapon/autopsy_scanner,/obj/item/device/camera{name = "Autopsy Camera"},/obj/item/weapon/scalpel,/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aNj" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/hallway/primary/fore) -"aNk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/primary/fore) -"aNl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/hallway/primary/fore) -"aNm" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/hallway/primary/fore) -"aNn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 2; pixel_y = 6},/obj/item/clothing/accessory/stethoscope,/obj/item/weapon/reagent_containers/spray/cleaner{name = "Medbay Cleaner"},/turf/simulated/floor{icon_state = "white"},/area/medical/patients_rooms) -"aNo" = (/obj/item/weapon/stool,/turf/simulated/floor,/area/hydroponics) -"aNp" = (/turf/simulated/floor{dir = 1; icon_state = "green"},/area/hydroponics) -"aNq" = (/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor{dir = 1; icon_state = "green"},/area/hydroponics) -"aNr" = (/turf/simulated/floor{dir = 5; icon_state = "green"},/area/hydroponics) -"aNs" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aNt" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/pickaxe/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aNu" = (/obj/machinery/botany/editor,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aNv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aNw" = (/obj/structure/table,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/storage/tech) -"aNx" = (/obj/structure/rack,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/message_monitor{pixel_y = -5},/turf/simulated/floor/plating,/area/storage/tech) -"aNy" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/powermonitor{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/stationalert{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/plating,/area/storage/tech) -"aNz" = (/obj/machinery/requests_console{department = "Tech storage"; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/storage/tech) -"aNA" = (/obj/structure/table,/obj/item/clothing/glasses/meson,/obj/structure/sign/poster{icon_state = "poster9"; pixel_x = -32},/turf/simulated/floor,/area/engineering/break_room) -"aNB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/break_room) -"aNC" = (/obj/structure/cable,/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/turf/simulated/floor{icon_state = "yellowcorner"},/area/engineering/break_room) -"aND" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "yellow"},/area/engineering/break_room) -"aNE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "yellow"},/area/engineering/break_room) -"aNF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/vending/cola,/turf/simulated/floor{icon_state = "yellow"},/area/engineering/break_room) -"aNG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/engineering/break_room) -"aNH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aNI" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/engineering/engine) -"aNJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"aNK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/turf/simulated/floor,/area/engineering/engine) -"aNL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/engineering/engine) -"aNM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door_control{id_tag = "sm control room door"; name = "Door Lock"; pixel_x = -25},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aNN" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/simulated/floor,/area/engineering/engine) -"aNO" = (/obj/structure/table/reinforced,/turf/simulated/floor,/area/engineering/supermatter_room) -"aNP" = (/obj/machinery/computer/general_air_control/large_tank_control{frequency = 1443; input_tag = "SM_coolant_in"; name = "Coolant Control"; output_tag = "SM_coolant_out"; sensors = list("SM_sensor" = "Supermatter Engine")},/turf/simulated/floor,/area/engineering/supermatter_room) -"aNQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id_tag = "SM_Monitor"; name = "radiation shutters"; opacity = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aNR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aNS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aNT" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/window/reinforced/plasma{dir = 1},/obj/machinery/door/poddoor{density = 0; dir = 4; icon_state = "pdoor0"; id_tag = "SM_Rad3"; name = "radiation shutters"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aNU" = (/obj/machinery/meter/turf{pixel_x = -32},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aNV" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Chamber"},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aNW" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1443; icon_state = "out"; id_tag = "SM_coolant_in"; on = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aNX" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma{dir = 1},/obj/structure/window/reinforced/plasma{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/visible/blue{dir = 4},/obj/machinery/door/poddoor{density = 0; dir = 4; icon_state = "pdoor0"; id_tag = "SM_Rad3"; name = "radiation shutters"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aNY" = (/obj/machinery/atmospherics/binary/valve/digital{dir = 4; icon_state = "valve1"; open = 1},/turf/simulated/floor{dir = 8; icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aNZ" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible/blue{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/engineering/supermatter_room) -"aOa" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible/blue{dir = 9},/turf/simulated/floor,/area/engineering/supermatter_room) -"aOb" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{dir = 9; icon_state = "blue"},/area/engineering/supermatter_room) -"aOc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aOd" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/space,/area) -"aOe" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/solar/fport) -"aOf" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fport) -"aOg" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aOh" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aOi" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small{dir = 4},/obj/item/weapon/cigbutt,/mob/living/carbon/monkey,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aOj" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aOk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"aOl" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Outer Xenobiology Test West"; dir = 4; name = "motion-sensitive security camera"; network = list("Misc","RD")},/turf/space,/area) -"aOm" = (/obj/machinery/sparker{desc = "A wall-mounted ignition device. This one has an acid proof coating."; id_tag = "Xenobio"; name = "Acid-Proof Mounted igniter"; pixel_x = -25; unacidable = 1},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology Test West"; dir = 4; network = list("Misc","RD")},/turf/simulated/floor/engine,/area/science/xenobiology) -"aOn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of regular pipe. This one has an acid proof coating."; dir = 6; name = "Acid-Proof Pipe"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aOo" = (/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of regular pipe. This one has an acid proof coating."; dir = 4; name = "Acid-Proof Pipe"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aOp" = (/obj/machinery/atmospherics/unary/outlet_injector{desc = "Has a valve and pump attached to it. This one has an acid proof coating."; dir = 8; icon_state = "on"; name = "Acid-Proof Air Injector"; on = 1; pixel_y = 1; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aOq" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Xenobiology Test Chamber East"; dir = 8; network = list("Misc","RD")},/turf/simulated/floor/engine,/area/science/xenobiology) -"aOr" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Outer Xenobiology Test East"; dir = 8; name = "motion-sensitive security camera"; network = list("Misc","RD")},/turf/space,/area) -"aOs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/science/telescience) -"aOt" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/science/telescience) -"aOu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/science/telescience) -"aOv" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "telelab"; name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/engine,/area/science/telescience) -"aOw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/science/mixing) -"aOx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/science/mixing) -"aOy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/nosmoking_2{pixel_x = -32},/obj/structure/window/reinforced{dir = 1},/obj/structure/dispenser,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aOz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aOA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aOB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aOC" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aOD" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aOE" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/weapon/cane,/obj/item/weapon/cane,/obj/item/weapon/storage/box/rxglasses,/obj/item/weapon/storage/box/rxglasses,/obj/item/weapon/storage/box/bodybags{pixel_x = 2; pixel_y = -2},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aOF" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aOG" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aOH" = (/obj/machinery/computer/scan_consolenew,/turf/simulated/floor{dir = 5; icon_state = "whitepurple"},/area/medical/genetics) -"aOI" = (/obj/machinery/camera{c_tag = "Genetics Monkey Pen"; dir = 8; network = list("SS13","RD")},/mob/living/carbon/monkey,/turf/simulated/floor,/area/medical/genetics) -"aOJ" = (/obj/structure/noticeboard{dir = 4; pixel_x = -32},/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor,/area/medical/medbay) -"aOK" = (/obj/machinery/atmospherics/pipe/manifold/insulated/hidden/blue{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "oxygen"; dir = 4},/turf/simulated/floor,/area/medical/medbay) -"aOL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/medical/medbay) -"aOM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aON" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aOO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aOP" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/hydroponics) -"aOQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/checkpoint/medical) -"aOR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/security/checkpoint/medical) -"aOS" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/security/checkpoint/medical) -"aOT" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor,/area/security/checkpoint/medical) -"aOU" = (/obj/machinery/newscaster{pixel_x = 32},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/checkpoint/medical) -"aOV" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/hydroponics) -"aOW" = (/obj/machinery/camera{c_tag = "Fore Starboard Hallway North East"; dir = 1},/turf/simulated/floor,/area/hallway/primary/fore) -"aOX" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 4; name = "Hydroponics Desk"; req_access_txt = "35"},/turf/simulated/floor,/area/hydroponics) -"aOY" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/ignition_switch{id_tag = "Xenobio"; pixel_x = -6; pixel_y = -2},/obj/machinery/door_control{id_tag = "misclab"; name = "Test Chamber Blast Doors"; pixel_x = 4; pixel_y = -2; req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/obj/item/weapon/reagent_containers/food/snacks/borer_egg{pixel_y = 5},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aOZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor,/area/hydroponics) -"aPa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/hydroponics) -"aPb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/hydroponics) -"aPc" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor{icon_state = "green"; dir = 4},/area/hydroponics) -"aPd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aPe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aPf" = (/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"aPg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aPh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction/Hydroponics{dir = 1; icon_state = "pipe-j2s"},/obj/effect/nmpi,/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aPi" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/storage/tech) -"aPj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/plating,/area/storage/tech) -"aPk" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/mining,/obj/item/weapon/circuitboard/autolathe{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/arcade,/turf/simulated/floor/plating,/area/storage/tech) -"aPl" = (/obj/structure/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/security/advanced,/turf/simulated/floor/plating,/area/storage/tech) -"aPm" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/storage/tech) -"aPn" = (/obj/structure/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/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"aPo" = (/turf/simulated/wall,/area/maintenance/auxcharge) -"aPp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/highsecurity{name = "Auxiliary Borg Recharge Station"; req_access_txt = "10"},/turf/simulated/floor,/area/maintenance/auxcharge) -"aPq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/securearea,/turf/simulated/wall,/area/engineering/engine) -"aPr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "23"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor/plating,/area/storage/tech) -"aPs" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"},/turf/simulated/wall,/area/engineering/engine) -"aPt" = (/turf/simulated/wall,/area/engineering/engine) -"aPu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/poster{icon_state = "poster9"; pixel_x = -32},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/engineering/engine) -"aPv" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aPw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine) -"aPx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aPy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aPz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aPA" = (/obj/machinery/door/airlock/glass_engineering{id_tag = "sm control room door"; name = "Supermatter Engine Monitoring Room"; req_access_txt = "11"; req_one_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor,/area/engineering/engine) -"aPB" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aPC" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aPD" = (/obj/structure/table/reinforced,/turf/simulated/floor,/area/engineering/engine) -"aPE" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/door_control{id_tag = "SM_Rad3"; name = "Supermatter Chamber Shutters Control"; pixel_x = -32; pixel_y = 6},/obj/machinery/door_control{id_tag = "SM_Monitor"; name = "Monitoring Room Shutters Control"; pixel_x = -32; pixel_y = -2},/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/computer/security/telescreen{desc = "Used for watching the supermatter containment room."; layer = 4; name = "Supermatter Telescreen"; network = list("SM"); pixel_y = 32},/turf/simulated/floor,/area/engineering/supermatter_room) -"aPF" = (/obj/machinery/computer/general_air_control/atmos_automation{frequency = 1443},/turf/simulated/floor,/area/engineering/supermatter_room) -"aPG" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/emitter{anchored = 1; dir = 4; id_tag = "SM_emitter"; state = 2},/turf/simulated/floor,/area/engineering/supermatter_room) -"aPH" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/window/reinforced/plasma,/obj/machinery/door/poddoor{density = 0; dir = 4; icon_state = "pdoor0"; id_tag = "SM_Rad3"; name = "radiation shutters"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aPI" = (/obj/machinery/air_sensor{frequency = 1443; id_tag = "SM_sensor"},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aPJ" = (/obj/structure/closet/crate/secure/large/reinforced/shard,/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aPK" = (/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aPL" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma{dir = 8},/obj/machinery/door/poddoor{density = 0; dir = 4; icon_state = "pdoor0"; id_tag = "SM_Rad3"; name = "radiation shutters"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aPM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/engineering/supermatter_room) -"aPN" = (/obj/machinery/camera{c_tag = "Engineering Supermatter"; dir = 8; network = list("RD","Toxins")},/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "blue"; dir = 10},/area/engineering/supermatter_room) -"aPO" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/space,/area) -"aPP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"aPQ" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aPR" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aPS" = (/obj/item/device/assembly/igniter,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aPT" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aPU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/fore) -"aPV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of regular pipe. This one has an acid proof coating."; name = "Acid-Proof Pipe"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aPW" = (/obj/item/beacon,/turf/simulated/floor/engine,/area/science/xenobiology) -"aPX" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "Telescience Lab"; dir = 4; network = list("SS13","RD")},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aPY" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/book/manual/research_and_development,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aPZ" = (/obj/machinery/computer/telescience,/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aQa" = (/obj/machinery/door_control{id_tag = "telelab"; name = "Test Chamber Blast Doors"; pixel_x = 25; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aQb" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor/engine/airless,/area/science/mixing) -"aQc" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; icon_state = "in"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/obj/machinery/sparker{id_tag = "mixingsparker"; pixel_x = 25},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/engine/airless,/area/science/mixing) -"aQd" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/wall/r_wall,/area/science/mixing) -"aQe" = (/obj/machinery/atmospherics/binary/pump{dir = 4; icon_state = "intact_on"; on = 1},/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/engine,/area/science/mixing) -"aQf" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/machinery/meter,/obj/machinery/light{dir = 8},/obj/machinery/embedded_controller/radio/airlock_controller{tag_airpump = "tox_airlock_pump"; tag_exterior_door = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; tag_interior_door = "tox_airlock_interior"; pixel_x = -24; tag_chamber_sensor = "tox_airlock_sensor"},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aQg" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aQh" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aQi" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aQj" = (/obj/machinery/atmospherics/binary/valve{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aQk" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/science/mixing) -"aQl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/device/flashlight/pen,/obj/item/device/flashlight/pen,/obj/item/device/radio/headset/headset_medsci,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aQm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aQn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aQo" = (/obj/machinery/dna_scannernew,/turf/simulated/floor{dir = 6; icon_state = "whitepurple"},/area/medical/genetics) -"aQp" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{dir = 4},/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor,/area/medical/medbay) -"aQq" = (/obj/machinery/atmospherics/pipe/manifold/insulated/hidden/blue,/turf/simulated/floor,/area/medical/medbay) -"aQr" = (/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/obj/machinery/atmospherics/binary/volume_pump{dir = 4; name = "Emergency Vacuum Pump"},/turf/simulated/floor,/area/medical/medbay) -"aQs" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aQt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aQu" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aQv" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 10},/area/security/checkpoint/medical) -"aQw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "red"},/area/security/checkpoint/medical) -"aQx" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor{icon_state = "red"},/area/security/checkpoint/medical) -"aQy" = (/obj/structure/table,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor{icon_state = "red"},/area/security/checkpoint/medical) -"aQz" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = 30},/turf/simulated/floor{icon_state = "red"; dir = 6},/area/security/checkpoint/medical) -"aQA" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor,/area/hallway/primary/fore) -"aQB" = (/obj/machinery/light{dir = 1},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/hallway/primary/fore) -"aQC" = (/obj/machinery/media/receiver/boombox/wallmount/muzak{on = 0; pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/fore) -"aQD" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor,/area/hallway/primary/fore) -"aQE" = (/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/fore) -"aQF" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor,/area/hallway/primary/fore) -"aQG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/hallway/primary/fore) -"aQH" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aQI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hydroponics) -"aQJ" = (/turf/simulated/floor,/area/hydroponics) -"aQK" = (/obj/machinery/seed_extractor,/turf/simulated/floor,/area/hydroponics) -"aQL" = (/obj/machinery/biogenerator,/turf/simulated/floor,/area/hydroponics) -"aQM" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/hydroponics) -"aQN" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aQO" = (/obj/structure/sink{dir = 8; pixel_x = -11},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aQP" = (/obj/machinery/botany/extractor,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aQQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aQR" = (/obj/machinery/door/airlock/glass_engineering{name = "Engineering"; req_access_txt = "32"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/engineering/break_room) -"aQS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/tech) -"aQT" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/pandemic{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/rdconsole,/obj/item/weapon/circuitboard/rdserver{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/destructive_analyzer,/obj/item/weapon/circuitboard/protolathe,/obj/item/weapon/circuitboard/aifixer,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/storage/tech) -"aQU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/storage/tech) -"aQV" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/cloning,/obj/item/weapon/circuitboard/med_data{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/clonescanner,/obj/item/weapon/circuitboard/clonepod,/obj/item/weapon/circuitboard/scan_consolenew,/turf/simulated/floor/plating,/area/storage/tech) -"aQW" = (/obj/structure/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/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) -"aQX" = (/obj/machinery/recharge_station,/turf/simulated/floor,/area/maintenance/auxcharge) -"aQY" = (/turf/simulated/floor,/area/maintenance/auxcharge) -"aQZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/auxcharge) -"aRa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/auxcharge) -"aRb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/auxcharge) -"aRc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Engineering Access"},/obj/structure/bookcase/manuals/engineering,/turf/simulated/floor,/area/engineering/engine) -"aRd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aRe" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/engine) -"aRf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/securearea,/turf/simulated/wall,/area/engineering/engine) -"aRg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera{c_tag = "Engineering Central"; dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aRh" = (/obj/machinery/light{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aRi" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aRj" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aRk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aRl" = (/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/paper_bin,/turf/simulated/floor,/area/engineering/engine) -"aRm" = (/obj/machinery/power/monitor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aRn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id_tag = "SM_Monitor"; name = "radiation shutters"; opacity = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aRo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aRp" = (/obj/effect/decal/warning_stripes{icon_state = "no"},/obj/effect/decal/warning_stripes{dir = 8; icon_state = "oxygen"},/turf/simulated/floor{icon_state = "dark vault stripe"; dir = 4},/area/engineering/supermatter_room) -"aRq" = (/obj/machinery/door/airlock/hatch{req_access_txt = "11"},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aRr" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (EAST)"; icon_state = "loading_area"; dir = 4},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aRs" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{canSpawnMice = 0; dir = 4; external_pressure_bound = 0; frequency = 1443; icon_state = "in"; id_tag = "SM_coolant_out"; internal_pressure_bound = 0; on = 1; pressure_checks = 1; pump_direction = 0},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/engine/nitrogen,/area/engineering/supermatter_room) -"aRt" = (/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/machinery/door/poddoor{density = 0; dir = 4; icon_state = "pdoor0"; id_tag = "SM_Rad3"; name = "radiation shutters"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aRu" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/engineering/supermatter_room) -"aRv" = (/obj/machinery/atmospherics/pipe/manifold/insulated/visible{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aRw" = (/obj/structure/closet,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aRx" = (/obj/structure/table/reinforced,/obj/item/device/gps/science,/obj/item/device/gps/science,/obj/item/device/gps/science,/obj/item/device/gps/science,/obj/item/device/gps/science,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = -32},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aRy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aRz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aRA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aRB" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor/engine/airless,/area/science/mixing) -"aRC" = (/turf/simulated/floor/engine/airless,/area/science/mixing) -"aRD" = (/obj/machinery/door/airlock/glass_research{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "tox_airlock_exterior"; locked = 1; name = "Mixing Room Exterior Airlock"; req_access_txt = "8"},/turf/simulated/floor/engine,/area/science/mixing) -"aRE" = (/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{frequency = 1449; id_tag = "tox_airlock_pump"},/turf/simulated/floor/engine,/area/science/mixing) -"aRF" = (/obj/machinery/door/airlock/glass_research{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "tox_airlock_interior"; locked = 1; name = "Mixing Room Interior Airlock"; req_access_txt = "8"},/turf/simulated/floor/engine,/area/science/mixing) -"aRG" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aRH" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aRI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aRJ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aRK" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aRL" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/camera{c_tag = "Toxins Lab East"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/science/mixing) -"aRM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aRN" = (/obj/machinery/door/airlock/glass_security{name = "Medbay Guard Office"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "white"},/area/security/checkpoint/medical) -"aRO" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/genetics) -"aRP" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/medical/genetics) -"aRQ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/medical/genetics) -"aRR" = (/obj/structure/bed/roller,/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/medical/medbay) -"aRS" = (/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/medical/medbay) -"aRT" = (/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/medical/medbay) -"aRU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{dir = 4; icon_state = "whitehall"},/area/medical/medbay) -"aRV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aRW" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 8},/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aRX" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aRY" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 1},/obj/structure/window/reinforced/plasma{dir = 4},/turf/simulated/floor/plating,/area/security/checkpoint/medical) -"aRZ" = (/turf/simulated/floor{dir = 8; icon_state = "greencorner"},/area/hallway/primary/fore) -"aSa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/hallway/primary/fore) -"aSb" = (/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/hallway/primary/fore) -"aSc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/fore) -"aSd" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"aSe" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aSf" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aSg" = (/obj/machinery/smartfridge,/turf/simulated/wall,/area/crew_quarters/bar) -"aSh" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aSi" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor,/area/hydroponics) -"aSj" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/simulated/floor,/area/hydroponics) -"aSk" = (/obj/machinery/camera{c_tag = "Hydroponics Storage"; dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aSl" = (/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/light/small{dir = 4},/obj/item/weapon/wirecutters/clippers,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aSm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/emcloset,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aSn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aSo" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/storage/tech) -"aSp" = (/obj/machinery/power/apc{dir = 8; level = 4; name = "apc"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/maintenance/auxcharge) -"aSq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/auxcharge) -"aSr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor,/area/maintenance/auxcharge) -"aSs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/auxcharge) -"aSt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/auxcharge) -"aSu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"aSv" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine) -"aSw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; density = 0; icon_state = "pdoor0"; id_tag = "Engineering"; name = "engineering security door"; opacity = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/engine) -"aSx" = (/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "0"; req_one_access_txt = "10;501"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aSy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aSz" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine) -"aSA" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aSB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aSC" = (/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aSD" = (/obj/machinery/newscaster{pixel_y = -32},/turf/simulated/floor,/area/engineering/engine) -"aSE" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Monitoring"; dir = 1; network = list("SS13","RD")},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor,/area/engineering/supermatter_room) -"aSF" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id_tag = "SM_Monitor"; name = "radiation shutters"; opacity = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aSG" = (/obj/machinery/atmospherics/trinary/filter/mirrored{dir = 1; icon_state = "intactm_on"; name = "Gas filter (Plasma)"; on = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aSH" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible,/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aSI" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aSJ" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aSK" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aSL" = (/obj/structure/grille/broken,/turf/space,/area) -"aSM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/shard{icon_state = "medium"},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/fore) -"aSN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aSO" = (/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aSP" = (/obj/item/weapon/pen,/obj/item/weapon/stock_parts/manipulator{pixel_x = 4; pixel_y = 10},/mob/living/simple_animal/mouse/gray,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aSQ" = (/obj/structure/window/barricade/full,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"aSR" = (/obj/item/weapon/caution/cone,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "warnplatecorner"; dir = 1},/area/derelictparts/fore) -"aSS" = (/obj/structure/disposalpipe/segment{desc = "An underfloor disposal pipe. This one has an acid proof coating."; dir = 4; icon_state = "pipe-c"; name = "Acid-Proof disposal pipe"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aST" = (/obj/structure/disposalpipe/segment{desc = "An underfloor disposal pipe. This one has an acid proof coating."; dir = 4; name = "Acid-Proof disposal pipe"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aSU" = (/obj/structure/disposaloutlet{desc = "An outlet for the pneumatic disposal system. This one has an acid proof coating."; dir = 8; name = "Acid-Proof disposal outlet"; unacidable = 1},/obj/structure/disposalpipe/trunk{desc = "An underfloor disposal pipe. This one has an acid proof coating."; dir = 8; name = "Acid-Proof disposal pipe"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aSV" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/clothing/glasses/science,/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aSW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aSX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aSY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aSZ" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1443; icon_state = "on"; id_tag = "air_in"; on = 1},/obj/machinery/sparker{id_tag = "mixingsparker"; pixel_x = 25},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/engine/airless,/area/science/mixing) -"aTa" = (/obj/machinery/atmospherics/binary/pump{dir = 8; icon_state = "intact_on"; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/fire{pixel_y = -32},/turf/simulated/floor/engine,/area/science/mixing) -"aTb" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/machinery/meter,/obj/machinery/door_control{id_tag = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = -25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/ignition_switch{id_tag = "mixingsparker"; pixel_x = -25; pixel_y = -5},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aTc" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aTd" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aTe" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor,/area/science/mixing) -"aTf" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aTg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aTh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall,/area/medical/genetics_cloning) -"aTi" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/turf/simulated/floor{icon_state = "whiteblue"; dir = 9},/area/medical/genetics_cloning) -"aTj" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/obj/machinery/camera{c_tag = "Toxins Lab Chamber"; dir = 4; network = list("SS13","RD"); pixel_y = -22},/turf/simulated/floor/engine/airless,/area/science/mixing) -"aTk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aTl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aTm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/medical/genetics_cloning) -"aTn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whitehall"},/area/medical/medbay) -"aTo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "whitehall"},/area/medical/medbay) -"aTp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{dir = 6; icon_state = "whitehall"},/area/medical/medbay) -"aTq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aTr" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aTs" = (/obj/machinery/computer/med_data,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aTt" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aTu" = (/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/medbay) -"aTv" = (/obj/machinery/vending/discount,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aTw" = (/obj/structure/sign/greencross,/turf/simulated/wall,/area/medical/medbay) -"aTx" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"aTy" = (/obj/machinery/camera{c_tag = "Fore Starboard Hallway"; dir = 1},/turf/simulated/floor,/area/hallway/primary/fore) -"aTz" = (/obj/structure/table/woodentable,/obj/machinery/reagentgrinder,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aTA" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aTB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aTC" = (/obj/structure/table/reinforced,/obj/machinery/door/window{name = "Hydroponics Desk"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/bar) -"aTD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/hydroponics) -"aTE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hydroponics) -"aTF" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/hydroponics) -"aTG" = (/mob/living/simple_animal/chick{desc = "He looks depressed."; flavor_text = "He's disappointed in you."; health = 666; meat_taken = 0; name = "Pomfy"},/turf/simulated/floor,/area/hydroponics) -"aTH" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aTI" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hydroponics) -"aTJ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aTK" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/wirecutters/clippers,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aTL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/hydroponics) -"aTM" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/turf/simulated/floor/plating,/area/storage/tech) -"aTN" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/plating,/area/storage/tech) -"aTO" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) -"aTP" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/turf/simulated/floor/plating,/area/storage/tech) -"aTQ" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/turf/simulated/floor/plating,/area/storage/tech) -"aTR" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/turf/simulated/floor/plating,/area/storage/tech) -"aTS" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/light,/obj/machinery/camera{c_tag = "Security Post - Engineering"; dir = 1},/turf/simulated/floor,/area/maintenance/auxcharge) -"aTT" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor,/area/maintenance/auxcharge) -"aTU" = (/obj/machinery/pipedispenser,/turf/simulated/floor,/area/maintenance/auxcharge) -"aTV" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/wall,/area/maintenance/auxcharge) -"aTW" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aTX" = (/obj/structure/closet/radiation,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine) -"aTY" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "Engineering"; name = "engineering security door"},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/engine) -"aTZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor,/area/engineering/engine) -"aUa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aUb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine) -"aUc" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/black,/obj/item/weapon/extinguisher{pixel_x = 8},/turf/simulated/floor,/area/engineering/engine) -"aUd" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Supermatter Engine SMES"; req_access_txt = "11"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor{icon_state = "white"},/area/engineering/engine) -"aUe" = (/obj/machinery/light{dir = 8},/obj/machinery/door_control{id_tag = "SM_Rad3"; name = "Supermatter Chamber Shutters Control"; pixel_x = -25; pixel_y = 0; req_access_txt = "11"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aUf" = (/turf/simulated/floor{dir = 1; icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aUg" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/rad_collector{anchored = 0; dir = 4},/turf/simulated/floor{dir = 1; icon_state = "dark vault stripe"},/area/engineering/supermatter_room) -"aUh" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/rad_collector{anchored = 0; dir = 4},/turf/simulated/floor{dir = 1; icon_state = "dark vault stripe"},/area/engineering/antimatter_room) -"aUi" = (/obj/machinery/atmospherics/trinary/filter/mirrored{dir = 1; filter_type = 1; icon_state = "intactm_on"; name = "Gas filter (O2)"; on = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aUj" = (/obj/machinery/light{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aUk" = (/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aUl" = (/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aUm" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aUn" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aUo" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aUp" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aUq" = (/obj/structure/sign/biohazard,/turf/simulated/wall/r_wall,/area/science/xenobiology) -"aUr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall/r_wall,/area/science/xenobiology) -"aUs" = (/obj/structure/disposalpipe/segment{desc = "An underfloor disposal pipe. This one has an acid proof coating."; name = "Acid-Proof disposal pipe"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aUt" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aUu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aUv" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aUw" = (/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id_tag = "mixvent"; name = "Mixer Room Vent"; opacity = 1},/turf/simulated/floor/engine/vacuum,/area/science/mixing) -"aUx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/science/mixing) -"aUy" = (/obj/structure/closet/bombcloset,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aUz" = (/obj/structure/closet/bombcloset,/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aUA" = (/obj/machinery/light_switch{pixel_x = -24; pixel_y = -24},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aUB" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aUC" = (/obj/machinery/portable_atmospherics/pump,/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"aUD" = (/obj/structure/sign/securearea{pixel_y = -32},/obj/structure/closet/secure_closet/personal/patient,/turf/simulated/floor{icon_state = "whitepurple"},/area/medical/genetics) -"aUE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "whitepurple"},/area/medical/genetics) -"aUF" = (/turf/simulated/wall,/area/medical/genetics_cloning) -"aUG" = (/obj/machinery/camera{c_tag = "Genetics Cloning"; dir = 4},/obj/machinery/door_control{desc = "A remote control switch for the genetics doors."; id_tag = "GeneticsDoor"; name = "Genetics Exit Button"; normaldoorcontrol = 1; pixel_x = -24; pixel_y = 8},/obj/machinery/light_switch{pixel_x = -24},/turf/simulated/floor{dir = 8; icon_state = "whiteblue"},/area/medical/genetics_cloning) -"aUH" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/effect/landmark/start{name = "Geneticist"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aUI" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aUJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aUK" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor{icon_state = "dark"},/area/medical/morgue) -"aUL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{dir = 8; icon_state = "whiteblue"},/area/medical/medbay) -"aUM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/sortjunction/Genetics{dir = 1; icon_state = "pipe-j2s"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/sortjunction/Medbay{dir = 8; icon_state = "pipe-j2s"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUR" = (/obj/machinery/door/airlock/medical{name = "Medbay Reception"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUS" = (/obj/structure/bed/chair/office/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/door_control{desc = "A remote control switch for the medbay foyer."; id_tag = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = 26; pixel_y = -4; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUT" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."; pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/medbay) -"aUV" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aUW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/medical/medbay) -"aUX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"aUY" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/hallway/primary/fore) -"aUZ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/fore) -"aVa" = (/obj/structure/sign/double/barsign,/turf/simulated/wall,/area/crew_quarters/bar) -"aVb" = (/turf/simulated/wall,/area/crew_quarters/bar) -"aVc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/bar) -"aVd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/bar) -"aVe" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aVf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aVg" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/closet/gmcloset{name = "formal wardrobe"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aVh" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aVi" = (/turf/simulated/floor{icon_state = "green"; dir = 10},/area/hydroponics) -"aVj" = (/turf/simulated/floor{icon_state = "green"},/area/hydroponics) -"aVk" = (/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor{icon_state = "green"},/area/hydroponics) -"aVl" = (/turf/simulated/floor{icon_state = "green"; dir = 6},/area/hydroponics) -"aVm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aVn" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aVo" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aVp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aVq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/window{dir = 8; name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aVr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/plasticflaps,/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Hydroponics"},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aVs" = (/obj/structure/table,/obj/item/weapon/circuitboard/power_control,/obj/item/weapon/circuitboard/airlock,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/storage/tech) -"aVt" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/storage/tech) -"aVu" = (/turf/simulated/wall,/area/maintenance/fsmaint) -"aVv" = (/turf/simulated/wall,/area/engineering/ce) -"aVw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/wall,/area/engineering/ce) -"aVx" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "Engineering"; name = "engineering security door"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/engineering/ce) -"aVy" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "Engineering"; name = "engineering security door"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/engineering/ce) -"aVz" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "Engineering"; name = "engineering security door"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/engineering/ce) -"aVA" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/engineering/ce) -"aVB" = (/obj/machinery/vending/tool,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aVC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aVD" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/engineering/engine) -"aVE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aVF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aVG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor,/area/engineering/engine) -"aVH" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aVI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine) -"aVJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/camera{c_tag = "Engineering SMES"},/turf/simulated/floor,/area/engineering/engine) -"aVK" = (/obj/machinery/prism,/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aVL" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVM" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVN" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVO" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVP" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVQ" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVR" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 5},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVS" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 9},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVT" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (EAST)"; icon_state = "loading_area"; dir = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aVU" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aVV" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (EAST)"; icon_state = "loading_area"; dir = 4},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aVW" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aVX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/crowbar,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aVY" = (/obj/machinery/light_construct/small,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aVZ" = (/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fore) -"aWa" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/weldingtool,/turf/simulated/floor/plating,/area/derelictparts/fore) -"aWb" = (/obj/item/weapon/shard,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aWc" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fore) -"aWd" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall,/area/maintenance/fore) -"aWe" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/door/window{dir = 2; name = "Left Shield Guard"; req_access_txt = "55"},/obj/machinery/shieldwallgen{active = 1; anchored = 1; icon_state = "Shield_Gen +a"; power = 1; req_access = null; req_access_txt = "55"},/turf/simulated/floor/plating,/area/science/xenobiology) -"aWf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/full/reinforced,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "misclab"; name = "Acid-Proof Test Chamber Blast Door"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aWg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{desc = "A one meter section of regular pipe. This one has an acid proof coating."; name = "Acid-Proof Pipe"; unacidable = 1},/obj/structure/window/full/reinforced,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "misclab"; name = "Acid-Proof Test Chamber Blast Door"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aWh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/full/reinforced,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "misclab"; name = "Acid-Proof Test Chamber Blast Door"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aWi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "misclab"; name = "Acid-Proof Test Chamber Blast Door"; unacidable = 1},/obj/machinery/door/window{dir = 1; name = "Test Chamber"; req_access_txt = "55"},/turf/simulated/floor/engine,/area/science/xenobiology) -"aWj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/full/reinforced,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "misclab"; name = "Acid-Proof Test Chamber Blast Door"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aWk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/full/reinforced,/obj/structure/disposalpipe/segment{desc = "An underfloor disposal pipe. This one has an acid proof coating."; name = "Acid-Proof disposal pipe"; unacidable = 1},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "misclab"; name = "Acid-Proof Test Chamber Blast Door"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aWl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/full/reinforced,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "misclab"; name = "Acid-Proof Test Chamber Blast Door"; unacidable = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"aWm" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/door/window{base_state = "right"; dir = 2; icon_state = "right"; name = "Right Shield Guard"; req_access_txt = "55"},/obj/machinery/shieldwallgen{active = 1; anchored = 1; icon_state = "Shield_Gen +a"; power = 1; req_access = null; req_access_txt = "55"},/turf/simulated/floor/plating,/area/science/xenobiology) -"aWn" = (/obj/structure/closet/l3closet/scientist,/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aWo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aWp" = (/obj/machinery/light_switch{pixel_x = -6; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 30},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"aWq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/science/mixing) -"aWr" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/science/mixing) -"aWs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "0"; req_one_access_txt = "10;501"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/engineering/engine) -"aWt" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/science/mixing) -"aWu" = (/turf/simulated/wall,/area/science/hallway) -"aWv" = (/obj/machinery/camera{c_tag = "Tech Storage"; dir = 4},/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/table,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/turf/simulated/floor/plating,/area/storage/tech) -"aWw" = (/turf/simulated/wall/r_wall,/area/medical/genetics_cloning) -"aWx" = (/obj/machinery/cloning/clonepod/full,/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor{dir = 10; icon_state = "whiteblue"},/area/medical/genetics_cloning) -"aWy" = (/obj/machinery/light,/obj/machinery/computer/cloning,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aWz" = (/obj/machinery/dna_scannernew,/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aWA" = (/obj/machinery/door_control{desc = "A remote control switch for the genetics doors."; id_tag = "GeneticsDoor"; name = "Genetics Exit Button"; normaldoorcontrol = 1; pixel_x = 27; pixel_y = -4},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"aWB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/medical/genetics_cloning) -"aWC" = (/obj/machinery/camera{c_tag = "Medbay South"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 10; icon_state = "whiteblue"},/area/medical/medbay) -"aWD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 0; pixel_y = -27},/turf/simulated/floor{icon_state = "whitebluecorner"; dir = 8},/area/medical/medbay) -"aWE" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWG" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWH" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/medical/medbay) -"aWJ" = (/obj/machinery/door/window{base_state = "left"; dir = 2; name = "Medbay Reception"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWK" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWL" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/device/deskbell/signaler/medbay{pixel_x = 3; pixel_y = -3},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/medbay) -"aWN" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aWO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/medical/medbay) -"aWP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"aWQ" = (/obj/machinery/computer/arcade,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWR" = (/obj/machinery/newscaster{pixel_y = 32},/obj/item/weapon/newspaper,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWS" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWT" = (/obj/item/weapon/storage/fancy/cigarettes{pixel_y = 2},/obj/item/weapon/lighter{pixel_x = 4; pixel_y = 2},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWU" = (/obj/machinery/light{dir = 1},/obj/machinery/media/jukebox/bar,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWV" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWW" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/item/clothing/head/cakehat,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWX" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aWZ" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aXa" = (/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/hydroponics) -"aXb" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/hydroponics) -"aXc" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_y = 3},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/item/weapon/storage/box/botanydisk,/obj/item/device/radio/headset/headset_service,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"aXd" = (/obj/machinery/camera{c_tag = "Engineering SME Airlock"},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aXe" = (/obj/structure/table,/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/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/plating,/area/storage/tech) -"aXf" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/simulated/floor/plating,/area/storage/tech) -"aXg" = (/obj/structure/table,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/turf/simulated/floor/plating,/area/storage/tech) -"aXh" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/turf/simulated/floor/plating,/area/storage/tech) -"aXi" = (/obj/item/weapon/paper/crumpled/bloody{info = "erring men abroad the terrific and weird vastness of space.
bringing laughter and joy to all.
suddenly silenced
as i am put in my place.

honk!"},/obj/effect/decal/cleanable/blood{icon_state = "floor3"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aXj" = (/obj/machinery/light/small{dir = 8},/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor{icon_state = "freezerfloor"},/area/engineering/ce) -"aXk" = (/obj/machinery/suit_storage_unit/elite,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; dir = 2; name = "Chief Engineer RC"; pixel_y = 32},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aXl" = (/obj/structure/closet/secure_closet/engineering_chief{req_access_txt = "0"},/obj/machinery/door_control{id_tag = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -10; pixel_y = 24; req_access_txt = "24"},/obj/machinery/door_control{desc = "A remote control-switch for secure storage."; id_tag = "Secure Storage"; name = "Engineering Secure Storage"; pixel_y = 24; req_access_txt = "11"},/obj/machinery/door_control{desc = "A remote control-switch for the engineering security doors."; id_tag = "Engineering"; name = "Engineering Lockdown"; pixel_x = 10; pixel_y = 24; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aXm" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aXn" = (/obj/machinery/computer/station_alert,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aXo" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aXp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/plating,/area/engineering/ce) -"aXq" = (/obj/machinery/vending/engivend,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aXr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"aXs" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"aXt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"aXu" = (/obj/machinery/power/terminal,/obj/structure/cable,/turf/simulated/floor,/area/engineering/engine) -"aXv" = (/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aXw" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aXx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/supermatter_room) -"aXy" = (/obj/structure/lattice,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = -32; pixel_y = 0},/turf/space,/area) -"aXz" = (/turf/simulated/wall,/area/derelictparts/library) -"aXA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/device/paicard,/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fore) -"aXB" = (/turf/simulated/wall,/area/maintenance/asmaint2) -"aXC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aXD" = (/obj/item/weapon/crowbar/red,/obj/item/weapon/wrench,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aXE" = (/obj/machinery/computer/security/telescreen{name = "Test Chamber Monitor"; network = list("Misc"); pixel_y = 2},/obj/structure/table/reinforced,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aXF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aXG" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/l3closet/scientist,/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aXH" = (/obj/machinery/door/window{dir = 2; name = "Test Chamber"; req_access_txt = "55"},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aXI" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/l3closet/scientist,/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aXJ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aXK" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/item/weapon/folder/white,/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aXL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aXM" = (/turf/simulated/wall/r_wall,/area/science/hallway) -"aXN" = (/obj/machinery/door/airlock/glass_research{name = "Genetics Research"; req_access_txt = "5; 9"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics) -"aXO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/science/telescience) -"aXP" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/science/hallway) -"aXQ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/science/hallway) -"aXR" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/science/hallway) -"aXS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/science/hallway) -"aXT" = (/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor,/area/science/hallway) -"aXU" = (/obj/machinery/vending/coffee,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"aXV" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"aXW" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"aXX" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"aXY" = (/obj/machinery/vending/discount,/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"aXZ" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "Biohazard"; name = "biohazard containment door"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"aYa" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "Biohazard"; name = "biohazard containment door"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"aYb" = (/turf/simulated/wall/r_wall,/area/medical/paramedics) -"aYc" = (/turf/simulated/wall,/area/medical/paramedics) -"aYd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{freerange = 1; name = "Station Intercom (General)"; pixel_x = 30},/turf/simulated/floor,/area/hallway/primary/fore) -"aYe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/medical/paramedics) -"aYf" = (/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor,/area/hallway/primary/fore) -"aYg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/medical/paramedics) -"aYh" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/medical/medbay) -"aYi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Medbay"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/roller,/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aYj" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aYk" = (/obj/machinery/vending/medical{pixel_x = -2},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aYl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/medical/medbay) -"aYm" = (/turf/simulated/floor{dir = 9; icon_state = "whitegreen"},/area/medical/medbay) -"aYn" = (/turf/simulated/floor{dir = 1; icon_state = "whitegreen"},/area/medical/medbay) -"aYo" = (/turf/simulated/floor{dir = 1; icon_state = "whitegreencorner"},/area/medical/medbay) -"aYp" = (/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aYq" = (/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aYr" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"aYs" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aYt" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aYu" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aYv" = (/turf/simulated/wall,/area/crew_quarters/kitchen) -"aYw" = (/obj/machinery/door/window{dir = 2; name = "Hydrophonics Access"; req_access_txt = "28"},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/obj/machinery/door/window{dir = 1; name = "Kitchen Access"; req_access_txt = "35"},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/kitchen) -"aYx" = (/obj/machinery/smartfridge,/turf/simulated/wall,/area/crew_quarters/kitchen) -"aYy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/circuitboard/fire_alarm,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aYz" = (/turf/simulated/wall/r_wall,/area/storage/tech) -"aYA" = (/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) -"aYB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/turf/simulated/floor/plating,/area/storage/tech) -"aYC" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/storage/tech) -"aYD" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibdown1"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"aYE" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/engineering/ce) -"aYF" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/engineering/ce) -"aYG" = (/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aYH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aYI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aYJ" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Chief Engineer"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aYK" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"aYL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating,/area/engineering/ce) -"aYM" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"aYN" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine) -"aYO" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine) -"aYP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"aYQ" = (/obj/machinery/power/battery/smes{charge = 3e+006},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor,/area/engineering/engine) -"aYR" = (/obj/machinery/power/battery/smes{charge = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/engineering/engine) -"aYS" = (/obj/machinery/power/battery/smes{charge = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/engineering/engine) -"aYT" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"aYU" = (/obj/machinery/camera{c_tag = "Supermatter S-O"; dir = 4},/obj/machinery/prism,/turf/simulated/floor{icon_state = "dark vault full"},/area/engineering/supermatter_room) -"aYV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/engineering/supermatter_room) -"aYW" = (/obj/machinery/power/battery/smes,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/engineering/antimatter_room) -"aYX" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Engineering Supermatter South"; dir = 1},/turf/simulated/floor,/area/engineering/supermatter_room) -"aYY" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/light,/turf/simulated/floor,/area/engineering/supermatter_room) -"aYZ" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor,/area/engineering/supermatter_room) -"aZa" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/supermatter_room) -"aZb" = (/turf/simulated/floor/wood,/area/derelictparts/library) -"aZc" = (/obj/structure/bed/chair/office/dark,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/derelictparts/library) -"aZd" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/wood{icon_state = "wood-broken3"},/area/derelictparts/library) -"aZe" = (/obj/item/trash/candy,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/wood,/area/derelictparts/library) -"aZf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aZg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aZh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aZi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aZj" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aZk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/science/xenobiology) -"aZl" = (/obj/machinery/power/apc{cell_type = 15000; dir = 8; name = "Xenobiology APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aZm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aZn" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/weapon/stool,/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/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aZo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aZp" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aZq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aZr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"aZs" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/science/xenobiology) -"aZt" = (/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"aZu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aZv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aZw" = (/obj/structure/sign/fire{pixel_y = 32},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aZx" = (/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aZy" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aZz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aZA" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Research Division West"; network = list("SS13","RD")},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aZB" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aZC" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"aZD" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/lab) -"aZE" = (/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "whitebluecorner"; dir = 4},/area/science/hallway) -"aZF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "whiteblue"; dir = 1},/area/science/hallway) -"aZG" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "whiteblue"; dir = 1},/area/science/hallway) -"aZH" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZI" = (/obj/machinery/atmospherics/unary/cold_sink/freezer,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZJ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/portables_connector,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/recharger/defibcharger/wallcharger{pixel_y = 27},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZK" = (/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZL" = (/obj/machinery/camera{c_tag = "Research Division Access"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZM" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/computer/arcade,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"aZO" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/medical/medbay) -"aZP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/bed/roller,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aZQ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aZR" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/door_control{desc = "A remote control switch for the medbay foyer."; id_tag = "MedbayFoyer"; name = "Medbay Exit Button"; normaldoorcontrol = 1; pixel_x = 26; pixel_y = -8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aZS" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = -26; pixel_y = 2},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Medbay Foyer"; dir = 4},/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/medbay) -"aZT" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"aZU" = (/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"aZV" = (/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aZW" = (/obj/structure/bed/chair/wood/normal,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aZX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aZY" = (/obj/machinery/disposal,/obj/item/device/radio/intercom{pixel_y = 25},/obj/structure/disposalpipe/trunk,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"aZZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"baa" = (/obj/item/stack/package_wrap,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/item/device/radio/headset/headset_service,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bab" = (/obj/machinery/vending/dinnerware,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bac" = (/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bad" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bae" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/camera{c_tag = "Kitchen"},/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"baf" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bag" = (/obj/item/weapon/reagent_containers/food/snacks/cookie{desc = "We are not satiated."; name = "grandma's cookie"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bah" = (/obj/effect/decal/cleanable/dirt,/obj/item/clothing/gloves/rainbow,/obj/item/clothing/head/soft/rainbow,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bai" = (/obj/item/clothing/under/rainbow,/obj/item/clothing/shoes/rainbow,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"baj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bak" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bal" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/storage/tech) -"bam" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/storage/tech) -"ban" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/storage/tech) -"bao" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Secure Tech Storage"},/turf/simulated/floor,/area/storage/tech) -"bap" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/storage/tech) -"baq" = (/turf/simulated/wall/r_wall,/area/engineering/ce) -"bar" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/machinery/media/receiver/boombox/wallmount{pixel_x = -32},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bas" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/lighter/zippo,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/weapon/stamp/ce,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bat" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper/monitorkey,/mob/living/simple_animal/parrot/Poly,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bau" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/fancy/cigarettes,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bav" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/simulated/floor/plating,/area/engineering/ce) -"baw" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 1; icon_state = "yellowcorner"},/area/engineering/engine) -"bax" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor,/area/engineering/engine) -"bay" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/engineering/engine) -"baz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/engineering/engine) -"baA" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/weapon/book/manual/engineering_construction,/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/engineering/engine) -"baB" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plating/airless,/area) -"baC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/airless,/area) -"baD" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/library) -"baE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood{icon_state = "wood-broken"},/area/derelictparts/library) -"baF" = (/obj/structure/table/woodentable,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/trash/cheesie,/turf/simulated/floor/wood,/area/derelictparts/library) -"baG" = (/obj/structure/table/woodentable,/obj/item/weapon/dice/d20,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/derelictparts/library) -"baH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"baI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/derelictparts/library) -"baJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"baK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"baL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"baM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"baN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"baO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"baP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"baQ" = (/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance"; req_access_txt = "55"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/science/xenobiology) -"baR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"baS" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"baT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"baU" = (/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"baV" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"baW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"baX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"baY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"baZ" = (/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor"; name = "Genetics"; req_access_txt = "5; 9"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/medical/genetics_cloning) -"bba" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbg" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbi" = (/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/manifold/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bbk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/structure/sink{dir = 8; pixel_x = -11},/obj/structure/closet/walllocker/defiblocker{pixel_x = -32},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bbl" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bbm" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bbn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bbo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bbp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bbq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/medical/medbay) -"bbr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bbs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bbt" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "0"; req_one_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bbu" = (/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bbv" = (/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bbw" = (/obj/structure/bed/chair/wood/normal{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bbx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bby" = (/obj/item/toy/cards,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bbz" = (/obj/structure/table/reinforced,/obj/structure/painting{icon_state = "monkey"; pixel_x = 0; pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Bar East"},/obj/item/trash/bowl,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bbA" = (/obj/structure/disposalpipe/segment,/obj/machinery/cooking/icemachine,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bbB" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bbC" = (/obj/machinery/newscaster{pixel_x = -28},/obj/machinery/cooking/cerealmaker,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bbD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bbE" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bbF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/fsmaint) -"bbG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bbH" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/storage/tech) -"bbI" = (/obj/structure/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},/turf/simulated/floor,/area/storage/tech) -"bbJ" = (/obj/structure/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},/turf/simulated/floor,/area/storage/tech) -"bbK" = (/obj/structure/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,/area/storage/tech) -"bbL" = (/obj/structure/table,/obj/item/weapon/storage/wallet/random{pixel_y = 9},/obj/item/weapon/storage/wallet/random{pixel_y = 6},/obj/item/weapon/storage/wallet/random{pixel_y = 3},/obj/item/weapon/storage/wallet/random,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bbM" = (/obj/structure/table,/obj/item/weapon/storage/fancy/crayons{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/fancy/crayons,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bbN" = (/obj/structure/table,/obj/item/device/camera,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bbO" = (/obj/machinery/camera{c_tag = "Chief Engineer's Office"; dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/table/reinforced,/obj/item/weapon/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/weapon/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/weapon/cartridge/engineering{pixel_x = 3},/obj/item/weapon/cartridge/atmos,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/item/device/rcd/matter/engineering,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bbP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bbQ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bbR" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bbS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bbT" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor{icon_state = "white"},/area/science/mixing) -"bbU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"bbV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction/Chemistry,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"bbW" = (/obj/machinery/requests_console{department = "Engineering"; departmentType = 4; name = "Engineering RC"; pixel_x = 32},/turf/simulated/floor,/area/engineering/engine) -"bbX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_y = 32},/turf/space,/area) -"bbY" = (/obj/structure/lattice,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_y = 32},/turf/space,/area) -"bbZ" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"bca" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/derelictparts/library) -"bcb" = (/obj/structure/table/woodentable,/obj/item/trash/chips{pixel_x = -4; pixel_y = 8},/turf/simulated/floor/wood,/area/derelictparts/library) -"bcc" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/wood{icon_state = "wood-broken7"},/area/derelictparts/library) -"bcd" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bce" = (/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bcf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bcg" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bch" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bci" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bcj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera{c_tag = "Xenobiology Maintenance"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bck" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bcl" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bcm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bcn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bco" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bcp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bcq" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/science/xenobiology) -"bcr" = (/obj/structure/sign/biohazard{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bcs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division Xenobiology"; dir = 1; network = list("SS13","RD")},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bct" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bcu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bcv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bcw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = -27},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bcx" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bcy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bcz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bcA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/sortjunction/Chemistry{dir = 8; icon_state = "pipe-j2s"},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bcB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bcC" = (/obj/machinery/camera{c_tag = "Engineering SME Airlock - Outside"; dir = 4},/turf/space,/area) -"bcD" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/paper/hydroponics,/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = -31},/obj/item/weapon/book/manual/hydroponics_beekeeping,/turf/simulated/floor{icon_state = "hydrofloor"},/area/hydroponics) -"bcE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bcF" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bcG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bcH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bcI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bcJ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 10; pixel_y = 2},/obj/item/weapon/storage/firstaid/o2{pixel_x = 2; pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/lighter{icon_state = "lighter-c"},/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcK" = (/obj/structure/closet/secure_closet/paramedic,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcL" = (/obj/structure/sign/securearea{pixel_y = -32},/obj/structure/closet/paramedic,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcM" = (/obj/structure/bed/chair/comfy/teal{dir = 4},/obj/effect/landmark/start{name = "Paramedic"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcN" = (/obj/machinery/computer/crew,/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcO" = (/obj/structure/bed/chair/comfy/teal{dir = 8},/obj/effect/landmark/start{name = "Paramedic"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/item/weapon/tank/nitrogen,/obj/item/weapon/tank/nitrogen,/obj/item/clothing/mask/breath/vox,/obj/item/clothing/mask/breath/vox,/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bcQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bcR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bcS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bcT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "0"; req_one_access_txt = "5"},/turf/simulated/floor{icon_state = "white"},/area/medical/medbay) -"bcU" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "whitegreen"},/area/medical/medbay) -"bcV" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whiteyellowcorner"},/area/medical/medbay) -"bcW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bcX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bcY" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/medbay) -"bcZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/sign/greencross{pixel_y = -32},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/medical/medbay) -"bda" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/hallway/primary/fore) -"bdb" = (/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bdc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bdd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair/wood/normal{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bde" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bdf" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bdg" = (/obj/structure/table/reinforced,/obj/item/weapon/lighter/zippo,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bdh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bdi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/mob/living/carbon/monkey{name = "Pun Pun"; real_name = "Pun Pun"},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bdj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bdk" = (/obj/item/weapon/stool{pixel_y = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bdl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bdm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bdn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/cooking/deepfryer,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bdo" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/book/manual/chef_recipes,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bdp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bdq" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_x = 30},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bdr" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor{icon_state = "damaged1"},/area/maintenance/fsmaint) -"bds" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "damaged2"},/area/maintenance/fsmaint) -"bdt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bdu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "damaged1"},/area/maintenance/fsmaint) -"bdv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"bdw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged5"},/area/maintenance/fsmaint) -"bdx" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fsmaint) -"bdy" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/tech) -"bdz" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/tech) -"bdA" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/storage/tech) -"bdB" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bdC" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bdD" = (/obj/structure/table/reinforced,/obj/item/stack/medical/bruise_pack{pixel_x = -3; pixel_y = 2},/obj/item/weapon/reagent_containers/pill/kelotane{pixel_x = -3; pixel_y = -8},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -27; pixel_y = 4},/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = -6},/obj/item/clothing/gloves/yellow,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bdE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bdF" = (/obj/machinery/light,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bdG" = (/obj/machinery/power/apc{cell_type = 5000; name = "CE Office APC"; pixel_y = -24; pixel_x = 0},/obj/structure/cable,/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bdH" = (/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bdI" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable,/turf/simulated/floor/plating,/area/engineering/ce) -"bdJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{dir = 8; icon_state = "cautioncorner"},/area/engineering/engine) -"bdK" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"bdL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"bdM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"bdN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/engineering/engine) -"bdO" = (/obj/machinery/camera{c_tag = "Engineering South"; dir = 8; network = list("MINE")},/turf/simulated/floor,/area/engineering/engine) -"bdP" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/wood,/area/derelictparts/library) -"bdQ" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/derelictparts/library) -"bdR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/weapon/camera_assembly,/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/derelictparts/library) -"bdS" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/wood,/area/derelictparts/library) -"bdT" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bdU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bdV" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/pen,/obj/machinery/atmospherics/binary/valve{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bdW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bdX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bdY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bdZ" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bea" = (/obj/machinery/disposal,/obj/structure/sign/deathsposal{pixel_y = -32},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/camera{c_tag = "Xenobiology Northwest"; dir = 1; network = list("SS13","RD")},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"beb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bec" = (/turf/simulated/wall/r_wall,/area/science/server) -"bed" = (/turf/simulated/wall,/area/science/server) -"bee" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/science/rd) -"bef" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/science/rd) -"beg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/research{name = "Telescience Lab"; req_access_txt = "8"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor{icon_state = "white"},/area/science/telescience) -"beh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/science/rd) -"bei" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/science/rd) -"bej" = (/turf/simulated/wall,/area/science/rd) -"bek" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 2; name = "Chemistry Desk"; req_access_txt = "33"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/medical/chemistry) -"bel" = (/obj/machinery/chem_dispenser/brewer{pixel_y = 24},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/kettle/purple,/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"bem" = (/obj/structure/table,/obj/machinery/microwave,/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"ben" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/obj/structure/sign/chemtable{pixel_y = 32},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"beo" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/science/hallway) -"bep" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/device/radio/headset/headset_med,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/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"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"beq" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Research Division East"; dir = 8; network = list("SS13","RD")},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"ber" = (/turf/simulated/wall/r_wall,/area/science/lab) -"bes" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/science/lab) -"bet" = (/turf/simulated/wall/r_wall,/area/medical/chemistry) -"beu" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Paramedic station"; req_access_txt = "500"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"bev" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/floor/plating,/area/medical/chemistry) -"bew" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 2; name = "Chemistry Desk"; req_access_txt = "33"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/medical/chemistry) -"bex" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/medical/chemistry) -"bey" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor/plating,/area/medical/chemistry) -"bez" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Paramedic station"; req_access_txt = "500"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "white"},/area/medical/paramedics) -"beA" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Fore Starboard Hallway South West"; dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 8},/area/hallway/primary/fore) -"beB" = (/obj/machinery/camera{c_tag = "Bar West"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"beC" = (/obj/machinery/hologram/holopad,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"beD" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"beE" = (/obj/effect/landmark/start{name = "Bartender"},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"beF" = (/obj/machinery/cooking/still,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"beG" = (/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_x = 30},/obj/item/weapon/book/manual/barman_recipes,/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/pie,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"beH" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"beI" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"beJ" = (/obj/machinery/cooking,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"beK" = (/obj/structure/table,/obj/item/stack/package_wrap,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"beL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/map/nest/mouse{popMax = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"beM" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/machinery/light{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"beN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"beO" = (/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/fsmaint) -"beP" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/trash/sosjerky,/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/fsmaint) -"beQ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"beR" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"beS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/weapon/kitchen/utensil/fork,/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/maintenance/fsmaint) -"beT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fsmaint) -"beU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"beV" = (/turf/simulated/wall/r_wall,/area/engineering/engine_storage) -"beW" = (/turf/simulated/wall,/area/engineering/engine_storage) -"beX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall,/area/engineering/engine_storage) -"beY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_storage) -"beZ" = (/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bfa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bfb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/engineering/engine) -"bfc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine) -"bfd" = (/obj/machinery/door/airlock/glass{name = "Derelict Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/derelictparts/library) -"bfe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/derelictparts/library) -"bff" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/derelictparts/library) -"bfg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bfh" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bfi" = (/turf/simulated/wall,/area/science/xenobiology) -"bfj" = (/obj/structure/sign/biohazard,/turf/simulated/wall,/area/science/xenobiology) -"bfk" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bfl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bfm" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = -30},/obj/machinery/portable_atmospherics/canister/plasma,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bfn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bfo" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bfp" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract."; name = "Slime Processor"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bfq" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/monkey_recycler,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bfr" = (/obj/machinery/computer/rdservercontrol,/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"bfs" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"bft" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{current_temperature = 80; on = 1},/obj/effect/decal/cleanable/cobweb2,/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_x = 32},/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"bfu" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/storage/belt/utility,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bfv" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bfw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bfx" = (/obj/machinery/computer/mecha,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bfy" = (/obj/machinery/computer/robotics,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bfz" = (/obj/machinery/computer/aifixer,/obj/machinery/media/receiver/boombox/wallmount{pixel_x = 32; pixel_y = 0},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bfA" = (/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"bfB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bfC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/hallway) -"bfD" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/plating,/area/science/lab) -"bfE" = (/obj/structure/table,/obj/item/stack/sheet/glass/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bfF" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bfG" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/science/lab) -"bfH" = (/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Research and Development"; network = list("SS13","RD")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/science/lab) -"bfI" = (/obj/machinery/r_n_d/fabricator/protolathe,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/science/lab) -"bfJ" = (/obj/structure/table,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bfK" = (/obj/structure/table,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bfL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = -23},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bfM" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bfN" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bfO" = (/obj/machinery/door/airlock/glass_science{name = "Break Room"; req_access_txt = "47"},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"bfP" = (/obj/structure/table,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/obj/item/stack/package_wrap,/obj/machinery/camera{c_tag = "Chemistry"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bfQ" = (/obj/structure/closet/wardrobe/chemistry_white,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bfR" = (/obj/machinery/chem_dispenser/mapping,/turf/simulated/floor{icon_state = "whiteyellow"; dir = 9},/area/medical/chemistry) -"bfS" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor{dir = 1; icon_state = "whiteyellow"},/area/medical/chemistry) -"bfT" = (/obj/machinery/chem_master,/turf/simulated/floor{dir = 5; icon_state = "whiteyellow"},/area/medical/chemistry) -"bfU" = (/obj/machinery/door/airlock/glass_command{name = "Chief Engineer"; req_access_txt = "56"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{dir = 8; icon_state = "neutralfull"},/area/engineering/ce) -"bfV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/hallway/primary/fore) -"bfW" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bfX" = (/obj/structure/table/reinforced,/obj/item/clothing/head/that{throwing = 1},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bfY" = (/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bfZ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bga" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bgb" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/landmark/start{name = "Chef"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bgc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/cooking/grill,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bgd" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/headset/headset_service,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bge" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bgf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bgg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bgh" = (/obj/structure/disposalpipe/sortjunction/Bar{dir = 1; icon_state = "pipe-j2s"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bgi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"bgj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bgk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bgl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/fsmaint) -"bgm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bgn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bgo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bgp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bgq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bgr" = (/obj/structure/closet,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bgs" = (/obj/structure/table,/obj/item/weapon/circuitboard/airlock,/obj/item/weapon/circuitboard/airlock,/obj/item/weapon/circuitboard/power_control,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine_storage) -"bgt" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_singularity_safety,/obj/item/clothing/gloves/yellow,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"bgu" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"bgv" = (/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/structure/window/reinforced{dir = 8},/obj/machinery/suit_storage_unit/engie,/turf/simulated/floor,/area/engineering/engine_storage) -"bgw" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Engineering Storage"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/suit_storage_unit/engie,/turf/simulated/floor,/area/engineering/engine_storage) -"bgx" = (/obj/structure/dispenser,/turf/simulated/floor,/area/engineering/engine_storage) -"bgy" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/machinery/power/solar_assembly,/obj/item/weapon/circuitboard/solar_control,/obj/item/weapon/tracker_electronics,/obj/item/weapon/paper/solar,/turf/simulated/floor,/area/engineering/engine_storage) -"bgz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine_storage) -"bgA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/engineering/engine_storage) -"bgB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bgC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/port_gen/pacman,/turf/simulated/floor{icon_state = "yellow"; dir = 10},/area/engineering/engine) -"bgD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "yellow"},/area/engineering/engine) -"bgE" = (/obj/machinery/light/small{dir = 8},/obj/item/weapon/camera_assembly,/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/library) -"bgF" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/simulated/floor/carpet,/area/derelictparts/library) -"bgG" = (/obj/structure/table/woodentable,/obj/item/weapon/handcuffs/cable,/obj/item/weapon/handcuffs/cable,/obj/item/weapon/handcuffs/cable,/obj/item/weapon/handcuffs/cable,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/item/weapon/reagent_containers/spray/pepper,/obj/machinery/media/receiver/boombox,/turf/simulated/floor/carpet,/area/derelictparts/library) -"bgH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/library) -"bgI" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/library) -"bgJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"bgK" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood,/area/derelictparts/library) -"bgL" = (/obj/machinery/light_construct/small{dir = 1},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/wood,/area/derelictparts/library) -"bgM" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor/wood,/area/derelictparts/library) -"bgN" = (/obj/machinery/light_construct/small{dir = 1},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/wood{icon_state = "wood-broken4"},/area/derelictparts/library) -"bgO" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/library) -"bgP" = (/obj/machinery/light_construct/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/library) -"bgQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bgR" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/simulated/floor/engine,/area/science/xenobiology) -"bgS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/science/xenobiology) -"bgT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio3"; name = "containment blast door"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/science/xenobiology) -"bgU" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bgV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bgW" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bgX" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bgY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/obj/machinery/computer/message_monitor,/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"bgZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"bha" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"bhb" = (/obj/machinery/door/airlock/glass{name = "Diner"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/crew_quarters/bar) -"bhc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bhd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bhe" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bhf" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/obj/item/weapon/paper/monitorkey,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bhg" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Research Director"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bhh" = (/obj/structure/table,/obj/machinery/door_control{id_tag = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -5; pixel_y = 9; req_access_txt = "47"},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = 30},/obj/machinery/keycard_auth{pixel_x = -4; pixel_y = -2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 8; pixel_y = 7},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 8; pixel_y = 3},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 8; pixel_y = -1},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bhi" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "whitepurplecorner"},/area/science/lab) -"bhj" = (/obj/machinery/door/window{dir = 2; name = "Bar Door"; req_access_txt = "0"; req_one_access_txt = "25;28"},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bhk" = (/obj/machinery/camera{c_tag = "Xenobiology East"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bhl" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"bhm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction/Research{dir = 2; icon_state = "pipe-j2s"},/turf/simulated/floor{dir = 4; icon_state = "whitepurple"},/area/science/hallway) -"bhn" = (/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "bar"},/area/crew_quarters/kitchen) -"bho" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bhp" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bhq" = (/obj/machinery/computer/rdconsole/core,/turf/simulated/floor,/area/science/lab) -"bhr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/weapon/stool,/turf/simulated/floor,/area/science/lab) -"bhs" = (/obj/machinery/r_n_d/fabricator/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/science/lab) -"bht" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bhu" = (/obj/structure/table,/obj/machinery/door_control{id_tag = "rnd"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = 0},/obj/item/weapon/storage/bag/gadgets{pixel_x = 2; pixel_y = -2},/obj/item/weapon/storage/bag/gadgets,/obj/item/weapon/storage/bag/gadgets{pixel_x = -2; pixel_y = 2},/obj/item/stack/sheet/mineral/plastic{amount = 10},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bhv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/medical/chemistry) -"bhw" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/obj/structure/disposalpipe/segment,/obj/structure/sink{dir = 8; pixel_x = -11},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bhx" = (/obj/structure/disposalpipe/sortjunction/Chemistry{dir = 2; icon_state = "pipe-j2s"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bhy" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bhz" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bhA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bhB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bhC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bhD" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor{dir = 4; icon_state = "whiteyellow"},/area/medical/chemistry) -"bhE" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bhF" = (/obj/item/weapon/kitchen/utensil/fork,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bhG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/chair/wood/normal{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bhH" = (/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bhI" = (/obj/structure/table/reinforced,/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bhJ" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bhK" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"bhL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/machinery/camera{c_tag = "Xenobiology Northeast"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bhM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/cooking/still,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bhN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bhO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bhP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bhQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bhR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/sortjunction/Kitchen{dir = 1; icon_state = "pipe-j2s"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bhS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bhT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bhU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bhV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"bhW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"; dir = 1},/area/maintenance/fsmaint) -"bhX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bhY" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bhZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bia" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bib" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bic" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bid" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bie" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bif" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/machinery/power/monitor,/turf/simulated/floor,/area/engineering/engine_storage) -"big" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"bih" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/engineering/engine_storage) -"bii" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine_storage) -"bij" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"bik" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"bil" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"bim" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/machinery/light{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/engineering/engine_storage) -"bin" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor/plating,/area/engineering/engine) -"bio" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/engineering/engine) -"bip" = (/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/engineering/engine) -"biq" = (/obj/structure/rack,/obj/item/clothing/under/owl,/obj/item/clothing/shoes/brown,/obj/item/clothing/mask/gas/owl_mask,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/derelictparts/library) -"bir" = (/obj/item/weapon/paper{info = "Don the mask. Become the hero you were born to be, the hero the station deserves, but not the one it needs. Hoot."},/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/library) -"bis" = (/turf/simulated/floor/carpet,/area/derelictparts/library) -"bit" = (/obj/effect/decal/cleanable/generic,/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/library) -"biu" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/library) -"biv" = (/obj/item/weapon/cigbutt{pixel_x = 8; pixel_y = -3},/turf/simulated/floor/wood,/area/derelictparts/library) -"biw" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/wood,/area/derelictparts/library) -"bix" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/library) -"biy" = (/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"biz" = (/obj/machinery/door/window{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio3"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"biA" = (/obj/machinery/door/window{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"biB" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"biC" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating,/area/science/server) -"biD" = (/obj/machinery/door/airlock/glass_command{icon_state = "door_locked"; locked = 1; name = "Server Room"; req_access_txt = "30"},/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"biE" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/simulated/floor/plating,/area/science/server) -"biF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"biG" = (/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"biH" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("SS13","RD")},/obj/machinery/light_switch{pixel_y = -24},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"biI" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"biJ" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"biK" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office."; name = "Research Monitor"; network = list("RD"); pixel_y = 2},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"biL" = (/obj/structure/flora/pottedplant/random,/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"biM" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 24},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"biN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{dir = 9; icon_state = "whitehall"},/area/science/hallway) -"biO" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 1; name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor/plating,/area/hallway/primary/central) -"biP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor{icon_state = "whitepurplecorner"; dir = 4},/area/science/hallway) -"biQ" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/science/lab) -"biR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"biS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"biT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"biU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"biV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"biW" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"biX" = (/obj/machinery/requests_console{department = "Mining"; departmentType = 0; pixel_y = 30},/obj/structure/closet/crate,/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/miningdelivery) -"biY" = (/obj/structure/lattice,/obj/machinery/camera{c_tag = "Engineering Airlock - Outside"; dir = 4},/turf/space,/area) -"biZ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bja" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bjb" = (/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bjc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bjd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bje" = (/obj/structure/table,/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = 30},/obj/machinery/light{dir = 4},/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/storage/pill_bottle/inaprovaline{pixel_x = 5; pixel_y = -2},/obj/item/weapon/storage/bag/chem,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bjf" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/bed/chair/wood/normal{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bji" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/bed/chair/wood/normal{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Bar"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bjm" = (/obj/machinery/door/airlock/glass_command{name = "Research Director"; req_access_txt = "30"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/science/rd) -"bjn" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bjo" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bjp" = (/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bjq" = (/obj/machinery/processor,/obj/item/device/radio/intercom{pixel_y = -27},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bjr" = (/obj/machinery/cooking/candy,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bjs" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bjt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bju" = (/obj/structure/bed/chair,/turf/simulated/floor{icon_state = "damaged2"},/area/maintenance/fsmaint) -"bjv" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bjw" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bjx" = (/obj/structure/bed/chair,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bjy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bjz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bjA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bjB" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bjC" = (/obj/machinery/computer/station_alert,/turf/simulated/floor,/area/engineering/engine_storage) -"bjD" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine_storage) -"bjE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine_storage) -"bjF" = (/turf/simulated/floor,/area/engineering/engine_storage) -"bjG" = (/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id_tag = "Secure Storage"; name = "secure storage"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bjH" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 30},/obj/item/stack/sheet/plasteel{amount = 30},/turf/simulated/floor,/area/engineering/engine) -"bjI" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/engineering/engine) -"bjJ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/engineering/engine) -"bjK" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/wall{icon_state = "swall_f6"},/area/shuttle/escape_pod5/station) -"bjL" = (/turf/simulated/shuttle/wall{icon_state = "swall12"},/area/shuttle/escape_pod5/station) -"bjM" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/escape_pod5/station) -"bjN" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/library) -"bjO" = (/obj/structure/filingcabinet,/turf/simulated/floor/carpet,/area/derelictparts/library) -"bjP" = (/obj/machinery/alarm{dir = 4; pixel_x = -25},/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/derelictparts/library) -"bjQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/derelictparts/library) -"bjR" = (/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/derelictparts/library) -"bjS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/alarm{dir = 8; pixel_x = 22; req_one_access = list(24,11,47)},/turf/simulated/floor/wood{icon_state = "wood-broken"},/area/derelictparts/library) -"bjT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio3"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"bjU" = (/obj/structure/table/reinforced,/obj/machinery/door_control{id_tag = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bjV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bjW" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bjX" = (/obj/structure/table,/obj/item/weapon/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/weapon/extinguisher,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bjY" = (/obj/structure/table,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bjZ" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bka" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bkb" = (/obj/machinery/smartfridge/extract,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bkc" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 140; on = 1; pressure_checks = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/science/server) -"bkd" = (/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/science/server) -"bke" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 120; icon_state = "in"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/science/server) -"bkf" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/science/rd) -"bkg" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/item/weapon/planning_frame,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/obj/item/clothing/glasses/welding/superior,/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"bkh" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"bki" = (/obj/structure/lamarr,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"bkj" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/sign/biohazard{pixel_y = 32},/obj/machinery/camera{c_tag = "Science Lobby"; network = list("SS13","RD")},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bkk" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering Airlock"},/turf/simulated/floor/plating,/area/engineering/engine) -"bkl" = (/obj/structure/closet/crate,/turf/simulated/floor{icon_state = "brown"},/area/supply/miningdelivery) -"bkm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/crate,/turf/simulated/floor{icon_state = "brown"},/area/supply/miningdelivery) -"bkn" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bko" = (/turf/simulated/wall,/area/science/lab) -"bkp" = (/obj/machinery/light_switch{pixel_x = -24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bkq" = (/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bkr" = (/obj/machinery/hologram/holopad,/obj/machinery/door_control{desc = "A remote control switch for the science foyer."; id_tag = "ScienceFoyer"; name = "Science Foyer Door Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bks" = (/turf/simulated/floor{icon_state = "whitepurple"},/area/science/lab) -"bkt" = (/obj/item/weapon/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor{icon_state = "whitepurple"},/area/science/lab) -"bku" = (/obj/structure/table/reinforced,/obj/machinery/door/window{name = "Chemistry Desk"; req_access_txt = "33"},/obj/machinery/door/window{base_state = "left"; dir = 8; icon_state = "left"; name = "Research and Development Desk"; req_access_txt = "7"},/turf/simulated/floor,/area/medical/chemistry) -"bkv" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "whiteyellow"; dir = 8},/area/medical/chemistry) -"bkw" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bkx" = (/obj/structure/table,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/screwdriver{pixel_x = -2; pixel_y = 6},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3; pixel_y = -7},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"bky" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bkz" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bkA" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bkB" = (/obj/structure/noticeboard{pixel_y = -27},/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bkC" = (/obj/machinery/firealarm{dir = 1; pixel_y = -27},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bkD" = (/obj/machinery/door/airlock{name = "Kitchen cold room"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bkE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkF" = (/obj/structure/table,/obj/item/weapon/kitchen/utensil/fork,/obj/item/weapon/storage/fancy/matchbox,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bkG" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "damaged2"},/area/maintenance/fsmaint) -"bkH" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bkI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bkJ" = (/obj/machinery/portable_atmospherics/hydroponics/soil{pixel_y = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkK" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkL" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/minihoe,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/remains/robot{icon_state = "gib3"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkQ" = (/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkR" = (/obj/machinery/light/small{dir = 4},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bkS" = (/obj/machinery/power/apc{cell_type = 15000; name = "Engineering APC"; pixel_y = -24; pixel_x = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/engineering/engine_storage) -"bkT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/engineering/engine_storage) -"bkU" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/engineering/engine_storage) -"bkV" = (/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/engineering/engine_storage) -"bkW" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/engineering/engine_storage) -"bkX" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bkY" = (/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bkZ" = (/obj/structure/sign/nosmoking_2{pixel_x = -32},/obj/machinery/camera{c_tag = "Engineering Supplies"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/simulated/floor,/area/engineering/engine) -"bla" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/engine) -"blb" = (/obj/machinery/door/airlock/external{name = "Engineering Escape Pod"; req_access = null; req_access_txt = "0"},/turf/simulated/floor/plating,/area/engineering/engine) -"blc" = (/turf/simulated/floor/plating,/area/engineering/engine) -"bld" = (/obj/machinery/door/unpowered/shuttle,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod5/station) -"ble" = (/obj/structure/bed/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 23},/obj/machinery/light/small,/turf/simulated/shuttle/floor,/area/shuttle/escape_pod5/station) -"blf" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/shuttle/floor,/area/shuttle/escape_pod5/station) -"blg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/shuttle/plating,/area/shuttle/escape_pod5/station) -"blh" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/derelictparts/library) -"bli" = (/obj/item/weapon/cigbutt{pixel_x = -8; pixel_y = 14},/turf/simulated/floor/wood,/area/derelictparts/library) -"blj" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/wood,/area/derelictparts/library) -"blk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/wood{icon_state = "wood-broken2"},/area/derelictparts/library) -"bll" = (/obj/effect/decal/cleanable/ash,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"blm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood{icon_state = "wood-broken5"},/area/derelictparts/library) -"bln" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/item/weapon/camera_assembly,/obj/machinery/power/apc{cell_type = 0; dir = 4; icon_state = "apc1"; opened = 1; pixel_x = 28; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/wood,/area/derelictparts/library) -"blo" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/science/xenobiology) -"blp" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"blq" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"blr" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/science/server) -"bls" = (/obj/machinery/alarm/server{dir = 1; pixel_y = -24},/obj/machinery/camera{c_tag = "Server Room"; dir = 1; network = list("SS13","RD"); pixel_x = 22},/obj/machinery/light/small,/obj/machinery/account_database,/turf/simulated/floor/bluegrid{icon_state = "dark"; name = "Server Walkway"; nitrogen = 500; oxygen = 0; temperature = 80},/area/science/server) -"blt" = (/obj/machinery/r_n_d/server/core,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/science/server) -"blu" = (/obj/machinery/light/small{dir = 1},/obj/structure/toilet{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/science/rd) -"blv" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor{icon_state = "freezerfloor"},/area/science/rd) -"blw" = (/obj/structure/table,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"blx" = (/obj/structure/table,/obj/item/device/aicard,/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"bly" = (/obj/structure/table,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/item/weapon/circuitboard/teleporter,/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor{icon_state = "white"},/area/science/rd) -"blz" = (/obj/machinery/door/airlock/glass_medical{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"blA" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/camera{c_tag = "Asteroid Shuttle"; dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"blB" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 4; name = "Cargo Desk"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"blC" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/pump,/obj/machinery/camera{c_tag = "Engineering Construction Area Airlock"; dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"blD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction/Robotics{dir = 8; icon_state = "pipe-j2s"},/turf/simulated/floor{icon_state = "whitehall"; dir = 1},/area/science/hallway) -"blE" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/shower{dir = 8},/turf/simulated/floor{dir = 5; icon_state = "whitehall"},/area/science/hallway) -"blF" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"blG" = (/obj/structure/table,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/folder/white,/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"blH" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 8},/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/science/lab) -"blI" = (/obj/machinery/door/airlock/glass_engineering{name = "Engineering Storage"; req_access_txt = "11"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/engineering/engine_storage) -"blJ" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/science/lab) -"blK" = (/obj/structure/closet/secure_closet/chemical,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"blL" = (/obj/machinery/chem_dispenser/mapping,/turf/simulated/floor{icon_state = "whiteyellow"; dir = 10},/area/medical/chemistry) -"blM" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Chemist"},/turf/simulated/floor{icon_state = "whiteyellow"},/area/medical/chemistry) -"blN" = (/obj/machinery/chem_master,/turf/simulated/floor{dir = 6; icon_state = "whiteyellow"},/area/medical/chemistry) -"blO" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/storage/pill_bottle/inaprovaline{pixel_x = 5; pixel_y = -2},/obj/item/weapon/storage/bag/chem,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"blP" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{pixel_x = 4; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{pixel_x = 4; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/pill_bottle/inaprovaline{pixel_x = 5; pixel_y = -2},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"blQ" = (/obj/structure/table,/obj/item/weapon/storage/box/syringes,/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/obj/item/clothing/glasses/science,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"blR" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor{icon_state = "white"},/area/medical/chemistry) -"blS" = (/turf/simulated/floor,/area/hallway/primary/central) -"blT" = (/turf/simulated/wall,/area/supply/miningdelivery) -"blU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/supply/miningdelivery) -"blV" = (/turf/simulated/wall,/area/supply/qm) -"blW" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"blX" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"blY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"blZ" = (/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bma" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bmb" = (/obj/machinery/door/window{dir = 8; name = "Kitchen Delivery"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/kitchen) -"bmc" = (/obj/structure/plasticflaps,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Kitchen"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/kitchen) -"bmd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/maintenance/fsmaint) -"bme" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bmf" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/fsmaint) -"bmg" = (/obj/item/trash/candy,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bmh" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fsmaint) -"bmi" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/maintenance/fsmaint) -"bmj" = (/obj/effect/decal/remains/robot,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bmk" = (/obj/machinery/portable_atmospherics/hydroponics/soil{pixel_y = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bml" = (/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bmm" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bmn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bmo" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bmp" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bmq" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/stack/sheet/glass/glass{amount = 50},/obj/item/stack/sheet/glass/glass{amount = 50},/obj/item/stack/sheet/glass/glass{amount = 50},/obj/item/stack/sheet/glass/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/simulated/floor,/area/engineering/engine) -"bmr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor,/area/engineering/engine) -"bms" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor,/area/engineering/engine) -"bmt" = (/obj/structure/closet/firecloset,/obj/structure/sign/pods{pixel_x = 32},/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor,/area/engineering/engine) -"bmu" = (/obj/machinery/camera{c_tag = "Engineering Escape Pod"; dir = 4},/turf/simulated/floor/plating,/area/engineering/engine) -"bmv" = (/turf/simulated/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/simulated/shuttle/wall{icon_state = "swall_f5"},/area/shuttle/escape_pod5/station) -"bmw" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/escape_pod5/station) -"bmx" = (/obj/structure/table/woodentable,/obj/machinery/computer/library/checkout,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/derelictparts/library) -"bmy" = (/obj/structure/table/woodentable,/obj/item/stack/package_wrap,/turf/simulated/floor/wood,/area/derelictparts/library) -"bmz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/wood{icon_state = "wood-broken6"},/area/derelictparts/library) -"bmA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/derelictparts/library) -"bmB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/carpet,/area/derelictparts/library) -"bmC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet{icon_state = "carpet-broken"},/area/derelictparts/library) -"bmD" = (/obj/item/weapon/newspaper,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/derelictparts/library) -"bmE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/weapon/cell,/turf/simulated/floor/carpet{icon_state = "carpet-broken"},/area/derelictparts/library) -"bmF" = (/obj/machinery/door/airlock/glass{name = "Derelict Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/derelictparts/library) -"bmG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bmH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bmI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio2"; name = "containment blast door"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/science/xenobiology) -"bmJ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bmK" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door_control{id_tag = "xenobio7"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bmL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio7"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"bmM" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload) -"bmN" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"bmO" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/science/hallway) -"bmP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bmQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/science/hallway) -"bmR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/science/lab) -"bmS" = (/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; listening = 0; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor{icon_state = "greencorner"; dir = 1},/area/hallway/primary/fore) -"bmT" = (/turf/simulated/floor{icon_state = "purple"; dir = 9},/area/hallway/primary/central) -"bmU" = (/turf/simulated/floor{icon_state = "purple"; dir = 1},/area/hallway/primary/central) -"bmV" = (/turf/simulated/floor{icon_state = "purple"; dir = 5},/area/hallway/primary/central) -"bmW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bmX" = (/obj/structure/catwalk,/obj/machinery/camera{c_tag = "Engineering Construction Area - Outside"; dir = 2},/turf/space,/area) -"bmY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/medical/chemistry) -"bmZ" = (/obj/machinery/vending/mining,/turf/simulated/floor{dir = 9; icon_state = "brown"},/area/supply/miningdelivery) -"bna" = (/obj/structure/catwalk,/obj/machinery/camera{c_tag = "MoMMI nest airlock - Outside"; dir = 8},/turf/space,/area) -"bnb" = (/obj/machinery/light{dir = 1},/obj/structure/closet/crate,/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/miningdelivery) -"bnc" = (/obj/machinery/alarm{pixel_y = 24},/obj/structure/closet/crate,/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/miningdelivery) -"bnd" = (/obj/machinery/camera{c_tag = "Security Post - Cargo"},/obj/structure/ore_box,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/miningdelivery) -"bne" = (/obj/structure/ore_box,/turf/simulated/floor{dir = 5; icon_state = "brown"},/area/supply/miningdelivery) -"bnf" = (/obj/structure/filingcabinet,/turf/simulated/floor{dir = 9; icon_state = "brown"},/area/supply/qm) -"bng" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/qm) -"bnh" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/obj/machinery/camera{c_tag = "Quartermaster's Office"},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = 30},/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/qm) -"bni" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/stamp{name = "Quartermaster's stamp"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = 22},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/qm) -"bnj" = (/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor{dir = 1; icon_state = "brown"},/area/supply/qm) -"bnk" = (/obj/machinery/computer/security/mining,/turf/simulated/floor{dir = 5; icon_state = "brown"},/area/supply/qm) -"bnl" = (/obj/structure/kitchenspike,/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bnm" = (/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bnn" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bno" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bnp" = (/obj/machinery/gibber,/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bnq" = (/turf/simulated/floor{icon_state = "damaged5"},/area/maintenance/fsmaint) -"bnr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/fsmaint) -"bns" = (/obj/machinery/vending/cola,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fsmaint) -"bnt" = (/obj/item/weapon/stool,/obj/machinery/light_construct/small,/obj/item/weapon/circuitboard/seed_extractor,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bnu" = (/obj/structure/table,/obj/item/weapon/storage/bag/plants,/obj/item/weapon/spacecash,/obj/map/spawner/misc/seeds,/obj/map/spawner/misc/seeds,/obj/map/spawner/misc/seeds,/obj/map/spawner/misc/seeds,/obj/map/spawner/misc/seeds,/obj/map/spawner/misc/seeds,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bnv" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bnw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bnx" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bny" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bnz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bnA" = (/obj/structure/table,/obj/item/device/radio,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bnB" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/crate/secure/large/reinforced/shard,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bnC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/engineering/engine) -"bnD" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 4},/turf/simulated/floor,/area/engineering/engine) -"bnE" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/simulated/floor/plating,/area/engineering/engine) -"bnF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF ESCAPE POD'."; name = "KEEP CLEAR: ESCAPE POD"},/turf/simulated/wall/r_wall,/area/engineering/engine) -"bnG" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/library) -"bnH" = (/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/derelictparts/library) -"bnI" = (/turf/simulated/floor/wood{icon_state = "wood-broken3"},/area/derelictparts/library) -"bnJ" = (/obj/structure/table/woodentable,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/plating,/area/derelictparts/library) -"bnK" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/library) -"bnL" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/derelictparts/library) -"bnM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/derelictparts/library) -"bnN" = (/turf/simulated/floor/carpet{icon_state = "carpet-broken"},/area/derelictparts/library) -"bnO" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/derelictparts/library) -"bnP" = (/obj/machinery/door/airlock/glass{name = "Derelict Library"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/derelictparts/library) -"bnQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bnR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/junction,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bnS" = (/mob/living/carbon/slime,/turf/simulated/floor/engine,/area/science/xenobiology) -"bnT" = (/obj/machinery/door/window{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio2"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"bnU" = (/obj/machinery/door/window{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bnV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/window{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio7"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"bnW" = (/obj/machinery/camera/motion{c_tag = "Outer AI Core North-West"; dir = 8; name = "motion-sensitive security camera"; network = list("RD")},/turf/space,/area) -"bnX" = (/obj/machinery/computer/borgupload,/obj/machinery/door/window{dir = 4; name = "Cyborg Upload"; req_access_txt = "29"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bnY" = (/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/turret_protected/ai_upload) -"bnZ" = (/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"boa" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; name = "Private AI Channel"; pixel_y = 21},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bob" = (/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Upload APC"; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/item/weapon/planning_frame,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"boc" = (/obj/structure/table,/obj/item/weapon/aiModule/core/celtic,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bod" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"boe" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bof" = (/obj/machinery/light_switch{pixel_x = 27},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bog" = (/obj/structure/table,/obj/item/weapon/phone,/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; name = "Private AI Channel"; pixel_y = 22},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"boh" = (/obj/machinery/recharge_station,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"boi" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/turretid{control_area = "\improper AI Upload Chamber"; name = "AI Upload turret control"; pixel_y = 24},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"boj" = (/obj/structure/sign/vacuum{pixel_y = 32},/obj/machinery/disposal/deliveryChute{dir = 8; name = "disposal inlet"},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor,/area/maintenance/disposal) -"bok" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bol" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bom" = (/obj/structure/closet/emcloset/legacy,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bon" = (/obj/structure/sign/biohazard{pixel_y = 32},/obj/structure/closet/firecloset/full,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"boo" = (/turf/simulated/floor{icon_state = "purplecorner"; dir = 1},/area/hallway/primary/central) -"bop" = (/turf/simulated/floor{icon_state = "purplecorner"; dir = 4},/area/hallway/primary/central) -"boq" = (/obj/machinery/light{dir = 1},/obj/structure/bed/chair,/turf/simulated/floor{icon_state = "purplecorner"; dir = 1},/area/hallway/primary/central) -"bor" = (/obj/machinery/camera{c_tag = "Central Hall North West"},/obj/structure/bed/chair,/obj/machinery/media/receiver/boombox/wallmount/muzak{on = 0; pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/central) -"bos" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{dir = 4; icon_state = "whitecorner"},/area/hallway/primary/central) -"bot" = (/turf/simulated/floor{icon_state = "whitehall"; dir = 1},/area/hallway/primary/central) -"bou" = (/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor{dir = 1; icon_state = "whitecorner"},/area/hallway/primary/central) -"bov" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/central) -"bow" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display{layer = 4; pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/central) -"box" = (/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/hallway/primary/central) -"boy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Central Hall North East"},/turf/simulated/floor,/area/hallway/primary/central) -"boz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/primary/central) -"boA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/hallway/primary/central) -"boB" = (/turf/simulated/floor{dir = 8; icon_state = "brown"},/area/supply/miningdelivery) -"boC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/supply/miningdelivery) -"boD" = (/turf/simulated/floor,/area/supply/miningdelivery) -"boE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/miningdelivery) -"boF" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{dir = 4; icon_state = "brown"},/area/supply/miningdelivery) -"boG" = (/obj/structure/closet/secure_closet/quartermaster,/turf/simulated/floor{dir = 8; icon_state = "brown"},/area/supply/qm) -"boH" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor,/area/supply/qm) -"boI" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark/start{name = "Quartermaster"},/turf/simulated/floor,/area/supply/qm) -"boJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/supply/qm) -"boK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/supply/qm) -"boL" = (/obj/machinery/computer/supplycomp,/turf/simulated/floor{dir = 4; icon_state = "brown"},/area/supply/qm) -"boM" = (/obj/structure/closet/crate{desc = "It's a storage unit for kitchen clothes and equipment."; name = "Kitchen Crate"},/obj/item/clothing/head/chefhat,/obj/item/clothing/under/rank/chef,/obj/item/weapon/storage/box/mousetraps{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/mousetraps,/obj/item/clothing/under/waiter,/obj/item/clothing/under/waiter,/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"boN" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"boO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"boP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"boQ" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"boR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"boS" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"boT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Old Engineering Wing"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"boU" = (/turf/simulated/wall/r_wall,/area/maintenance/fsmaint) -"boV" = (/obj/machinery/field_generator,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"boW" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"boX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/warning_stripes{tag = "icon-loading_area (NORTH)"; icon_state = "loading_area"; dir = 1},/turf/simulated/floor,/area/engineering/engine) -"boY" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil,/obj/item/weapon/circuitboard/airlock,/obj/item/weapon/circuitboard/airlock,/obj/item/device/silicate_sprayer,/turf/simulated/floor,/area/engineering/engine) -"boZ" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/engineering/engine) -"bpa" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engineering/engine) -"bpb" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/engineering/engine) -"bpc" = (/obj/machinery/conveyor{dir = 4; id_tag = "garbage"},/obj/machinery/camera{c_tag = "Disposals"},/obj/structure/window/reinforced,/turf/simulated/floor,/area/maintenance/disposal) -"bpd" = (/turf/space,/area/shuttle/specops/station) -"bpe" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/derelictparts/library) -"bpf" = (/obj/machinery/light_construct/small,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/library) -"bpg" = (/obj/machinery/door/window{dir = 4; name = "Library Desk Door"; req_access_txt = "0"},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/library) -"bph" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/library) -"bpi" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"bpj" = (/obj/structure/table/woodentable,/obj/item/weapon/pen,/obj/item/weapon/cigbutt{pixel_x = 4; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/derelictparts/library) -"bpk" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/wood,/area/derelictparts/library) -"bpl" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/wood{icon_state = "wood-broken7"},/area/derelictparts/library) -"bpm" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"bpn" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/library) -"bpo" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bpp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bpq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio2"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"bpr" = (/obj/structure/table/reinforced,/obj/machinery/door_control{id_tag = "xenobio2"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bps" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bpt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio7"; name = "containment blast door"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/science/xenobiology) -"bpu" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/engine,/area/science/xenobiology) -"bpv" = (/obj/machinery/flasher{id_tag = "AI"; pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/turret{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpw" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bpx" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpD" = (/obj/machinery/door/airlock/highsecurity{name = "AI Upload"; req_access_txt = "0"; req_one_access_txt = "16"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"bpF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"bpG" = (/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/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"bpH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/highsecurity{name = "Advanced Robotics"; req_access_txt = "0"; req_one_access_txt = "29;16"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"bpI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bpJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bpK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bpL" = (/obj/machinery/door/airlock/command{name = "Server Room"; req_access = null; req_access_txt = "30"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "dark"},/area/science/server) -"bpM" = (/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/hallway/primary/central) -"bpN" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=ArrivalsL"; location = "CHTL"},/turf/simulated/floor,/area/hallway/primary/central) -"bpO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/central) -"bpP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHBR"; location = "CHTR"},/turf/simulated/floor,/area/hallway/primary/central) -"bpQ" = (/obj/machinery/computer/pda_terminal,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "browncorner"},/area/hallway/primary/central) -"bpR" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -27},/obj/structure/closet/crate,/turf/simulated/floor{dir = 10; icon_state = "brown"},/area/supply/miningdelivery) -"bpS" = (/obj/machinery/mass_driver{dir = 4; id_tag = "trash"},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/disposal) -"bpT" = (/turf/simulated/floor{icon_state = "brown"},/area/supply/miningdelivery) -"bpU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "brown"},/area/supply/miningdelivery) -"bpV" = (/obj/machinery/light_switch{pixel_x = 22},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{dir = 6; icon_state = "brown"},/area/supply/miningdelivery) -"bpW" = (/obj/machinery/disposal,/obj/machinery/light_switch{pixel_x = -22},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{dir = 10; icon_state = "brown"},/area/supply/qm) -"bpX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "brown"},/area/supply/qm) -"bpY" = (/turf/simulated/floor{icon_state = "brown"},/area/supply/qm) -"bpZ" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "brown"},/area/supply/qm) -"bqa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "brown"},/area/supply/qm) -"bqb" = (/obj/structure/table,/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},/obj/item/weapon/coin/silver,/obj/machinery/status_display{pixel_x = 32; supply_display = 1},/turf/simulated/floor{dir = 6; icon_state = "brown"},/area/supply/qm) -"bqc" = (/turf/simulated/wall,/area/supply/storage) -"bqd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/supply/storage) -"bqe" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bqf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bqg" = (/obj/structure/closet/wardrobe/grey,/obj/effect/decal/cleanable/cobweb2,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bqh" = (/obj/machinery/camera{c_tag = "Engineering Secure Storage"; dir = 1},/obj/machinery/light/small,/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bqi" = (/obj/machinery/portable_atmospherics/canister/plasma,/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bqj" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass/glass{amount = 50},/obj/item/weapon/circuitboard/airlock,/obj/item/weapon/circuitboard/airlock,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/sheet/mineral/plasma{amount = 30},/turf/simulated/floor/plating,/area/engineering/engine_storage) -"bqk" = (/obj/machinery/door/window{dir = 1; name = "Engineering Delivery"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/engine) -"bql" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/engineering{name = "Old Engineering Wing"; req_access_txt = "32"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bqm" = (/turf/simulated/wall/r_wall,/area/security/vacantoffice) -"bqn" = (/turf/simulated/wall,/area/security/vacantoffice) -"bqo" = (/obj/structure/catwalk,/turf/space,/area/shuttle/specops/station) -"bqp" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bqq" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bqr" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bqs" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/camera{c_tag = "Xenobiology South"; dir = 4; network = list("SS13","RD")},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bqt" = (/obj/machinery/computer/aiupload,/obj/machinery/door/window{dir = 4; name = "AI Upload"; req_access_txt = "29"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bqu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bqv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bqw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "AI Upload Chamber"; dir = 1; network = list("SS13","RD")},/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window{dir = 1; name = "Medium-Risk Modules"; req_access_txt = "30"},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/freeform,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bqx" = (/obj/structure/table,/obj/item/weapon/aiModule/core/paladin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bqy" = (/obj/structure/table,/obj/item/weapon/aiModule/core/corp,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/sign/kiddieplaque{pixel_y = -32},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bqz" = (/obj/structure/table,/obj/item/weapon/aiModule/core/asimov,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bqA" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bqB" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "AI Upload Access"; dir = 1; network = list("SS13","RD")},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"bqC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"bqD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/hologram/holopad,/obj/effect/landmark/start{name = "Cyborg"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload_foyer) -"bqE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/turret_protected/ai_upload_foyer) -"bqF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bqG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bqH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bqI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bqJ" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/turf/simulated/floor,/area/hallway/primary/central) -"bqK" = (/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/hallway/primary/central) -"bqL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/hallway/primary/central) -"bqM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor,/area/hallway/primary/central) -"bqN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor,/area/hallway/primary/central) -"bqO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/central) -"bqP" = (/obj/machinery/light{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/window{dir = 8},/turf/simulated/floor{icon_state = "browncorner"},/area/hallway/primary/central) -"bqQ" = (/obj/structure/sign/map/efficiency,/turf/simulated/wall,/area/supply/miningdelivery) -"bqR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/miningdelivery) -"bqS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/supply/miningdelivery) -"bqT" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/grille,/turf/simulated/floor/plating,/area/supply/miningdelivery) -"bqU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/miningdelivery) -"bqV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/supply/miningdelivery) -"bqW" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/disposal) -"bqX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/qm) -"bqY" = (/obj/machinery/door/airlock/research{name = "Research and Development Lab"; req_access_txt = "7"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "white"},/area/science/lab) -"bqZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/supply/qm) -"bra" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/qm) -"brb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/supply/qm) -"brc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/qm) -"brd" = (/obj/structure/closet/secure_closet/cargotech,/turf/simulated/floor,/area/supply/storage) -"bre" = (/obj/structure/table,/obj/item/clothing/head/soft,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/turf/simulated/floor,/area/supply/storage) -"brf" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/camera{c_tag = "Cargo Bay North"},/turf/simulated/floor,/area/supply/storage) -"brg" = (/obj/structure/table,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/turf/simulated/floor,/area/supply/storage) -"brh" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/supply/storage) -"bri" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/supply/storage) -"brj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/storage) -"brk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/storage) -"brl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/supply/storage) -"brm" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"brn" = (/obj/structure/plasticflaps,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Engineering"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/engineering/engine) -"bro" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"brp" = (/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"brq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/security/vacantoffice) -"brr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/security/vacantoffice) -"brs" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/security/vacantoffice) -"brt" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/security/vacantoffice) -"bru" = (/obj/machinery/field_generator,/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/security/vacantoffice) -"brv" = (/obj/machinery/field_generator,/turf/simulated/floor/plating,/area/security/vacantoffice) -"brw" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bry" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brA" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brG" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"brH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio1"; name = "containment blast door"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/science/xenobiology) -"brI" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/door_control{id_tag = "xenobio6"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"brJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio6"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"brK" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/plating,/area/turret_protected/ai_upload) -"brL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_command{icon_state = "door_locked"; locked = 1; name = "High Risk Module Storage"; req_access_txt = "30"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"brM" = (/obj/structure/grille,/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/window/reinforced/plasma{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/turret_protected/ai_upload) -"brN" = (/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"brO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"brP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/highsecurity{name = "Robotics Upload Access"; req_access_txt = "0"; req_one_access_txt = "29"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"brQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"brR" = (/turf/simulated/wall/r_wall,/area/science/robotics) -"brS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/science/robotics) -"brT" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/science/robotics) -"brU" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/newscaster{pixel_x = -28},/turf/simulated/floor{icon_state = "dark"},/area/science/hallway) -"brV" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/science/robotics) -"brW" = (/turf/simulated/wall,/area/science/robotics) -"brX" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/hallway/primary/central) -"brY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/primary/central) -"brZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/full/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bsa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/full/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bsb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/full/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bsc" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/hallway/primary/central) -"bsd" = (/turf/simulated/floor{icon_state = "browncorner"},/area/hallway/primary/central) -"bse" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/supply/storage) -"bsf" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/supply/storage) -"bsg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"bsh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/supply/miningdelivery) -"bsi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "browncorner"},/area/supply/storage) -"bsj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/supply/storage) -"bsk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"bsl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor,/area/supply/storage) -"bsm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bsn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/supply/storage) -"bso" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"bsp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/supply/storage) -"bsq" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = 30},/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bsr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bss" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-loading_area (EAST)"; icon_state = "loading_area"; dir = 4},/turf/simulated/floor,/area/supply/storage) -"bst" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"bsu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"bsv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"bsw" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"bsx" = (/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id_tag = "QMLoaddoor"; name = "supply dock loading door"; opacity = 1},/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/supply/storage) -"bsy" = (/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad"},/turf/simulated/floor/plating,/area/supply/storage) -"bsz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsD" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsI" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/binary/valve{dir = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bsJ" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{dir = 8; level = 4; name = "apc"; pixel_x = -24},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bsK" = (/obj/machinery/field_generator,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/security/vacantoffice) -"bsL" = (/turf/simulated/floor/plating,/area/security/vacantoffice) -"bsM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/asmaint2) -"bsN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bsO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"bsP" = (/obj/machinery/door/window{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio1"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"bsQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bsR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/window{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio6"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"bsS" = (/obj/structure/table,/obj/item/weapon/aiModule/standard/protectStation,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bsT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bsU" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{broadcasting = 1; freerange = 1; name = "Common Channel"; pixel_x = 0; pixel_y = 18},/obj/machinery/door/window{dir = 2; name = "AI Core Door"; req_access_txt = "16"},/obj/item/device/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = -27; pixel_y = 0},/obj/item/device/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 27; pixel_y = 0},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bsV" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bsW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bsX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bsY" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/turf/simulated/floor{icon_state = "whitebluecorner"; dir = 8},/area/science/robotics) -"bsZ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bta" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"btb" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"btc" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/camera{c_tag = "Robotics Lab North"; network = list("SS13","RD")},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"btd" = (/obj/structure/table,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bte" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"btf" = (/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/hallway/primary/central) -"btg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/full/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bth" = (/turf/simulated/shuttle/wall{icon_state = "swall_s6"},/area/shuttle/mining/station) -"bti" = (/turf/simulated/shuttle/wall{icon_state = "swall12"},/area/shuttle/mining/station) -"btj" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/shuttle/plating,/area/shuttle/mining/station) -"btk" = (/turf/simulated/shuttle/wall{icon_state = "swall_s10"},/area/shuttle/mining/station) -"btl" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHWEST)"; icon_state = "warning"; dir = 10},/turf/simulated/floor,/area/hallway/primary/central) -"btm" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor,/area/hallway/primary/central) -"btn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/supply/storage) -"bto" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"btp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor,/area/supply/storage) -"btq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor,/area/supply/storage) -"btr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{dir = 4; icon_state = "brown"},/area/supply/storage) -"bts" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"btt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"btu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/supply/storage) -"btv" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/supply/storage) -"btw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sortjunction/QM{dir = 8},/turf/simulated/floor,/area/supply/storage) -"btx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bty" = (/obj/structure/disposalpipe/sortjunction/QM{dir = 1; icon_state = "pipe-j2s"},/turf/simulated/floor,/area/supply/storage) -"btz" = (/turf/simulated/floor,/area/supply/storage) -"btA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"btB" = (/obj/machinery/conveyor_switch/oneway{id_tag = "QMLoad"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"btC" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"btD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"btE" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/supply/storage) -"btF" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/supply/storage) -"btG" = (/turf/simulated/floor/plating,/area/supply/storage) -"btH" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/structure/docking_port/destination/supply/station{dir = 4},/turf/simulated/floor/plating,/area/supply/storage) -"btI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"btJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"btK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"btL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/fsmaint) -"btM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"btN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/fsderelict) -"btO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"btP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"btQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"btR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/meter,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"btS" = (/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/crew_quarters/kitchen) -"btT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/security/vacantoffice) -"btU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/security/vacantoffice) -"btV" = (/turf/simulated/wall,/area/derelictparts/asderelict) -"btW" = (/obj/structure/rack,/obj/item/weapon/pen,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"btX" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"btY" = (/obj/structure/table,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"btZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bua" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bub" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"buc" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bud" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bue" = (/obj/structure/closet,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"buf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio1"; name = "containment blast door"},/turf/simulated/floor/engine,/area/science/xenobiology) -"bug" = (/obj/structure/table/reinforced,/obj/machinery/door_control{id_tag = "xenobio1"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"buh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"bui" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/xenobiology) -"buj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "xenobio6"; name = "containment blast door"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/engine,/area/science/xenobiology) -"buk" = (/obj/machinery/turret{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bul" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bum" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai_upload) -"bun" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"buo" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bup" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/turret,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"buq" = (/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bur" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bus" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"but" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"buu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"buv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"buw" = (/obj/machinery/door/airlock/highsecurity{name = "AI Core & System Integrity Restorer"; req_access_txt = "0"; req_one_access_txt = "29;16"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bux" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "whiteblue"},/area/science/robotics) -"buy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"buz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"buA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"buB" = (/obj/structure/bed/chair{dir = 1},/obj/effect/landmark/start{name = "Roboticist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"buC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"buD" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -27},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"buE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/hallway/primary/central) -"buF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/central) -"buG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/primary/central) -"buH" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/space,/area/shuttle/mining/station) -"buI" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/shuttle/engine/heater{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating/airless,/area/shuttle/mining/station) -"buJ" = (/obj/structure/table,/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"buK" = (/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"buL" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"buM" = (/turf/simulated/shuttle/wall{icon_state = "swall3"},/area/shuttle/mining/station) -"buN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/full/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/primary/central) -"buO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"},/obj/structure/window/full/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/primary/central) -"buP" = (/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/supply/storage) -"buQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/supply/storage) -"buR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor,/area/supply/storage) -"buS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "browncorner"; dir = 4},/area/supply/storage) -"buT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/supply/storage) -"buU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"buV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"buW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/supply/storage) -"buX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"buY" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 20; pixel_x = 2; pixel_y = 2},/obj/item/stack/sheet/glass/glass{amount = 10},/obj/item/device/multitool,/turf/simulated/floor,/area/supply/storage) -"buZ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #1"},/obj/machinery/bot/mulebot{home_destination = "QM #1"; suffix = "#1"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/supply/storage) -"bva" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/supply/storage) -"bvb" = (/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor,/area/supply/storage) -"bvc" = (/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/supply/storage) -"bvd" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/supply/storage) -"bve" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bvf" = (/turf/simulated/wall,/area/derelictparts/fsderelict) -"bvg" = (/obj/structure/closet/crate,/obj/item/weapon/hemostat,/obj/item/weapon/light/tube,/obj/item/weapon/stock_parts/console_screen,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bvh" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bvi" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fsderelict) -"bvj" = (/obj/item/weapon/camera_assembly,/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bvk" = (/obj/item/weapon/storage/box,/obj/item/clothing/glasses/meson,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bvl" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bvm" = (/obj/item/weapon/caution/cone,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bvn" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'CONSTRUCTION ZONE'."; name = "\improper CONSTRUCTION ZONE"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bvo" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bvp" = (/obj/machinery/atmospherics/unary/tank/air{dir = 1; initialize_directions = 0; level = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bvq" = (/obj/machinery/atmospherics/unary/tank/air{dir = 1; initialize_directions = 0; level = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bvr" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bvs" = (/obj/structure/closet,/obj/item/weapon/circuitboard/air_alarm,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bvt" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bvu" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bvv" = (/obj/structure/rack,/obj/item/weapon/spacecash,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bvw" = (/obj/structure/table,/obj/item/weapon/newspaper,/obj/item/device/radio,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bvx" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bvy" = (/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bvz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/science/xenobiology) -"bvA" = (/obj/structure/table,/obj/item/weapon/aiModule/standard/quarantine,/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bvB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bvC" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bvD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bvE" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bvF" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bvG" = (/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bvH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bvI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/science/robotics) -"bvJ" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "grimy"},/area/crew_quarters/bar) -"bvK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bvL" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bvM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bvN" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bvO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bvP" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bvQ" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/hallway/primary/central) -"bvR" = (/obj/machinery/computer/shuttle_control/mining,/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"bvS" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/docking_port/shuttle{dir = 4},/turf/simulated/shuttle/plating,/area/shuttle/mining/station) -"bvT" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access = null; req_access_txt = "0"; req_one_access_txt = "47;48"},/obj/structure/docking_port/destination/mining/station{dir = 8},/turf/simulated/floor/plating,/area/hallway/primary/central) -"bvU" = (/turf/simulated/floor/plating,/area/hallway/primary/central) -"bvV" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access = null; req_access_txt = "0"; req_one_access_txt = "47;48"},/turf/simulated/floor/plating,/area/hallway/primary/central) -"bvW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/hallway/primary/central) -"bvX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/supply/storage) -"bvY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"bvZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/supply/storage) -"bwa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/supply/storage) -"bwb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/supply/storage) -"bwc" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor,/area/supply/storage) -"bwd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/supply/storage) -"bwe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/supply/storage) -"bwf" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/supply/storage) -"bwg" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #1"},/obj/machinery/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/supply/storage) -"bwh" = (/obj/machinery/door_control{id_tag = "QMLoaddoor2"; name = "Loading Doors"; pixel_x = 24; pixel_y = -8},/obj/machinery/door_control{id_tag = "QMLoaddoor"; name = "Loading Doors"; pixel_x = 24; pixel_y = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/supply/storage) -"bwi" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bwj" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bwk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bwl" = (/obj/machinery/door/airlock/engineering{name = "Construction Area"; req_access_txt = "32"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bwm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bwn" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/device/multitool,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bwo" = (/obj/machinery/power/apc{cell_type = 0; dir = 2; icon_state = "apc1"; opened = 1; pixel_x = 0; pixel_y = -24},/obj/structure/cable,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bwp" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "rnd"; name = "research lab shutters"},/obj/machinery/door/window{dir = 1; name = "Research and Development Desk"; req_access_txt = "7"},/obj/item/device/deskbell/signaler/rnd{pixel_x = 3; pixel_y = -3},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor/plating,/area/science/lab) -"bwq" = (/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bwr" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bws" = (/obj/structure/window/barricade/full,/obj/effect/decal/warning_stripes{icon_state = "unloading"},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bwt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall,/area/derelictparts/fsderelict) -"bwu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/security/vacantoffice) -"bwv" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/field_generator,/obj/machinery/light{dir = 8},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bww" = (/obj/machinery/particle_accelerator/control_box{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bwx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bwy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bwz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwC" = (/obj/structure/table,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bwD" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwE" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/mouse/brown,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bwH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bwJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot{icon_state = "gib3"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bwQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bwR" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "THE EYE SEES ALL"; network = list("SS13","RD")},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bwS" = (/turf/simulated/wall/r_wall,/area/derelictparts/asderelict) -"bwT" = (/obj/structure/table,/obj/item/weapon/aiModule/freeform/core,/obj/item/weapon/aiModule/freeform/core,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bwU" = (/obj/structure/table,/obj/item/weapon/aiModule/core/antimov,/obj/item/weapon/aiModule/targetted/oneHuman,/obj/machinery/door/window{dir = 1; name = "High-Risk Modules"; req_access_txt = "30"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bwV" = (/obj/structure/table,/obj/item/weapon/aiModule/standard/oxygen,/obj/item/weapon/aiModule/purge,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai_upload) -"bwW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bwX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bwY" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bwZ" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "AIcore"; name = "AI blast door"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxa" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bxc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "AI Chamber East"; dir = 8; network = list("RD")},/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxd" = (/obj/machinery/ai_status_display,/turf/simulated/wall/r_wall,/area/science/robotics) -"bxe" = (/obj/structure/table,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/item/device/mmi/posibrain,/turf/simulated/floor,/area/science/robotics) -"bxf" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/science/robotics) -"bxg" = (/obj/machinery/r_n_d/fabricator/mech,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/science/robotics) -"bxh" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bxi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bxj" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor{icon_state = "whiteredcorner"},/area/science/robotics) -"bxk" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/science/robotics) -"bxl" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"bxm" = (/obj/structure/ore_box,/obj/machinery/light/small{dir = 4},/turf/simulated/shuttle/floor,/area/shuttle/mining/station) -"bxn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/full/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bxo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"bxp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/supply/storage) -"bxq" = (/obj/machinery/computer/supplycomp,/turf/simulated/floor,/area/supply/storage) -"bxr" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor,/area/supply/storage) -"bxs" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #3"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/supply/storage) -"bxt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/supply/storage) -"bxu" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bxv" = (/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bxw" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bxx" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bxy" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bxz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bxA" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bxB" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bxC" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 8},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bxD" = (/obj/structure/particle_accelerator/power_box{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bxE" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/mob/living/simple_animal/mouse/gray,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bxI" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bxK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxM" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxN" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxQ" = (/obj/machinery/atmospherics/binary/valve{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/meter,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxT" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxU" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bxV" = (/obj/machinery/turret,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/airless{icon_state = "circuit"},/area/turret_protected/ai) -"bxW" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bxZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bya" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"byb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"byc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"byd" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bye" = (/obj/structure/table,/obj/item/stack/sheet/glass/glass{amount = 20; pixel_x = -3; pixel_y = 6},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/machinery/alarm{dir = 4; pixel_x = -25},/turf/simulated/floor,/area/science/robotics) -"byf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/science/robotics) -"byg" = (/obj/machinery/mineral/output,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/science/robotics) -"byh" = (/obj/item/weapon/stool,/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor{icon_state = "whitered"; dir = 4},/area/science/robotics) -"byi" = (/obj/machinery/door/airlock/research{name = "Research and Development Lab"; req_access_txt = "7"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor/plating,/area/science/lab) -"byj" = (/turf/simulated/shuttle/wall{icon_state = "swall_s5"},/area/shuttle/mining/station) -"byk" = (/turf/simulated/shuttle/wall{icon_state = "swall_s9"},/area/shuttle/mining/station) -"byl" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor,/area/hallway/primary/central) -"bym" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/machinery/computer/shuttle_control/mining,/turf/simulated/floor,/area/hallway/primary/central) -"byn" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/hallway/primary/central) -"byo" = (/turf/simulated/floor{icon_state = "browncorner"; dir = 4},/area/hallway/primary/central) -"byp" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/supply/storage) -"byq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"byr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bys" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/supply/storage) -"byt" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/disposal) -"byu" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/turf/simulated/floor,/area/supply/storage) -"byv" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/supply/storage) -"byw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 8},/turf/simulated/floor,/area/supply/storage) -"byx" = (/obj/machinery/r_n_d/fabricator/mechanic_fab/autolathe,/turf/simulated/floor,/area/supply/storage) -"byy" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "QM #4"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/supply/storage) -"byz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"byA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"byB" = (/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor,/area/hallway/primary/central) -"byC" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/table,/obj/item/weapon/folder,/obj/item/weapon/pen,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"byD" = (/obj/structure/table,/obj/item/weapon/newspaper,/obj/item/trash/plate,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"byE" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"byF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/obj/structure/closet/crate,/obj/item/weapon/book/manual/engineering_construction,/obj/item/weapon/coin/silver,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"byG" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"byH" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"byI" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fsderelict) -"byJ" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/obj/effect/decal/cleanable/generic,/obj/item/stack/sheet/metal{amount = 15},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"byK" = (/obj/machinery/the_singularitygen{anchored = 0},/turf/simulated/floor/plating,/area/security/vacantoffice) -"byL" = (/obj/structure/particle_accelerator/end_cap{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"byM" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 4},/turf/simulated/floor/plating,/area/security/vacantoffice) -"byN" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 1},/obj/machinery/camera{c_tag = "Singularity Parts Storage"; dir = 1},/turf/simulated/floor/plating,/area/security/vacantoffice) -"byO" = (/obj/structure/particle_accelerator/particle_emitter/right,/obj/machinery/light,/turf/simulated/floor/plating,/area/security/vacantoffice) -"byP" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byR" = (/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byS" = (/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byT" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byU" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byV" = (/obj/item/weapon/lighter/random,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"byW" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"byX" = (/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 4},/obj/machinery/light_construct/small{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt{pixel_x = 5; pixel_y = -7},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"byY" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"byZ" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/decal/remains/robot{icon_state = "gib5"},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"bza" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bzb" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bzc" = (/obj/machinery/atmospherics/unary/tank/air{dir = 1; initialize_directions = 0; level = 1},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bzd" = (/obj/structure/disposalpipe/segment,/obj/structure/closet,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bze" = (/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bzf" = (/obj/machinery/turret,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bzg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzh" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "AIcore"; name = "AI blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzk" = (/obj/machinery/camera{c_tag = "AI Chamber Lobby"; dir = 8; network = list("RD"); pixel_y = -7; view_range = 7},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bzl" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bzm" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/cable_coil,/obj/item/device/flash,/obj/item/device/flash,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/turf/simulated/floor,/area/science/robotics) -"bzn" = (/turf/simulated/floor,/area/science/robotics) -"bzo" = (/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bzp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/full/reinforced,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bzq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/full/reinforced,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/primary/central) -"bzr" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -27},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/supply/storage) -"bzs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/merch,/turf/simulated/floor,/area/supply/storage) -"bzt" = (/obj/machinery/computer/ordercomp,/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor,/area/supply/storage) -"bzu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/supply/storage) -"bzv" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/pen/red,/obj/structure/table,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/simulated/floor,/area/supply/storage) -"bzw" = (/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table,/obj/machinery/status_display{pixel_y = -32; supply_display = 1},/obj/machinery/camera{c_tag = "Cargo Bay West"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"bzx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor,/area/supply/storage) -"bzy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/supply/storage) -"bzz" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/supply/storage) -"bzA" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (WEST)"; icon_state = "loading_area"; dir = 8},/turf/simulated/floor,/area/supply/storage) -"bzB" = (/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad2"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/supply/storage) -"bzC" = (/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id_tag = "QMLoaddoor2"; name = "supply dock loading door"; opacity = 1},/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad2"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/supply/storage) -"bzD" = (/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad2"},/turf/simulated/floor/plating,/area/supply/storage) -"bzE" = (/obj/machinery/conveyor{dir = 4; id_tag = "QMLoad2"},/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id_tag = "QMLoaddoor2"; name = "supply dock loading door"; opacity = 1},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/supply/storage) -"bzF" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bzG" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bzH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bzI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bzJ" = (/obj/item/weapon/crowbar,/obj/item/weapon/stock_parts/scanning_module,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzK" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzL" = (/obj/item/stack/sheet/cardboard,/obj/item/weapon/storage/fancy/matchbox,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bzM" = (/obj/effect/decal/cleanable/generic,/mob/living/carbon/monkey,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzN" = (/obj/item/device/analyzer,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzO" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fsderelict) -"bzP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzQ" = (/obj/item/device/radio,/obj/item/device/flashlight,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bzR" = (/obj/item/stack/sheet/cardboard,/obj/machinery/light_construct/small{dir = 4},/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler{pixel_x = 5; pixel_y = 3},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bzS" = (/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bzT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bzU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/derelictparts/asderelict) -"bzV" = (/obj/structure/table,/obj/map/spawner/maint,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bzW" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bzX" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bzY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bzZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/stock_parts/matter_bin,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bAa" = (/obj/item/weapon/cigbutt,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bAb" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bAc" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/atmospherics/unary/vent_pump,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bAd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bAe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bAf" = (/obj/machinery/turret{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bAg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bAh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bAi" = (/obj/machinery/turret{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bAj" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bAk" = (/obj/structure/table,/obj/item/device/aicard,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bAl" = (/obj/structure/table,/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/weapon/storage/belt/utility,/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_x = -30},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/science/robotics) -"bAm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/science/robotics) -"bAn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/science/robotics) -"bAo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/science/robotics) -"bAp" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bAq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bAr" = (/obj/machinery/door_control{id_tag = "robotics"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bAs" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/hallway/primary/central) -"bAt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/hallway/primary/central) -"bAu" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/hallway/primary/central) -"bAv" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/hallway/primary/central) -"bAw" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/hallway/primary/central) -"bAx" = (/obj/machinery/light{dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "browncorner"; dir = 4},/area/hallway/primary/central) -"bAy" = (/turf/simulated/wall,/area/maintenance/apmaint) -"bAz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/maintenance/apmaint) -"bAA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bAB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/apmaint) -"bAC" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor,/area/supply/storage) -"bAD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/photocopier,/turf/simulated/floor{icon_state = "browncorner"},/area/supply/storage) -"bAE" = (/turf/simulated/floor{icon_state = "brown"},/area/supply/storage) -"bAF" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/machinery/light,/turf/simulated/floor{icon_state = "browncorner"; dir = 8},/area/supply/storage) -"bAG" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"bAH" = (/obj/machinery/door_control{id_tag = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/turf/simulated/floor,/area/supply/storage) -"bAI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/poster{icon_state = "poster10"; pixel_y = -32},/turf/simulated/floor,/area/supply/storage) -"bAJ" = (/obj/machinery/camera{c_tag = "Cargo Bay South"; dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -27},/turf/simulated/floor,/area/supply/storage) -"bAK" = (/obj/machinery/light,/turf/simulated/floor,/area/supply/storage) -"bAL" = (/obj/machinery/status_display{pixel_y = -30; supply_display = 1},/turf/simulated/floor,/area/supply/storage) -"bAM" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id_tag = "QMLoad2"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/supply/storage) -"bAN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/supply/storage) -"bAO" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bAP" = (/obj/item/weapon/cautery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAQ" = (/obj/item/weapon/cigbutt,/obj/machinery/light_construct/small{dir = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/mob/living/carbon/monkey,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAR" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAS" = (/obj/item/device/taperecorder,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAT" = (/obj/structure/closet/crate,/obj/item/mounted/poster,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/circuitboard/mechfab,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAU" = (/obj/item/weapon/wirecutters,/obj/machinery/light_construct/small{dir = 8},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bAV" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAW" = (/obj/item/weapon/circuitboard/air_alarm,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bAX" = (/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bAY" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/unary/portables_connector,/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/security/vacantoffice) -"bAZ" = (/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area) -"bBa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/wall,/area/derelictparts/asderelict) -"bBb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bBc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/power/apc{cell_type = 0; dir = 1; icon_state = "apc1"; opened = 1; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/item/weapon/cell/high,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bBd" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bBe" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/generic,/obj/effect/decal/remains/human{desc = "They look like human remains. It smells like pain and dissapointment."},/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 4},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibmid2"},/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/asderelict) -"bBf" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/asderelict) -"bBg" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bBh" = (/obj/effect/decal/remains/robot{icon_state = "gibdown"},/obj/item/weapon/screwdriver,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bBi" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bBj" = (/obj/structure/grille/broken,/obj/item/stack/rods,/obj/structure/urinal{desc = "The HU-452, an experimental urinal. This one is somehow more yellow than an assistant's teeth."; pixel_y = 32},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/ash,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bBk" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/structure/urinal{desc = "The HU-452, an experimental urinal. This one is somehow more yellow than an assistant's teeth."; pixel_y = 32},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bBl" = (/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/item/weapon/crowbar,/obj/structure/urinal{desc = "The HU-452, an experimental urinal. This one is somehow more yellow than an assistant's teeth."; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bBm" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/decal/cleanable/cobweb2,/obj/item/weapon/cigbutt{pixel_y = -4},/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/asderelict) -"bBn" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bBo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bBp" = (/obj/machinery/turret{dir = 1},/obj/machinery/camera{c_tag = "AI Chamber Antichamber"; dir = 8; network = list("RD"); pixel_y = -7; view_range = 7},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bBq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bBr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bBs" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor,/area/science/robotics) -"bBt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/science/robotics) -"bBu" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bBv" = (/obj/machinery/r_n_d/fabricator/circuit_imprinter,/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bBw" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHTL"; location = "CHBL"},/turf/simulated/floor,/area/hallway/primary/central) -"bBx" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HoPR"; location = "CHBR"},/turf/simulated/floor,/area/hallway/primary/central) -"bBy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/hallway/primary/central) -"bBz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/device/radio,/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 4},/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bBA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/wrapsortjunction{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bBB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/sink/kitchen{pixel_y = 28},/obj/effect/decal/cleanable/greenglow,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bBC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/supply/storage) -"bBD" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/turf/simulated/floor,/area/supply/storage) -"bBE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/supply/storage) -"bBF" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/library) -"bBG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/supply/storage) -"bBH" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bBI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/weapon/tank/oxygen,/obj/item/device/radio,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBJ" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bBK" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBL" = (/obj/item/device/assembly/signaler{pixel_x = 7; pixel_y = -4},/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBM" = (/obj/item/weapon/broken_bottle,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bBN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bBO" = (/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBP" = (/obj/item/weapon/cigbutt,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBQ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot,/obj/structure/closet,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bBS" = (/obj/machinery/mineral/stacking_machine{id_tag = "recycling_stacker"; in_dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/disposal) -"bBT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bBU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bBV" = (/obj/structure/closet,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bBW" = (/obj/structure/rack,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bBX" = (/obj/structure/closet,/obj/item/weapon/circuitboard/telecomms/hub,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bBY" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bBZ" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/reagent_containers/glass/rag{desc = "For cleaning up messes. This one is a bit crusty..."; name = "crusty rag"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bCa" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bCb" = (/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bCc" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bCd" = (/obj/item/trash/sosjerky,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/asderelict) -"bCe" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/light_construct/small{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bCf" = (/obj/structure/disposalpipe/segment,/obj/structure/closet,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/belt/utility,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/circuitboard/air_alarm,/obj/item/weapon/stock_parts/manipulator,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bCg" = (/obj/item/weapon/stock_parts/scanning_module{pixel_x = -10; pixel_y = 8},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bCh" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "AIcore"; name = "AI blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bCi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/turret_protected/ai) -"bCj" = (/obj/machinery/power/battery/smes{capacity = 5e+008; charge = 5e+008; name = "experimental power storage unit"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bCk" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bCl" = (/obj/machinery/turret,/obj/machinery/alarm{pixel_y = 22},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bCm" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/turf/simulated/floor,/area/science/robotics) -"bCn" = (/turf/simulated/floor{icon_state = "whitehall"},/area/science/robotics) -"bCo" = (/obj/structure/window/reinforced/tinted{dir = 4},/turf/simulated/floor,/area/science/robotics) -"bCp" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bCq" = (/obj/machinery/computer/rdconsole/robotics,/obj/structure/closet/hydrant{pixel_x = 32},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bCr" = (/turf/simulated/floor{dir = 10; icon_state = "purple"},/area/hallway/primary/central) -"bCs" = (/turf/simulated/floor{icon_state = "purple"},/area/hallway/primary/central) -"bCt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "purple"},/area/hallway/primary/central) -"bCu" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area (NORTH)"; icon_state = "loading_area"; dir = 1},/turf/simulated/floor{icon_state = "purple"},/area/hallway/primary/central) -"bCv" = (/obj/machinery/camera{c_tag = "Central Hall South West"; dir = 1},/turf/simulated/floor{dir = 8; icon_state = "purplecorner"},/area/hallway/primary/central) -"bCw" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/hallway/primary/central) -"bCx" = (/obj/machinery/light,/obj/machinery/alarm{dir = 1; pixel_y = -23},/turf/simulated/floor,/area/hallway/primary/central) -"bCy" = (/obj/machinery/vending/discount,/obj/machinery/camera{c_tag = "Central Hall South East"; dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/hallway/primary/central) -"bCz" = (/obj/machinery/status_display{layer = 4; pixel_y = -32},/obj/machinery/vending/groans,/turf/simulated/floor{icon_state = "dark"},/area/hallway/primary/central) -"bCA" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "dark"},/area/hallway/primary/central) -"bCB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/supply/storage) -"bCF" = (/obj/structure/disposaloutlet,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/supply/storage) -"bCG" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = 20},/turf/simulated/floor,/area/supply/storage) -"bCH" = (/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/requests_console{department = "Store 1"; departmentType = 2; pixel_y = 30},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/supply/storage) -"bCI" = (/obj/structure/table,/obj/item/stack/package_wrap/gift{pixel_y = 7},/obj/item/stack/package_wrap/gift{pixel_y = 7},/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/obj/item/stack/package_wrap,/turf/simulated/floor,/area/supply/storage) -"bCJ" = (/obj/structure/table,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/supply/storage) -"bCK" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/power_control,/obj/item/weapon/cell{maxcharge = 2000},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bCL" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bCM" = (/obj/machinery/door_control{id_tag = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -1; pixel_y = 24; req_access_txt = "31"},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bCN" = (/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bCO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/structure/closet/crate/internals,/obj/item/weapon/tank/oxygen,/obj/item/weapon/tank/emergency_oxygen,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCP" = (/obj/item/device/t_scanner,/obj/item/weapon/screwdriver,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCQ" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCR" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bCS" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/air,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bCT" = (/obj/structure/bed/chair,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bCU" = (/obj/structure/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/wrench,/obj/item/device/t_scanner,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fsderelict) -"bCV" = (/obj/item/weapon/lighter/random,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bCW" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bCX" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bCY" = (/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/fsderelict) -"bCZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/filingcabinet,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bDa" = (/obj/item/seeds/deathnettleseed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bDb" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bDc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/fsderelict) -"bDd" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/fsderelict) -"bDe" = (/turf/simulated/wall/r_wall,/area/construction/mommi_nest) -"bDf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/construction/mommi_nest) -"bDg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/construction/mommi_nest) -"bDh" = (/obj/machinery/door/airlock/hatch{req_access_txt = "16"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bDi" = (/obj/machinery/light_construct/small{dir = 1},/obj/item/weapon/newspaper,/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 4},/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/asderelict) -"bDj" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bDk" = (/obj/item/trash/candy,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/asderelict) -"bDl" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bDm" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"bDn" = (/obj/effect/decal/cleanable/generic,/obj/item/weapon/reagent_containers/spray,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bDo" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot,/obj/item/weapon/stock_parts/capacitor{pixel_x = 8; pixel_y = -8},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bDp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/closet/crate,/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/device/flashlight/flare,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bDq" = (/obj/machinery/camera/motion{c_tag = "Outer AI Core West"; dir = 8; name = "motion-sensitive security camera"; network = list("RD")},/turf/space,/area) -"bDr" = (/obj/machinery/flasher{id_tag = "AI"; pixel_x = -7; pixel_y = -24},/obj/machinery/door/window{base_state = "right"; dir = 8; icon_state = "right"; name = "AI Core Door"; req_access_txt = "16"},/obj/machinery/turretid{enabled = 0; name = "AI Core turret control"; pixel_x = -4; pixel_y = 24},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bDs" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door_control{id_tag = "AIcore"; name = "AI Core Lockdown"; pixel_x = -22; pixel_y = 24; range = 5; req_access_txt = "29"},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bDt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/window{dir = 4; name = "AI Core Door"; req_access_txt = "16"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bDu" = (/obj/machinery/light_construct/small{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bDv" = (/obj/structure/window/reinforced/tinted{dir = 8},/obj/structure/table,/obj/item/device/mmi,/obj/item/device/mmi,/turf/simulated/floor{icon_state = "whitehall"; dir = 4},/area/science/robotics) -"bDw" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bDx" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bDy" = (/obj/machinery/camera{c_tag = "Robotics Lab South"; dir = 1; network = list("SS13","RD")},/obj/structure/window/reinforced/tinted{dir = 4},/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/turf/simulated/floor{dir = 8; icon_state = "whitehall"},/area/science/robotics) -"bDz" = (/obj/structure/closet/wardrobe/robotics_black,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bDA" = (/turf/simulated/wall/r_wall,/area/science/chargebay) -"bDB" = (/obj/machinery/door/airlock/research{id_tag = "ScienceFoyer"; name = "Research Division Access"; req_access_txt = "0"; req_one_access_txt = "16;47"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bDC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/science/chargebay) -"bDD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -27},/turf/simulated/floor{icon_state = "white"},/area/science/hallway) -"bDE" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "shop2"; name = "shop privacy shutters"},/obj/structure/table/reinforced,/turf/simulated/floor,/area/maintenance/apmaint) -"bDF" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "shop2"; name = "shop privacy shutters"},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/maintenance/apmaint) -"bDG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/stack/rods,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDI" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDJ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/window{name = "Mail"; req_access_txt = "50"},/turf/simulated/floor/plating,/area/supply/storage) -"bDK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/supply/storage) -"bDL" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bDM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bDN" = (/obj/machinery/camera{c_tag = "Cargo Delivery Line"; dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/supply/storage) -"bDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/supply/storage) -"bDP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bDQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bDR" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bDS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bDT" = (/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDU" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDV" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot,/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bDW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bDX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating/airless,/area/derelictparts/fsderelict) -"bDY" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32},/turf/simulated/wall/r_wall,/area/construction/mommi_nest) -"bDZ" = (/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEa" = (/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "MoMMI Nest APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEb" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/machinery/light_switch{pixel_x = 4; pixel_y = 27},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/camera{c_tag = "MoMMI nest north"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEe" = (/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEf" = (/obj/machinery/space_heater,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (WEST)"; icon_state = "warning_corner"; dir = 8},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bEg" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bEh" = (/obj/structure/table,/obj/item/weapon/circuitboard/airlock{pixel_x = 4; pixel_y = 9},/obj/item/weapon/circuitboard/airlock,/obj/item/weapon/circuitboard/fire_alarm{pixel_x = -5; pixel_y = -6},/obj/item/weapon/circuitboard/air_alarm{pixel_x = -5; pixel_y = 3},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bEi" = (/obj/structure/table,/obj/item/weapon/circuitboard/autolathe{pixel_x = -6},/obj/item/weapon/stock_parts/micro_laser{pixel_x = 8; pixel_y = 7},/obj/item/weapon/stock_parts/capacitor{pixel_x = 4; pixel_y = -2},/obj/item/weapon/stock_parts/capacitor{pixel_x = -6; pixel_y = 10},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bEj" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bEk" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"bEl" = (/obj/machinery/light/small,/obj/effect/decal/remains/robot{icon_state = "gib7"},/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bEm" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/cardboard,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/asderelict) -"bEn" = (/obj/structure/table,/obj/item/weapon/soap{desc = "Life unfortunately found a way."; name = "mouldy soap"},/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/asderelict) -"bEo" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bEp" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bEq" = (/obj/effect/landmark/start{name = "AI"},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = -30; pixel_y = -28},/obj/item/device/radio/intercom{broadcasting = 1; freerange = 1; name = "Common Channel"; pixel_x = 0; pixel_y = -25},/obj/item/device/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = -27; pixel_y = 0},/obj/item/device/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = 27; pixel_y = 0},/obj/machinery/light_switch{pixel_x = 22; pixel_y = -24},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bEr" = (/turf/simulated/wall/r_wall,/area/maintenance/port) -"bEs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/science/robotics) -"bEt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_mining{name = "Mining Delivery and Storage"; req_access_txt = "0"; req_one_access_txt = "48;50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/supply/miningdelivery) -"bEu" = (/turf/simulated/floor,/area/science/chargebay) -"bEv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/obj/machinery/door_control{id_tag = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor,/area/science/chargebay) -"bEw" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/science/chargebay) -"bEx" = (/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/science/chargebay) -"bEy" = (/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/central) -"bEz" = (/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/central) -"bEA" = (/obj/structure/table,/turf/simulated/floor{icon_state = "arrival"; dir = 1},/area/maintenance/apmaint) -"bEB" = (/obj/machinery/requests_console{department = "Store 2"; departmentType = 2; pixel_x = -32; pixel_y = 30},/turf/simulated/floor,/area/maintenance/apmaint) -"bEC" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/maintenance/apmaint) -"bED" = (/obj/machinery/door_control{id_tag = "shop2"; name = "Privacy Shutters"; pixel_x = 25},/turf/simulated/floor,/area/maintenance/apmaint) -"bEE" = (/obj/item/weapon/coin/silver{pixel_x = 7; pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = -6; pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5; pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bEF" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/hydroponics/soil{pixel_y = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bEG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bEH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bEI" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bEJ" = (/obj/machinery/conveyor_switch/oneway{id_tag = "packageSort2"},/turf/simulated/floor,/area/supply/storage) -"bEK" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor,/area/supply/storage) -"bEL" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor,/area/supply/storage) -"bEM" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bEN" = (/obj/structure/closet/crate/internals,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bEO" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bEP" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bEQ" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/obj/item/weapon/circuitboard/airlock,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bER" = (/turf/simulated/wall,/area/maintenance/disposal) -"bES" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id_tag = "trash"; name = "disposal bay door"; opacity = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area) -"bET" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area) -"bEU" = (/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id_tag = "trash"; name = "disposal bay door"; opacity = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area) -"bEV" = (/obj/machinery/door/airlock/hatch{req_access_txt = "16"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEW" = (/obj/machinery/camera{c_tag = "MoMMI nest airlock"; dir = 1},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEX" = (/obj/effect/decal/warning_stripes{icon_state = "no"},/obj/effect/decal/warning_stripes{icon_state = "air"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bEZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bFa" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bFb" = (/obj/item/stack/rods,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bFc" = (/obj/item/weapon/stool,/obj/effect/decal/cleanable/generic,/obj/effect/decal/remains/robot{icon_state = "gib7"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bFd" = (/obj/structure/table,/obj/item/device/assembly/igniter,/obj/item/device/assembly/prox_sensor{pixel_x = 7; pixel_y = -3},/obj/item/weapon/screwdriver,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bFe" = (/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 4},/obj/machinery/light_construct/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/obj/map/spawner/maint,/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bFf" = (/obj/machinery/door/airlock{name = "Unit 4"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bFg" = (/obj/item/weapon/cigbutt,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/asderelict) -"bFh" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/machinery/space_heater,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bFi" = (/obj/structure/closet/emcloset,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bFj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bFk" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bFl" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bFm" = (/obj/machinery/camera/motion{c_tag = "Outer AI Core East"; dir = 4; name = "motion-sensitive security camera"; network = list("RD")},/turf/space,/area) -"bFn" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/port) -"bFo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/port) -"bFp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bFq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bFr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/port) -"bFs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/science/chargebay) -"bFt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/turf/simulated/floor,/area/science/chargebay) -"bFu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/science/chargebay) -"bFv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/science/chargebay) -"bFw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/science/chargebay) -"bFx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/science/chargebay) -"bFy" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor,/area/science/chargebay) -"bFz" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor,/area/science/chargebay) -"bFA" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bFB" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/port) -"bFC" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bFD" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/turf/simulated/floor,/area/maintenance/apmaint) -"bFE" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor,/area/maintenance/apmaint) -"bFF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/maintenance/apmaint) -"bFG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/maintenance/apmaint) -"bFH" = (/obj/machinery/portable_atmospherics/hydroponics/soil{pixel_y = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bFI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bFJ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bFK" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/supply/storage) -"bFL" = (/obj/machinery/conveyor{dir = 4; id_tag = "packageSort2"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/supply/storage) -"bFM" = (/obj/machinery/conveyor{dir = 4; id_tag = "packageSort2"},/obj/machinery/door/window{dir = 1; name = "Delivery Line"; req_access_txt = "50"},/turf/simulated/floor/plating,/area/supply/storage) -"bFN" = (/obj/machinery/conveyor{dir = 4; id_tag = "packageSort2"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/supply/storage) -"bFO" = (/obj/machinery/conveyor{dir = 4; id_tag = "packageSort2"},/obj/structure/window/reinforced{dir = 1},/obj/structure/plasticflaps,/turf/simulated/floor/plating,/area/supply/storage) -"bFP" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating,/area/supply/storage) -"bFQ" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bFR" = (/obj/structure/closet/crate,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bFS" = (/obj/structure/closet/crate,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bFT" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bFU" = (/obj/machinery/conveyor{dir = 5; id_tag = "garbage"},/turf/simulated/floor,/area/maintenance/disposal) -"bFV" = (/obj/machinery/conveyor{dir = 4; id_tag = "garbage"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/disposal) -"bFW" = (/obj/machinery/conveyor{dir = 4; id_tag = "garbage"},/turf/simulated/floor,/area/maintenance/disposal) -"bFX" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/disposal) -"bFY" = (/obj/machinery/conveyor{dir = 1; id_tag = "garbage"},/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/disposal) -"bFZ" = (/obj/machinery/camera{c_tag = "Dorm North Bathroom"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bGa" = (/obj/machinery/camera{c_tag = "Theatre Backstage"; dir = 4},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bGb" = (/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id_tag = "trash"; name = "disposal bay door"; opacity = 1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area) -"bGc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area) -"bGd" = (/obj/machinery/door/poddoor{density = 1; icon_state = "pdoor1"; id_tag = "trash"; name = "disposal bay door"; opacity = 1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area) -"bGe" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bGf" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bGg" = (/obj/item/weapon/shard{icon_state = "small"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bGh" = (/obj/structure/table,/obj/item/trash/snack_bowl,/obj/item/trash/candy,/obj/item/trash/chips,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bGi" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/item/weapon/wrench,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bGj" = (/obj/structure/bed,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bGk" = (/obj/structure/table,/obj/item/weapon/coin/silver,/obj/item/weapon/pen,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bGl" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bGm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/pen,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bGn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/mob/living/simple_animal/mouse/gray,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bGo" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bGp" = (/turf/simulated/wall/r_wall,/area/derelictparts/port) -"bGq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bGr" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera/all{c_tag = "AI Chamber"; dir = 2; pixel_x = 12},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bGs" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bGt" = (/obj/structure/rack,/obj/item/device/assembly/signaler,/turf/simulated/floor/plating,/area/maintenance/port) -"bGu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/port) -"bGv" = (/turf/simulated/wall,/area/maintenance/port) -"bGw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/obj/machinery/door/airlock/maintenance{req_access_txt = "0"},/turf/simulated/floor/plating,/area/maintenance/port) -"bGx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/science/chargebay) -"bGy" = (/obj/machinery/mech_bay_recharge_port,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/turf/simulated/floor/plating,/area/science/chargebay) -"bGz" = (/obj/machinery/mech_bay_recharge_floor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/science/chargebay) -"bGA" = (/obj/machinery/computer/mech_bay_power_console,/turf/simulated/floor,/area/science/chargebay) -"bGB" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/science/chargebay) -"bGC" = (/obj/machinery/mech_bay_recharge_port,/turf/simulated/floor/plating,/area/science/chargebay) -"bGD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/mech_bay_recharge_floor,/turf/simulated/floor,/area/science/chargebay) -"bGE" = (/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bGF" = (/turf/simulated/floor,/area/hallway/primary/port) -"bGG" = (/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bGH" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/maintenance/apmaint) -"bGI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor,/area/maintenance/apmaint) -"bGJ" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/maintenance/apmaint) -"bGK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/maintenance/apmaint) -"bGL" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bGM" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bGN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bGO" = (/obj/structure/closet,/obj/item/mounted/poster,/obj/item/mounted/poster,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bGP" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/supply/storage) -"bGQ" = (/obj/structure/closet/crate/medical,/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bGR" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/stack/sheet/cardboard,/obj/item/stack/rods{amount = 50},/turf/simulated/floor{icon_state = "floorgrime"},/area/supply/storage) -"bGS" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bGT" = (/obj/machinery/conveyor{dir = 1; id_tag = "garbage"},/turf/simulated/floor,/area/maintenance/disposal) -"bGU" = (/obj/machinery/mineral/processing_unit/recycle{id_tag = "recycling_furnace"; in_dir = 8; out_dir = 4},/turf/simulated/floor,/area/maintenance/disposal) -"bGV" = (/obj/structure/closet/boxinggloves,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bGW" = (/obj/structure/closet/lasertag/blue,/obj/machinery/camera{c_tag = "Fitness Room"},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bGX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Fitness Room South"; dir = 1},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"bGY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area) -"bGZ" = (/obj/effect/landmark/start{name = "Mobile MMI"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bHa" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bHb" = (/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bHc" = (/obj/machinery/light/small,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bHd" = (/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bHe" = (/obj/structure/closet/crate,/obj/item/weapon/stock_parts/matter_bin{pixel_x = -4; pixel_y = 4},/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/micro_laser{pixel_x = 6},/obj/item/weapon/stock_parts/micro_laser{pixel_x = 2; pixel_y = -6},/obj/item/weapon/stock_parts/manipulator{pixel_x = -7; pixel_y = 3},/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator{pixel_x = -4; pixel_y = -2},/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bHf" = (/obj/machinery/light_construct/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/vomit,/obj/item/weapon/broken_bottle,/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bHg" = (/obj/machinery/door/airlock{name = "Unit 5"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bHh" = (/obj/structure/grille/broken,/obj/item/stack/rods,/obj/effect/decal/remains/robot{icon_state = "gibdown"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bHi" = (/obj/effect/decal/cleanable/generic,/obj/machinery/light_construct/small{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bHj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/obj/effect/decal/cleanable/crayon/fuckyou,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bHk" = (/turf/simulated/wall,/area/derelictparts/port) -"bHl" = (/obj/machinery/turret{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/turret_protected/ai) -"bHm" = (/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/turret_protected/ai) -"bHn" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"bHo" = (/obj/structure/closet/crate,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/coin/silver,/turf/simulated/floor/plating,/area/maintenance/port) -"bHp" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/grille/broken,/obj/item/stack/sheet/metal,/turf/simulated/floor/plating,/area/maintenance/port) -"bHq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/port) -"bHr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/plating,/area/maintenance/port) -"bHs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating,/area/maintenance/port) -"bHt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/science/chargebay) -"bHu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bHv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bHw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bHx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/light,/turf/simulated/floor,/area/science/chargebay) -"bHy" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bHz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Mech Bay"; dir = 1},/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bHA" = (/turf/simulated/floor/bluegrid,/area/science/chargebay) -"bHB" = (/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bHC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/hallway/primary/port) -"bHD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bHE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/apmaint) -"bHF" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/maintenance/apmaint) -"bHG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/machinery/camera{c_tag = "Shop 2"; dir = 1},/turf/simulated/floor,/area/maintenance/apmaint) -"bHH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/maintenance/apmaint) -"bHI" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHJ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/maintenance/apmaint) -"bHL" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHM" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHN" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHO" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHP" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHQ" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHR" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/maintenance/apmaint) -"bHS" = (/obj/structure/rack,/obj/item/device/flashlight,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bHT" = (/obj/machinery/sorting_machine/recycling{filter_dir = 4; input_dir = 2; output_dir = 1},/turf/simulated/floor,/area/maintenance/disposal) -"bHU" = (/obj/machinery/conveyor{dir = 1; id_tag = "garbage"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/maintenance/disposal) -"bHV" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/obj/machinery/computer/smelting{name = "Recycling Furnace Console"; smelter_tag = "recycling_furnace"},/turf/simulated/floor,/area/maintenance/disposal) -"bHW" = (/obj/item/weapon/stool,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/machinery/door/window{dir = 1; base_state = "right"},/turf/simulated/floor,/area/maintenance/disposal) -"bHX" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/obj/machinery/computer/stacking_unit{stacker_tag = "recycling_stacker"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/disposal) -"bHY" = (/obj/structure/sink{dir = 8; pixel_x = -11},/obj/machinery/camera{c_tag = "Dorm South Bathroom"; dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"bHZ" = (/obj/machinery/camera{c_tag = "Armory - Outside"},/turf/space,/area) -"bIa" = (/obj/machinery/door/window{dir = 1; req_access_txt = "30"},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bIb" = (/obj/machinery/computer/rdconsole/mommi,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bIc" = (/obj/machinery/r_n_d/fabricator/protolathe,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bId" = (/obj/machinery/r_n_d/fabricator/circuit_imprinter,/obj/structure/window/reinforced/plasma{dir = 1},/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bIe" = (/obj/structure/window/reinforced/plasma{dir = 1},/obj/machinery/media/jukebox/bar,/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bIf" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bIg" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/wall,/area/derelictparts/asderelict) -"bIh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/trash/chips,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bIi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bIj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bIk" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bIl" = (/obj/effect/decal/cleanable/vomit,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bIm" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall/r_wall,/area/derelictparts/port) -"bIn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/maintenance/port) -"bIo" = (/obj/effect/decal/remains/robot{icon_state = "gib5"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/port) -"bIp" = (/obj/item/weapon/stool,/obj/machinery/light/small{dir = 8},/mob/living/simple_animal/mouse/white,/turf/simulated/floor/plating,/area/maintenance/port) -"bIq" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"bIr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/port) -"bIs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bIt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"bIu" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance"; req_access_txt = "29"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/science/chargebay) -"bIv" = (/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bIw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/wall,/area/maintenance/apmaint) -"bIx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bID" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIF" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIG" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bII" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bIK" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/disposal) -"bIL" = (/obj/machinery/driver_button{id_tag = "trash"; pixel_x = -26; pixel_y = -6},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor,/area/maintenance/disposal) -"bIM" = (/turf/simulated/floor,/area/maintenance/disposal) -"bIN" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/maintenance/disposal) -"bIO" = (/obj/machinery/door/window{base_state = "right"; dir = 8; req_access_txt = "0"},/obj/effect/decal/warning_stripes{tag = "icon-loading_area"; icon_state = "loading_area"; dir = 2},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/disposal) -"bIP" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/disposal) -"bIQ" = (/turf/simulated/wall,/area/derelictparts/apderelict) -"bIR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bIS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bIT" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bIU" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/solar/panel{id_tag = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/fstarboard) -"bIV" = (/obj/machinery/camera{c_tag = "MoMMI nest south"; dir = 8; network = list("SS13","RD")},/turf/simulated/floor/engine,/area/construction/mommi_nest) -"bIW" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bIX" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/device/radio,/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bIY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/wirecutters,/obj/item/device/multitool,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/asderelict) -"bIZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bJa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bJb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bJc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/assembly/signaler{pixel_x = 5; pixel_y = 3},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bJd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bJe" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bJf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bJg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/assembly/prox_sensor,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bJh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bJi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/asderelict) -"bJj" = (/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bJk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bJl" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bJm" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bJn" = (/obj/machinery/turret{dir = 1},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor/airless{icon_state = "circuit"},/area/turret_protected/ai) -"bJo" = (/obj/machinery/camera/motion{c_tag = "Outer AI Core South"; name = "motion-sensitive security camera"; network = list("RD")},/turf/space,/area) -"bJp" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bJq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/port) -"bJr" = (/obj/machinery/space_heater,/obj/item/weapon/circuitboard/telecomms/server,/turf/simulated/floor/plating,/area/maintenance/port) -"bJs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bJt" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/port) -"bJu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/port) -"bJv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"bJw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/port) -"bJx" = (/obj/item/stack/rods,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"bJy" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/port) -"bJz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bJA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/primary/port) -"bJB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bJC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/closet/crate,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJL" = (/turf/simulated/wall,/area/crew_quarters/fitness) -"bJM" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction/Disposals{dir = 4; icon_state = "pipe-j2s"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/grille/broken,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/nmpi{tag = "icon-maintguide (NORTH)"; icon_state = "maintguide"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bJU" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall,/area/maintenance/disposal) -"bJV" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/simulated/wall,/area/maintenance/disposal) -"bJW" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor,/area/maintenance/disposal) -"bJX" = (/obj/machinery/light/small,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner"; icon_state = "warning_corner"; dir = 2},/turf/simulated/floor,/area/maintenance/disposal) -"bJY" = (/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/conveyor_switch/oneway{id_tag = "garbage"; name = "disposal coveyor"},/obj/effect/decal/warning_stripes{tag = "icon-warning (SOUTHEAST)"; icon_state = "warning"; dir = 6},/turf/simulated/floor,/area/maintenance/disposal) -"bJZ" = (/obj/effect/decal/cleanable/ash,/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bKa" = (/obj/item/stack/rods,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bKb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bKc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bKd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bKe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bKf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fstarboard) -"bKg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"bKh" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bKi" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bKj" = (/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bKk" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bKl" = (/obj/structure/table,/obj/item/weapon/storage/bag/plasticbag,/obj/item/weapon/storage/bag/plasticbag,/obj/item/weapon/storage/bag/plasticbag,/obj/item/weapon/storage/bag/plasticbag,/obj/item/weapon/storage/bag/plasticbag,/obj/item/weapon/storage/bag/plasticbag,/turf/simulated/floor/bluegrid,/area/construction/mommi_nest) -"bKm" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 16},/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/asderelict) -"bKn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bKo" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bKp" = (/obj/item/stack/sheet/metal{amount = 23},/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bKq" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bKr" = (/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/asderelict) -"bKs" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bKt" = (/obj/item/clothing/gloves/boxing,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/asderelict) -"bKu" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/port) -"bKv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/port) -"bKw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/port) -"bKx" = (/turf/simulated/floor/plating,/area/maintenance/port) -"bKy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/trash/raisins,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/port) -"bKz" = (/turf/simulated/wall,/area/crew_quarters/theatre) -"bKA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/theatre) -"bKB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/port) -"bKC" = (/obj/item/device/t_scanner,/turf/simulated/floor/plating,/area/maintenance/port) -"bKD" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/port) -"bKE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bKF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"bKG" = (/obj/machinery/washing_machine,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/crew_quarters/fitness) -"bKH" = (/obj/machinery/washing_machine,/obj/machinery/light{dir = 1},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/crew_quarters/fitness) -"bKI" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/obj/structure/table,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKJ" = (/obj/item/weapon/stool,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKK" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKL" = (/obj/structure/closet,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKM" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKO" = (/obj/machinery/light_construct/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bKP" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access_txt = "41"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor,/area/supply/qm) -"bKQ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bKR" = (/obj/structure/closet,/obj/item/mounted/poster,/obj/item/mounted/poster,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bKS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/device/flashlight/flare,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bKT" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bKU" = (/obj/item/trash/plate,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bKV" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bKW" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 8},/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/turf/simulated/floor{icon_state = "whitebluecorner"; dir = 1},/area/science/robotics) -"bKX" = (/turf/simulated/wall/r_wall,/area/maintenance/fstarboardsolar) -"bKY" = (/obj/structure/cable,/obj/machinery/power/solar/panel{id_tag = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/fstarboard) -"bKZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fstarboard) -"bLa" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bLb" = (/obj/machinery/vending/assist,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/asderelict) -"bLc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/asderelict) -"bLd" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Default"; dir = 8; network = list("SS13")},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bLe" = (/obj/structure/bed,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bLf" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/asderelict) -"bLg" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/asderelict) -"bLh" = (/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/port) -"bLi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/port) -"bLj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bLk" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "dark vault full"},/area/derelictparts/port) -"bLl" = (/turf/simulated/wall/r_wall,/area/derelictparts/diner) -"bLm" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/wall/r_wall,/area/derelictparts/diner) -"bLn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/port) -"bLo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/port) -"bLp" = (/obj/structure/closet,/obj/item/weapon/lipstick/random,/obj/item/mounted/poster,/obj/item/mounted/poster,/obj/item/mounted/poster,/obj/item/weapon/coin/silver,/obj/item/weapon/bikehorn,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bLq" = (/obj/machinery/vending/autodrobe,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bLr" = (/obj/machinery/light/small{dir = 1},/obj/structure/mirror{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bLs" = (/obj/structure/rack,/obj/map/spawner/set_spawner/theater,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bLt" = (/obj/machinery/camera{c_tag = "Theatre Storage"},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bLu" = (/obj/structure/rack,/obj/map/spawner/set_spawner/theater,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bLv" = (/obj/structure/mirror{pixel_y = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bLw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera{c_tag = "Civilian Hall North"; dir = 8},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bLx" = (/turf/simulated/wall,/area/crew_quarters/sleep) -"bLy" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/table,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bLz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bLA" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/door_control{id_tag = "RDorm5"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bLB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "red"; dir = 9},/area/crew_quarters/sleep) -"bLC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "red"; dir = 5},/area/crew_quarters/sleep) -"bLD" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/door_control{id_tag = "RDorm6"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bLE" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/structure/table,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bLF" = (/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/crew_quarters/fitness) -"bLG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bLH" = (/obj/structure/closet/crate/medical,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bLI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bLJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/mob/living/simple_animal/mouse/brown,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bLK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bLL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bLM" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light_switch{pixel_y = -25},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bLN" = (/obj/machinery/light/small,/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (NORTH)"; icon_state = "warning_corner"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bLO" = (/obj/item/toy/katana,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bLP" = (/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris{pixel_x = -5; pixel_y = 5},/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bLQ" = (/obj/item/weapon/stool,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bLR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/item/weapon/folder,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bLS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bLT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bLU" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bLV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/cigbutt{pixel_x = -7; pixel_y = -4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bLW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bLX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/cobweb2,/obj/structure/rack,/obj/item/weapon/extinguisher,/obj/item/weapon/circuitboard/airlock,/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bLY" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bLZ" = (/obj/machinery/power/battery/smes{charge = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bMa" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fstarboardsolar) -"bMb" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/terminal{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bMc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bMd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bMe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bMf" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small{dir = 8},/obj/item/device/assembly/igniter{pixel_x = -3; pixel_y = -7},/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/asderelict) -"bMg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/generic,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bMh" = (/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/asderelict) -"bMi" = (/obj/effect/decal/cleanable/dirt,/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = -9},/obj/item/device/assembly/prox_sensor,/obj/item/weapon/camera_assembly,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bMj" = (/obj/structure/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/crowbar,/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/asderelict) -"bMk" = (/obj/structure/rack,/obj/item/weapon/tank/air,/obj/map/spawner/maint,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/asderelict) -"bMl" = (/obj/structure/table,/obj/item/trash/candle,/obj/item/stack/medical/ointment,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bMm" = (/obj/item/weapon/stool,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/box,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/asderelict) -"bMn" = (/obj/effect/decal/cleanable/blood/splatter,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/asderelict) -"bMo" = (/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/spacecash,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bMp" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/decal/cleanable/blood/splatter,/obj/item/clothing/gloves/boxing/yellow,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bMq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bMr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bMs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/port) -"bMt" = (/obj/item/weapon/cigbutt{pixel_x = -12},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bMu" = (/turf/simulated/wall,/area/derelictparts/diner) -"bMv" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/plating,/area/derelictparts/diner) -"bMw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/diner) -"bMx" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/derelictparts/diner) -"bMy" = (/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/derelictparts/diner) -"bMz" = (/obj/structure/kitchenspike,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/diner) -"bMA" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bMB" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bMC" = (/obj/structure/grille,/obj/effect/decal/remains/robot{icon_state = "gibdown"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bMD" = (/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bME" = (/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating,/area/derelictparts/port) -"bMF" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bMG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/port) -"bMH" = (/obj/machinery/door/airlock/maintenance{name = "Theater Maintenance"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/port) -"bMI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMJ" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Clown"},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bML" = (/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMM" = (/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bMO" = (/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"; req_one_access_txt = "0"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bMP" = (/obj/structure/table,/turf/simulated/floor,/area/hallway/primary/port) -"bMQ" = (/obj/machinery/media/receiver/boombox/wallmount/muzak{on = 0; pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/port) -"bMR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bMS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bMT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bMU" = (/obj/machinery/door/airlock{id_tag = "RDorm5"; name = "Dorm 5"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bMV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "red"; dir = 8},/area/crew_quarters/sleep) -"bMW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/sleep) -"bMX" = (/obj/machinery/door/airlock{id_tag = "RDorm6"; name = "Dorm 6"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bMY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bMZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bNa" = (/obj/structure/window/reinforced,/obj/structure/closet,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3; pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2},/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/crew_quarters/fitness) -"bNb" = (/obj/structure/window/reinforced,/obj/structure/table,/turf/simulated/floor{dir = 8; icon_state = "barber"},/area/crew_quarters/fitness) -"bNc" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera{c_tag = "Washing Room"},/turf/simulated/floor{icon_state = "neutral"; dir = 9},/area/crew_quarters/fitness) -"bNd" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bNe" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bNf" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bNg" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor{icon_state = "neutral"; dir = 5},/area/crew_quarters/fitness) -"bNh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bNi" = (/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/libertycap{pixel_x = -10; pixel_y = -3},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bNj" = (/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bNk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bNl" = (/obj/item/device/paicard,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bNm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bNn" = (/obj/machinery/light_construct/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bNo" = (/mob/living/simple_animal/mouse/gray,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bNp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bNq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bNr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bNs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Starboard Solar Access"; req_access_txt = "10"},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bNt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bNu" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bNv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bNw" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fstarboardsolar) -"bNx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fstarboard) -"bNy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"bNz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bNA" = (/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bNB" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"bNC" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bND" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bNE" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fstarboard) -"bNF" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fstarboard) -"bNG" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar/panel{id_tag = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/fstarboard) -"bNH" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bNI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar/panel{id_tag = "starboardsolar"; name = "Starboard Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/fstarboard) -"bNJ" = (/obj/item/weapon/reagent_containers/food/snacks/chocolateegg{desc = "wait what"; name = "easter egg"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bNK" = (/obj/item/stack/rods,/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/circuitboard/telecomms/receiver,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/asderelict) -"bNL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bNM" = (/obj/item/stack/sheet/glass/glass{amount = 18},/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/asderelict) -"bNN" = (/obj/structure/closet/crate,/obj/machinery/light_construct/small{dir = 4},/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/asderelict) -"bNO" = (/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bNP" = (/turf/simulated/floor/plating,/area/derelictparts/port) -"bNQ" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bNR" = (/obj/item/weapon/cigbutt{pixel_x = 2; pixel_y = 9},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bNS" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"bNT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bNU" = (/obj/structure/closet,/obj/item/weapon/kitchen/utensil/knife/large,/obj/item/weapon/reagent_containers/food/drinks/flour,/obj/item/weapon/reagent_containers/food/drinks/flour,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/snacks/meat{desc = "A slab of meat. You're not exactly sure where this came from."},/obj/item/weapon/reagent_containers/food/snacks/meat{desc = "A slab of meat. You're not exactly sure where this came from."},/obj/item/weapon/reagent_containers/food/snacks/meat{desc = "A slab of meat. You're not exactly sure where this came from."},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/diner) -"bNV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/derelictparts/diner) -"bNW" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/egg_smudge{icon_state = "smashed_egg1"},/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/derelictparts/diner) -"bNX" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/derelictparts/diner) -"bNY" = (/obj/structure/kitchenspike,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/diner) -"bNZ" = (/obj/machinery/portable_atmospherics/hydroponics/soil{pixel_y = 8},/obj/item/seeds/potatoseed,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bOa" = (/obj/machinery/portable_atmospherics/hydroponics/soil{pixel_y = 8},/obj/item/weapon/minihoe,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bOb" = (/obj/machinery/portable_atmospherics/hydroponics/soil{pixel_y = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bOc" = (/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bOd" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bOe" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/plating,/area/derelictparts/port) -"bOf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bOg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/port) -"bOh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bOi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/autodrobe,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bOj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/table/woodentable,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bOk" = (/obj/structure/rack,/obj/map/spawner/set_spawner/theater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bOl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bOm" = (/obj/machinery/light/small,/obj/structure/rack,/obj/map/spawner/set_spawner/theater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bOn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bOo" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor,/area/hallway/primary/port) -"bOp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/sleep) -"bOq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/sleep) -"bOr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/crew_quarters/sleep) -"bOs" = (/turf/simulated/floor{icon_state = "neutral"; dir = 9},/area/crew_quarters/fitness) -"bOt" = (/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bOu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bOv" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/crew_quarters/fitness) -"bOw" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor,/area/crew_quarters/fitness) -"bOx" = (/turf/simulated/floor,/area/crew_quarters/fitness) -"bOy" = (/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bOz" = (/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bOA" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bOB" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"bOC" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bOD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bOE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bOF" = (/obj/structure/closet/crate/hydroponics,/obj/item/seeds/wheatseed,/obj/item/seeds/wheatseed,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bOG" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/remains/robot,/obj/item/weapon/stock_parts/micro_laser,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/weapon/weldingtool,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bOL" = (/obj/structure/closet,/obj/item/weapon/circuitboard/rdconsole,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bOM" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bON" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bOO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bOP" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bOQ" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bOR" = (/obj/structure/cable,/obj/machinery/power/solar/control{id_tag = "starboardsolar"; name = "Starboard Solar Control"},/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"bOS" = (/obj/item/weapon/stool,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/fstarboardsolar) -"bOT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bOU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"bOV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bOW" = (/obj/machinery/atmospherics/unary/vent,/turf/simulated/floor/plating/airless,/area) -"bOX" = (/turf/simulated/wall,/area) -"bOY" = (/turf/simulated/wall,/area/derelictparts/incinerator) -"bOZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bPa" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "cafeteria"; dir = 5},/area/derelictparts/diner) -"bPb" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bPc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/crowbar,/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/port) -"bPd" = (/obj/machinery/door/airlock{name = "Theatre Storage"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/crew_quarters/theatre) -"bPe" = (/obj/structure/sign/poster{icon_state = "poster6"; pixel_x = -32},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/hallway/primary/port) -"bPf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = 28},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bPg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bPh" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/door_control{id_tag = "RDorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bPi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/crew_quarters/sleep) -"bPj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/sleep) -"bPk" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/door_control{id_tag = "RDorm4"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bPl" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bPm" = (/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bPn" = (/obj/structure/table/woodentable,/obj/item/clothing/mask/balaclava,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/crew_quarters/fitness) -"bPo" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bPp" = (/obj/structure/table/woodentable,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bPq" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bPr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bPs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness) -"bPt" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bPu" = (/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bPv" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bPw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bPx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bPy" = (/obj/structure/closet,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/obj/item/weapon/pen,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bPz" = (/obj/item/weapon/cigbutt{pixel_x = -6; pixel_y = 15},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bPA" = (/obj/item/weapon/shard{icon_state = "small"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{cell_type = 0; dir = 1; icon_state = "apc1"; opened = 1; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bPB" = (/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bPC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/remains/robot{icon_state = "gib3"},/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bPD" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bPE" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bPF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bPG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/dice/d20,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bPH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bPI" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating/airless,/area) -"bPJ" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb,/obj/item/mounted/poster,/turf/simulated/floor/plating,/area/derelictparts/port) -"bPK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bPL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless,/area) -"bPM" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/airless,/area) -"bPN" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating/airless,/area) -"bPO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/turf/simulated/floor/plating/airless,/area) -"bPP" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/incinerator) -"bPQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 8; icon_state = "intact_on"; name = "Gas Pump"; on = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/incinerator) -"bPR" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 10},/obj/structure/reagent_dispensers/fueltank,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/incinerator) -"bPS" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/deathsposal{pixel_y = 32},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/incinerator) -"bPT" = (/obj/machinery/atmospherics/unary/tank/toxins{starting_volume = 3200},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/incinerator) -"bPU" = (/obj/machinery/atmospherics/unary/tank/oxygen{starting_volume = 3200},/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/incinerator) -"bPV" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/derelictparts/incinerator) -"bPW" = (/obj/effect/decal/remains/robot{icon_state = "gibdown"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/derelictparts/port) -"bPX" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/diner) -"bPY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"; dir = 1},/area/derelictparts/diner) -"bPZ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/diner) -"bQa" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQb" = (/obj/item/weapon/stool,/obj/structure/sign/poster{icon_state = "poster7"; pixel_y = 32},/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/diner) -"bQc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQd" = (/obj/machinery/vending/snack,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/diner) -"bQe" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQf" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bQg" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/diner) -"bQh" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/storage/fancy/matchbox{pixel_x = -5; pixel_y = 15},/obj/item/weapon/reagent_containers/food/drinks/beer{pixel_y = -6},/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/diner) -"bQi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/diner) -"bQj" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/circuitboard/air_alarm,/turf/simulated/floor/plating,/area/derelictparts/port) -"bQk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/port) -"bQl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bQm" = (/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bQn" = (/obj/machinery/door/window{base_state = "left"; dir = 8; icon_state = "left"; name = "Theater Backstage"; req_access_txt = "46"},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bQo" = (/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bQp" = (/obj/machinery/light{dir = 1},/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bQq" = (/obj/machinery/camera{c_tag = "Theatre Stage"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bQr" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "theater"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bQs" = (/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/crew_quarters/theatre) -"bQt" = (/obj/machinery/door/airlock/engineering{name = "Construction Area"; req_access_txt = "32"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/security/vacantoffice) -"bQu" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bQv" = (/turf/simulated/floor,/area/crew_quarters/theatre) -"bQw" = (/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "white"},/area/science/robotics) -"bQx" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor,/area/hallway/primary/port) -"bQy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bQz" = (/obj/machinery/door/airlock{id_tag = "RDorm3"; name = "Dorm 3"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bQA" = (/obj/machinery/door/airlock{id_tag = "RDorm4"; name = "Dorm 4"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bQB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bQC" = (/obj/structure/table/woodentable,/obj/item/device/violin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/crew_quarters/fitness) -"bQD" = (/obj/structure/table/woodentable,/obj/item/device/paicard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor,/area/crew_quarters/fitness) -"bQE" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor,/area/crew_quarters/fitness) -"bQF" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bQH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/wall,/area/crew_quarters/fitness) -"bQI" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bQJ" = (/obj/machinery/light/small,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bQK" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/fitness) -"bQL" = (/obj/structure/table,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bQM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bQN" = (/obj/machinery/atmospherics/binary/valve{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bQO" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bQP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 32},/turf/simulated/floor/plating,/area/derelictparts/asderelict) -"bQQ" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bQR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bQS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bQT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/stack/sheet/cardboard,/obj/machinery/light/small,/obj/structure/sign/poster{desc = "Grey Pride World Wide!"; icon_state = "poster8"; pixel_y = -32},/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bQU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/device/t_scanner,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bQV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bQW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bQX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bQY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/machinery/space_heater,/obj/item/weapon/storage/belt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bQZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/apderelict) -"bRa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/circuitboard/airlock,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bRb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bRc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bRd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bRe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bRf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bRg" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bRh" = (/obj/structure/table/reinforced,/obj/machinery/door/window{base_state = "left"; dir = 8; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "robotics"; name = "robotics lab shutters"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor/plating,/area/science/robotics) -"bRi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/derelictparts/fsderelict) -"bRj" = (/obj/machinery/newscaster{pixel_x = -28},/turf/simulated/floor{icon_state = "purple"; dir = 8},/area/hallway/primary/central) -"bRk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fstarboard) -"bRl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/fstarboard) -"bRm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless,/area) -"bRn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bRo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/remains/robot{icon_state = "gib3"},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bRp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bRq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bRr" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating/airless,/area) -"bRs" = (/turf/simulated/wall/r_wall,/area/derelictparts/incinerator) -"bRt" = (/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/incinerator) -"bRu" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/incinerator) -"bRv" = (/obj/item/stack/sheet/metal,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/incinerator) -"bRw" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"bRx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/emcloset,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/incinerator) -"bRy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bRz" = (/obj/effect/decal/cleanable/generic,/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/diner) -"bRA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bRB" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bRC" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/diner) -"bRD" = (/obj/item/weapon/stool,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bRE" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/vomit,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bRF" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bRG" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bRH" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bRI" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/breadslice,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/diner) -"bRJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/diner) -"bRK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/assembly/prox_sensor,/turf/simulated/floor/plating,/area/derelictparts/port) -"bRL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bRM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/door_control{id_tag = "theater"; name = "Theater Curtains"; pixel_x = -24},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bRN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bRO" = (/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bRP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bRQ" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "theater"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bRR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/theatre) -"bRS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/crew_quarters/theatre) -"bRT" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor,/area/crew_quarters/theatre) -"bRU" = (/obj/machinery/door/poddoor/shutters{dir = 2; id_tag = "qm_warehouse"; name = "warehouse shutters"},/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/supply/storage) -"bRV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/hallway/primary/port) -"bRW" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bRX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/crew_quarters/sleep) -"bRY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/sleep) -"bRZ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{dir = 10; icon_state = "neutral"},/area/crew_quarters/fitness) -"bSa" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/crew_quarters/fitness) -"bSb" = (/turf/simulated/floor{icon_state = "neutralcorner"},/area/crew_quarters/fitness) -"bSc" = (/obj/machinery/light_switch{pixel_x = -6; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"bSd" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"bSe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"bSf" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"bSg" = (/turf/simulated/floor{icon_state = "neutral"; dir = 6},/area/crew_quarters/fitness) -"bSh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/wall,/area/crew_quarters/fitness) -"bSi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness) -"bSj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/fitness) -"bSk" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bSl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bSm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSo" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bSp" = (/obj/item/stack/rods,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSr" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSs" = (/obj/structure/closet/emcloset,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSt" = (/obj/item/weapon/rack_parts,/obj/item/device/radio,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bSu" = (/obj/effect/decal/cleanable/dirt,/obj/structure/window/reinforced{dir = 8},/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bSv" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/closet/crate,/obj/item/mounted/poster,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bSw" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/crate,/obj/item/weapon/crowbar,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/fsmaint) -"bSx" = (/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/science/chargebay) -"bSy" = (/obj/machinery/door/poddoor/shutters{dir = 2; id_tag = "Skynet_launch"; name = "Mech Bay"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/science/chargebay) -"bSz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/science/chargebay) -"bSA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor/plating,/area/maintenance/disposal) -"bSB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"bSC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"bSD" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"bSE" = (/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bSF" = (/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "disvent"; name = "Incinerator Vent"},/turf/simulated/floor/engine/vacuum,/area/derelictparts/incinerator) -"bSG" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1443; icon_state = "on"; id_tag = "air_in"; on = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_y = 32},/turf/simulated/floor/engine/vacuum,/area/derelictparts/incinerator) -"bSH" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/derelictparts/incinerator) -"bSI" = (/obj/machinery/atmospherics/binary/pump{dir = 8; icon_state = "intact_on"; on = 1},/obj/machinery/access_button{command = "cycle_exterior"; layer = 3.1; master_tag = "incinerator_access_control"; name = "Incinerator airlock control"; pixel_x = -22; pixel_y = -10},/obj/structure/sign/fire{pixel_y = 32},/turf/simulated/floor/plating,/area/derelictparts/incinerator) -"bSJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/embedded_controller/radio/access_controller{tag_exterior_door = "incinerator_airlock_exterior"; id_tag = "incinerator_access_control"; tag_interior_door = "incinerator_airlock_interior"; name = "Incinerator Access Console"; pixel_x = -26; pixel_y = 6; req_access_txt = "12"},/obj/machinery/ignition_switch{id_tag = "Incinerator"; pixel_x = -24; pixel_y = -6},/obj/machinery/meter,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/incinerator) -"bSK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/insulated/visible,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/incinerator) -"bSL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/weldingtool,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"bSM" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/incinerator) -"bSN" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/incinerator) -"bSO" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"bSP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bSQ" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bSR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/diner) -"bSS" = (/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bST" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer{pixel_x = -6; pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/beer{pixel_x = 2; pixel_y = -2},/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/diner) -"bSU" = (/obj/item/weapon/stool,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bSV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/diner) -"bSW" = (/obj/item/weapon/cell,/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/diner) -"bSX" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/diner) -"bSY" = (/obj/structure/table,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/diner) -"bSZ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/diner) -"bTa" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bTb" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bTc" = (/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bTd" = (/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bTe" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bTf" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "theater"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bTg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/floor,/area/crew_quarters/theatre) -"bTh" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Theatre Audience"; dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/crew_quarters/theatre) -"bTi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/port) -"bTj" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/door_control{id_tag = "RDorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bTk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/camera/xray{c_tag = "Dormitories North"; dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/sleep) -"bTl" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/alarm{pixel_y = 23},/obj/machinery/door_control{id_tag = "RDorm2"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"bTm" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bTn" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/fitness) -"bTo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/fitness) -"bTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/crew_quarters/fitness) -"bTq" = (/turf/simulated/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) -"bTr" = (/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bTs" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/obj/item/weapon/stock_parts/matter_bin,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bTt" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bTu" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bTv" = (/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bTw" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/light_construct/small{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bTx" = (/obj/map/spawner/maint,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bTy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/crowbar,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bTz" = (/obj/machinery/door/airlock{name = "Theatre Storage"; req_access_txt = "46"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/crew_quarters/theatre) -"bTA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = 28},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bTB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/plating,/area/derelictparts/port) -"bTC" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bTD" = (/obj/machinery/door/airlock/glass{name = "Theater"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/crew_quarters/theatre) -"bTE" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/wrench,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/storage/fancy/matchbox,/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 0; pixel_y = 32},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bTF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bTG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bTH" = (/obj/structure/bed/chair{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt{pixel_x = -10; pixel_y = 16},/turf/simulated/floor/plating,/area/derelictparts/port) -"bTI" = (/obj/machinery/igniter{icon_state = "igniter0"; id_tag = "Incinerator"; on = 0},/turf/simulated/floor/engine/vacuum,/area/derelictparts/incinerator) -"bTJ" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; locked = 1; name = "Mixing Room Exterior Airlock"; req_access_txt = "12"},/turf/simulated/floor/engine/vacuum,/area/derelictparts/incinerator) -"bTK" = (/turf/simulated/floor/plating,/area/derelictparts/incinerator) -"bTL" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; locked = 1; name = "Mixing Room Interior Airlock"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/incinerator) -"bTM" = (/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/incinerator) -"bTN" = (/obj/machinery/atmospherics/binary/valve,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"bTO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_animal/mouse/gray,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/incinerator) -"bTP" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/wrench,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"bTQ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/incinerator) -"bTR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"bTS" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Incinerator Access"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/incinerator) -"bTT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bTU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bTV" = (/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/diner) -"bTW" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bTX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/diner) -"bTY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "floorscorched2"; dir = 1},/area/derelictparts/diner) -"bTZ" = (/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/diner) -"bUa" = (/obj/effect/decal/cleanable/vomit,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{cell_type = 0; dir = 4; icon_state = "apc1"; opened = 1; pixel_x = 28; pixel_y = 0},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bUb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/derelictparts/diner) -"bUc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bUd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/crew_quarters/theatre) -"bUe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/crew_quarters/theatre) -"bUf" = (/obj/machinery/alarm{dir = 4; pixel_x = -24},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bUg" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/hallway/primary/port) -"bUh" = (/obj/machinery/door/airlock{id_tag = "RDorm1"; name = "Dorm 1"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bUi" = (/obj/machinery/door/airlock{id_tag = "RDorm2"; name = "Dorm 2"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bUj" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/crew_quarters/fitness) -"bUk" = (/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/crew_quarters/fitness) -"bUl" = (/obj/structure/closet/athletic_mixed,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bUm" = (/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"bUn" = (/obj/structure/closet/masks,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/fitness) -"bUo" = (/obj/machinery/door/airlock/security{name = "Security Maintenance"; req_access = null; req_access_txt = "1"},/turf/simulated/floor/plating,/area/security/brig) -"bUp" = (/obj/structure/closet/lasertag/red,/turf/simulated/floor{icon_state = "neutral"; dir = 5},/area/crew_quarters/fitness) -"bUq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"bUr" = (/obj/item/weapon/crowbar/red{desc = "An old tool and weapon from many eras ago. Legend says that humanity may have been saved by one of these. On the side you can see a small scribble that describes 'Property of Dr. F'. You feel empowered by weilding this."; force = 18},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUs" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/xeno{desc = "They look like the remains of something... alien. This one has a cracked skull."},/obj/effect/decal/cleanable/blood/xeno,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bUt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; pixel_x = -24},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = -10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bUu" = (/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bUv" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bUw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bUx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bUy" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/chips,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bUz" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/medbay) -"bUA" = (/turf/simulated/wall,/area/derelictparts/medbay) -"bUB" = (/obj/item/weapon/reagent_containers/food/snacks/grown/banana{pixel_x = -1; pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/obj/item/weapon/reagent_containers/food/snacks/grown/banana{pixel_x = 2; pixel_y = -1},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bUC" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/medbay) -"bUD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Theater"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/crew_quarters/theatre) -"bUE" = (/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bUF" = (/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/medbay) -"bUG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bUH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"bUI" = (/obj/machinery/door/window{dir = 2; name = "Monkey Pen"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/medbay) -"bUJ" = (/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/medbay) -"bUK" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bUL" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/medbay) -"bUM" = (/obj/machinery/atmospherics/unary/cold_sink/freezer{current_temperature = 80; on = 1},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bUN" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "floorscorched2"; dir = 1},/area/derelictparts/medbay) -"bUO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"bUP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Derelict Medbay Lobby"},/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/medbay) -"bUQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small{dir = 1},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bUR" = (/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bUS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bUT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bUU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/fstarboard) -"bUV" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bUW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bUX" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; icon_state = "in"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/simulated/floor/engine/vacuum,/area/derelictparts/incinerator) -"bUY" = (/obj/machinery/atmospherics/pipe/simple/insulated/hidden{dir = 8},/turf/simulated/wall/r_wall,/area/derelictparts/incinerator) -"bUZ" = (/obj/machinery/atmospherics/binary/pump{dir = 4; icon_state = "intact_on"; on = 1},/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/access_button{command = "cycle_interior"; master_tag = "incinerator_access_control"; name = "Incinerator airlock control"; pixel_x = 24; pixel_y = 8},/turf/simulated/floor/plating,/area/derelictparts/incinerator) -"bVa" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/machinery/door_control{id_tag = "disvent"; name = "Incinerator Vent Control"; pixel_y = -24; req_access_txt = "12"},/obj/machinery/meter,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"bVb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/structure/cable,/obj/machinery/power/apc{cell_type = 0; dir = 2; icon_state = "apc1"; opened = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/incinerator) -"bVc" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 0; pixel_y = 32},/turf/simulated/floor{icon_state = "green"; dir = 4},/area/derelictparts/medbay) -"bVd" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/incinerator) -"bVe" = (/obj/machinery/atmospherics/pipe/simple/insulated/visible{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/incinerator) -"bVf" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/incinerator) -"bVg" = (/obj/item/device/assembly/signaler,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/derelictparts/port) -"bVh" = (/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/diner) -"bVi" = (/obj/effect/decal/cleanable/generic,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bVj" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/vomit,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bVk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/camera_assembly,/turf/simulated/floor{icon_state = "floorscorched2"; dir = 1},/area/derelictparts/diner) -"bVl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/diner) -"bVm" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/diner) -"bVn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bVo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "damaged3"; dir = 1},/area/derelictparts/diner) -"bVp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor{icon_state = "bar"},/area/derelictparts/diner) -"bVq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating,/area/derelictparts/port) -"bVr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/screwdriver,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/derelictparts/port) -"bVs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bVt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/silicate,/turf/simulated/floor/plating,/area/derelictparts/port) -"bVu" = (/obj/structure/rack,/obj/item/device/violin,/obj/item/device/camera,/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bVv" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/food/snacks/pie,/obj/item/weapon/reagent_containers/food/snacks/pie,/obj/item/weapon/reagent_containers/food/snacks/pie,/obj/item/weapon/reagent_containers/food/snacks/pie,/obj/item/weapon/reagent_containers/food/snacks/pie,/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/theatre) -"bVw" = (/obj/structure/window/reinforced/tinted{dir = 8},/obj/structure/device/piano,/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bVx" = (/obj/item/weapon/stool/piano{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bVy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bVz" = (/obj/machinery/door/window{base_state = "left"; icon_state = "left"; name = "Theater Stage"; req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "theater"},/turf/simulated/floor/wood,/area/crew_quarters/theatre) -"bVA" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor,/area/crew_quarters/theatre) -"bVB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor,/area/crew_quarters/theatre) -"bVC" = (/obj/machinery/status_display{layer = 4; pixel_x = -32},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/hallway/primary/port) -"bVD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "red"; dir = 8},/area/crew_quarters/sleep) -"bVE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/sleep) -"bVF" = (/obj/machinery/alarm{dir = 4; pixel_x = -23},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bVG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/crew_quarters/fitness) -"bVH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bVI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bVJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/crew_quarters/fitness) -"bVK" = (/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/fitness) -"bVL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"bVM" = (/obj/item/trash/candy,/obj/structure/window/reinforced{dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bVN" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/closet/crate,/obj/item/weapon/storage/bag/plants,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bVO" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bVP" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse/white,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bVQ" = (/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bVR" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bVS" = (/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/camera_assembly,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bVT" = (/obj/effect/decal/cleanable/blood/splatter,/obj/structure/noticeboard{pixel_y = 32},/obj/item/weapon/paper{info = "Construction of this medbay has been put on an indefinite hold. Orders from the higher ups."; name = "CONSTRUCTION ORDERS"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bVU" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bVV" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bVW" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/closet/crate/medical,/obj/item/stack/medical/ointment,/obj/machinery/power/apc{cell_type = 0; dir = 1; icon_state = "apc1"; opened = 1; pixel_x = 0; pixel_y = 24},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bVX" = (/mob/living/simple_animal/mouse/gray,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bVY" = (/obj/item/stack/rods,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bVZ" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/obj/structure/sink{dir = 1; pixel_y = 25},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bWa" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/decal/cleanable/blood/splatter,/obj/item/weapon/retractor,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bWb" = (/obj/effect/decal/cleanable/blood/splatter,/obj/item/stack/sheet/cardboard,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bWc" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"bWd" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bWe" = (/obj/machinery/atmospherics/binary/valve{dir = 4},/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 0; pixel_y = -32},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/incinerator) -"bWf" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/medbay) -"bWg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"bWh" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "green"},/area/derelictparts/medbay) -"bWi" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"bWj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/silicate,/turf/simulated/floor/plating,/area/derelictparts/port) -"bWk" = (/obj/item/weapon/shard,/turf/simulated/floor/plating,/area/derelictparts/port) -"bWl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bWm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bWn" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/diner) -"bWo" = (/obj/machinery/door/airlock/glass{name = "Derelict Diner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/derelictparts/diner) -"bWp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bWq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio{pixel_y = 6},/turf/simulated/floor/plating,/area/derelictparts/port) -"bWr" = (/obj/machinery/space_heater,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/weapon/cell/high,/turf/simulated/floor/plating,/area/derelictparts/port) -"bWs" = (/turf/simulated/wall,/area/crew_quarters/casino) -"bWt" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor{icon_state = "greencorner"},/area/derelictparts/medbay) -"bWu" = (/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bWv" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"bWw" = (/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bWx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bWy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bWz" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bWA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "redcorner"; dir = 1},/area/crew_quarters/sleep) -"bWB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/crew_quarters/sleep) -"bWC" = (/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bWD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bWE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bWF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/crew_quarters/sleep) -"bWG" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"bWH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"bWI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/crew_quarters/fitness) -"bWJ" = (/obj/machinery/door/window{base_state = "left"; dir = 8; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bWK" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bWL" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bWM" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bWN" = (/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/simulated/floor,/area/crew_quarters/fitness) -"bWO" = (/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor,/area/crew_quarters/fitness) -"bWP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/crew_quarters/fitness) -"bWQ" = (/obj/machinery/camera{c_tag = "Holodeck"},/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/crew_quarters/fitness) -"bWR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"bWS" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bWT" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bWU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot{icon_state = "gibdown"},/obj/item/weapon/circuitboard/fire_alarm,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bWV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bWW" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bWX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bWY" = (/obj/machinery/door/airlock/glass_medical{density = 0; icon_state = "door_open"; id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/medbay) -"bWZ" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "green"; dir = 6},/area/derelictparts/medbay) -"bXa" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bXb" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bXc" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bXd" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bXe" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bXf" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "damaged3"; dir = 1},/area/derelictparts/medbay) -"bXg" = (/obj/effect/decal/cleanable/blood/splatter,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/medbay) -"bXh" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bXi" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bXj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/medbay) -"bXk" = (/obj/machinery/atmospherics/unary/portables_connector{dir = 8; name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light_construct/small{dir = 4},/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/medbay) -"bXl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock{name = "Casino"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/crew_quarters/casino) -"bXm" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bXn" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"bXo" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bXp" = (/obj/structure/rack,/obj/item/clothing/suit/ianshirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bXq" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/derelictparts/port) -"bXr" = (/obj/item/clothing/gloves/black,/obj/machinery/light_construct/small{dir = 1},/obj/item/weapon/light/bulb,/turf/simulated/floor/plating,/area/derelictparts/port) -"bXs" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/derelictparts/port) -"bXt" = (/obj/item/weapon/circuitboard/fire_alarm{pixel_x = -7; pixel_y = 6},/obj/item/weapon/circuitboard/airlock{pixel_x = 2; pixel_y = -5},/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/metal{amount = 6},/obj/item/stack/sheet/glass/glass{amount = 8},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bXu" = (/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bXv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/decal/cleanable/ash,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXw" = (/obj/effect/decal/cleanable/blood/splatter,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXy" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXA" = (/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/light/bulb,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bXF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/cigbutt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXH" = (/obj/item/stack/rods,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/derelictparts/port) -"bXJ" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"bXK" = (/obj/structure/closet,/obj/item/mounted/poster,/obj/item/device/flashlight/flare,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bXL" = (/obj/item/stack/rods,/obj/item/stack/sheet/glass/glass,/turf/simulated/floor/plating,/area/derelictparts/port) -"bXM" = (/obj/effect/decal/cleanable/ash,/obj/structure/vendomatpack/hydronutrients,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bXN" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/minihoe,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/derelictparts/port) -"bXO" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/bag/plants,/obj/item/weapon/cell/high,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bXP" = (/obj/machinery/computer/slot_machine,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXQ" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXR" = (/obj/structure/table/woodentable/poker,/obj/item/clothing/mask/cigarette/pipe,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXS" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXT" = (/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bXV" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/port) -"bXW" = (/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bXX" = (/turf/simulated/floor,/area/crew_quarters/sleep) -"bXY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/crew_quarters/sleep) -"bXZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor,/area/crew_quarters/sleep) -"bYb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/crew_quarters/sleep) -"bYc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bYh" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/splatter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/medbay) -"bYi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/crew_quarters/fitness) -"bYj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 8},/turf/simulated/floor,/area/crew_quarters/fitness) -"bYk" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bYl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/fitness) -"bYm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/fitness) -"bYn" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bYo" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/crew_quarters/fitness) -"bYp" = (/obj/machinery/computer/HolodeckControl,/turf/simulated/floor,/area/crew_quarters/fitness) -"bYq" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor,/area/crew_quarters/fitness) -"bYr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"bYs" = (/obj/effect/decal/remains/robot{icon_state = "gib5"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bYt" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"bYu" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bYv" = (/obj/item/trash/chips,/obj/structure/grille/broken,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"bYw" = (/obj/structure/bed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"bYx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/trash/cheesie,/obj/item/weapon/spacecash,/obj/item/mounted/poster,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bYy" = (/obj/structure/table/reinforced,/obj/item/device/healthanalyzer,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bYz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor{icon_state = "green"; dir = 4},/area/derelictparts/medbay) -"bYA" = (/obj/structure/table/reinforced,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bYB" = (/obj/machinery/light_construct/small{dir = 4},/obj/item/stack/sheet/cardboard,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bYC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bYD" = (/obj/machinery/door/airlock/glass_medical{name = "Medbay Storage"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bYE" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"bYF" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"bYG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"bYH" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/sleeper,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"bYI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating/airless,/area/solar/fstarboard) -"bYJ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bYK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/mob/living/simple_animal/mouse/brown,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYL" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYM" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bYN" = (/obj/item/mounted/poster,/obj/item/device/assembly/signaler,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYO" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/item/weapon/wirecutters,/obj/item/device/assembly/prox_sensor,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYP" = (/obj/item/device/assembly/igniter,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYQ" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bYR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/ash,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bYT" = (/obj/structure/closet,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/device/assembly/prox_sensor,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYU" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/extinguisher,/obj/item/clothing/mask/gas,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYV" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor,/area/derelictparts/port) -"bYW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/derelictparts/port) -"bYX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/derelictparts/port) -"bYY" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/port) -"bYZ" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZa" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/item/weapon/circuitboard/airlock,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZb" = (/obj/item/seeds/cornseed,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZc" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bZd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bZe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bZf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bZg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bZh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bZi" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bZj" = (/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"bZk" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/hallway/primary/port) -"bZl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"bZm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bZn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bZo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/crew_quarters/sleep) -"bZp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bZq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bZr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/crew_quarters/sleep) -"bZs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor,/area/crew_quarters/sleep) -"bZt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor,/area/crew_quarters/sleep) -"bZu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"bZv" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/medbay) -"bZw" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/crew_quarters/fitness) -"bZx" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bZy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark vault full"},/area/crew_quarters/fitness) -"bZz" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"bZA" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor{icon_state = "green"; dir = 4},/area/crew_quarters/fitness) -"bZB" = (/obj/structure/table,/obj/item/weapon/paper{info = "Bruises sustained in the holodeck can be healed simply by sleeping."; name = "Holodeck Disclaimer"},/turf/simulated/floor,/area/crew_quarters/fitness) -"bZC" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"bZD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/light/bulb,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bZE" = (/obj/machinery/sleep_console,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/medbay) -"bZF" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/wrench,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/medbay) -"bZG" = (/obj/item/weapon/stool{pixel_y = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"bZH" = (/obj/machinery/door/airlock/glass{name = "Fitness"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/crew_quarters/fitness) -"bZI" = (/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/medbay) -"bZJ" = (/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/medbay) -"bZK" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/derelictparts/medbay) -"bZL" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"bZM" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/medbay) -"bZN" = (/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/medbay) -"bZO" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gib2"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bZP" = (/obj/effect/decal/cleanable/blood{icon_state = "floor6"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibmid2"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibleg"},/obj/structure/kitchenspike,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bZQ" = (/obj/effect/decal/cleanable/blood{icon_state = "floor5"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibmid3"},/obj/structure/kitchenspike,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"bZR" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZS" = (/obj/structure/mopbucket,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"bZU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"bZW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"bZX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"bZY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/port) -"bZZ" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"caa" = (/obj/item/weapon/stool,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cab" = (/obj/machinery/light_construct/small{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"cac" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/derelictparts/port) -"cad" = (/obj/effect/decal/cleanable/dirt,/obj/item/device/flashlight,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"cae" = (/obj/structure/bed,/obj/structure/sign/poster{desc = "Grey Pride World Wide!"; icon_state = "poster8"; pixel_y = 32},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"caf" = (/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/port) -"cag" = (/obj/machinery/light/small{dir = 1},/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"cah" = (/obj/structure/table,/obj/machinery/newscaster{pixel_y = 32},/obj/item/weapon/newspaper,/obj/item/weapon/paper{info = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio,/turf/simulated/floor,/area/derelictparts/port) -"cai" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/port) -"caj" = (/obj/machinery/portable_atmospherics/hydroponics/soil{pixel_y = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"cak" = (/obj/item/seeds/cherryseed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"cal" = (/obj/item/stack/rods,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/port) -"cam" = (/obj/effect/decal/remains/robot{icon_state = "gibdown"},/turf/simulated/floor/plating,/area/derelictparts/port) -"can" = (/obj/item/weapon/stool,/obj/machinery/light_construct/small{dir = 4},/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cao" = (/turf/simulated/floor/wood,/area/crew_quarters/casino) -"cap" = (/obj/structure/table/woodentable/poker,/obj/item/clothing/head/fedora,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"caq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/port) -"car" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/hallway/primary/port) -"cas" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"cat" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"cau" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable,/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"cav" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"caw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"cax" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{dir = 8; icon_state = "bluecorner"},/area/crew_quarters/sleep) -"cay" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "bluecorner"},/area/crew_quarters/sleep) -"caz" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"caA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"caB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"caC" = (/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/crew_quarters/sleep) -"caD" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"caE" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"caF" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"caG" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"caH" = (/obj/machinery/door/window{base_state = "left"; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced,/turf/simulated/floor{icon_state = "dark"},/area/crew_quarters/fitness) -"caI" = (/turf/simulated/floor{icon_state = "green"; dir = 4},/area/crew_quarters/fitness) -"caJ" = (/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor,/area/crew_quarters/fitness) -"caK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/simulated/floor,/area/crew_quarters/fitness) -"caL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/crew_quarters/fitness) -"caM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/fitness) -"caN" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/remains/robot,/obj/item/weapon/newspaper,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"caO" = (/obj/structure/sink{pixel_y = 27},/obj/structure/grille/broken,/obj/item/stack/rods,/obj/item/weapon/stock_parts/capacitor,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"caP" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/apderelict) -"caQ" = (/obj/structure/sink{pixel_y = 27},/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/apderelict) -"caR" = (/obj/item/weapon/cigbutt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorscorched2"; dir = 1},/area/derelictparts/apderelict) -"caS" = (/obj/structure/sink{pixel_y = 27},/obj/effect/decal/cleanable/generic,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/wrench,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"caT" = (/obj/structure/table,/obj/item/weapon/shard{icon_state = "small"},/obj/effect/decal/cleanable/dirt,/obj/machinery/media/receiver/boombox,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/apderelict) -"caU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"caV" = (/obj/item/weapon/wirecutters,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"caW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"caX" = (/obj/structure/closet/secure_closet/medical3,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/medbay) -"caY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"caZ" = (/obj/structure/closet/l3closet/general,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"cba" = (/obj/machinery/door/airlock/glass{name = "Fitness"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/crew_quarters/fitness) -"cbb" = (/obj/effect/decal/cleanable/blood{icon_state = "floor3"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gib3"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gib1"},/obj/item/weapon/circular_saw,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cbc" = (/obj/effect/decal/cleanable/blood{icon_state = "floor7"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibdown1"},/mob/living/simple_animal/hostile/scarybat/cult,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cbd" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gib4"},/mob/living/simple_animal/hostile/scarybat/cult,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"cbe" = (/obj/structure/cable,/obj/machinery/power/solar/panel/tracker,/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/fstarboard) -"cbf" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cbh" = (/obj/item/stack/rods,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbi" = (/obj/item/weapon/circuitboard/air_alarm,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbj" = (/obj/structure/rack,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/cell/high,/obj/item/stack/cable_coil{amount = 12},/turf/simulated/floor/plating,/area/derelictparts/port) -"cbk" = (/obj/structure/rack,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/cell/high,/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbl" = (/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced,/obj/structure/closet,/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/extinguisher,/obj/item/clothing/mask/gas,/obj/item/device/flashlight/flare,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbn" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/weapon/spacecash,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbo" = (/obj/structure/bed,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"cbp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbq" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/weapon/reagent_containers/food/snacks/meat{desc = "A slab of meat. You're not exactly sure where this came from."},/obj/item/stack/medical/bruise_pack,/obj/machinery/media/receiver/boombox,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbr" = (/obj/structure/table,/obj/item/weapon/newspaper,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbs" = (/obj/structure/closet,/obj/item/device/multitool,/obj/item/clothing/glasses/sunglasses,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cbt" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"cbu" = (/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"cbv" = (/obj/item/weapon/spacecash,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"cbw" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/stool,/obj/structure/sign/poster{icon_state = "poster3"; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/derelictparts/port) -"cbx" = (/obj/machinery/portable_atmospherics/hydroponics/soil{pixel_y = 8},/obj/machinery/light_construct/small{dir = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"cby" = (/obj/item/weapon/stock_parts/capacitor{pixel_x = -6; pixel_y = -6},/turf/simulated/floor/plating,/area/derelictparts/port) -"cbz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbA" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/derelictparts/port) -"cbB" = (/obj/structure/table,/obj/item/trash/cheesie,/obj/item/clothing/gloves/black,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cbC" = (/obj/structure/table/woodentable/poker,/obj/item/weapon/lighter/zippo,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"cbD" = (/obj/structure/table/woodentable/poker,/obj/item/toy/cards,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"cbE" = (/obj/structure/table/woodentable/poker,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"cbF" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/crew_quarters/casino) -"cbG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"cbH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Casino"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"cbI" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/casino) -"cbJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/casino) -"cbK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"cbL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/port) -"cbM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"cbN" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "blue"; dir = 8},/area/crew_quarters/sleep) -"cbO" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/crew_quarters/sleep) -"cbP" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/machinery/light_switch{pixel_x = -22; pixel_y = 11},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/fitness) -"cbQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/fitness) -"cbR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/fitness) -"cbS" = (/obj/structure/table,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack{pixel_x = 10; pixel_y = 2},/obj/item/stack/medical/ointment{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/fitness) -"cbT" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/crew_quarters/fitness) -"cbU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor,/area/crew_quarters/fitness) -"cbV" = (/obj/item/weapon/cigbutt{pixel_x = 2; pixel_y = -4},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/reagent_containers/spray,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cbW" = (/obj/item/clothing/gloves/black,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/apderelict) -"cbX" = (/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"cbY" = (/obj/item/weapon/cigbutt{pixel_x = -8; pixel_y = 10},/obj/machinery/light/small,/obj/item/device/assembly/signaler,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/apderelict) -"cbZ" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/apderelict) -"cca" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/apderelict) -"ccb" = (/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/apderelict) -"ccc" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/medbay) -"ccd" = (/obj/structure/table/reinforced,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/medbay) -"cce" = (/obj/effect/decal/cleanable/dirt,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor{icon_state = "green"; dir = 4},/area/derelictparts/medbay) -"ccf" = (/obj/machinery/door/airlock/medical{name = "Medbay Reception"; req_access_txt = "5"},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"ccg" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/medbay) -"cch" = (/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"cci" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/medbay) -"ccj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/medbay) -"cck" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/derelictparts/medbay) -"ccl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/medbay) -"ccm" = (/turf/simulated/wall/r_wall,/area/derelictparts/medbay) -"ccn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/medbay) -"cco" = (/obj/effect/decal/cleanable/blood{icon_state = "floor4"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibhead"},/obj/effect/decal/cleanable/crayon/fuckyou,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"ccp" = (/obj/effect/decal/cleanable/blood{icon_state = "floor5"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gib5"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibtorso"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"ccq" = (/obj/effect/decal/cleanable/blood{icon_state = "floor3"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibup1"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"ccr" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/obj/item/weapon/storage/fancy/matchbox,/turf/simulated/floor/plating,/area/derelictparts/port) -"ccs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cct" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"ccu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"ccv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ccw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/stack/cable_coil/yellow{amount = 6},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"ccx" = (/obj/item/weapon/stock_parts/matter_bin,/obj/structure/grille/broken,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ccy" = (/obj/item/clothing/gloves/black,/turf/simulated/floor/plating,/area/derelictparts/port) -"ccz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ccA" = (/obj/item/weapon/stool,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"ccB" = (/obj/item/weapon/lighter{icon_state = "lighter-r"},/obj/item/weapon/lighter/random,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ccC" = (/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/port) -"ccD" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/derelictparts/port) -"ccE" = (/obj/item/trash/chips,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"ccF" = (/obj/structure/closet,/obj/item/mounted/poster,/obj/item/mounted/poster,/obj/effect/decal/cleanable/cobweb2,/obj/item/device/taperecorder,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/port) -"ccG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/port) -"ccH" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"ccI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"ccJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"ccK" = (/obj/machinery/door/airlock{id_tag = "BDorm1"; name = "Dorm 1"},/turf/simulated/floor,/area/crew_quarters/sleep) -"ccL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "blue"; dir = 8},/area/crew_quarters/sleep) -"ccM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/crew_quarters/sleep) -"ccN" = (/obj/machinery/door/airlock{id_tag = "BDorm2"; name = "Dorm 2"},/turf/simulated/floor,/area/crew_quarters/sleep) -"ccO" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 1},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"ccP" = (/obj/machinery/suit_storage_unit/security,/turf/simulated/floor{icon_state = "red"; dir = 6},/area/security/armory) -"ccQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/crew_quarters/fitness) -"ccR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "neutralcorner"},/area/crew_quarters/fitness) -"ccS" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"ccT" = (/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/fitness) -"ccU" = (/obj/structure/reagent_dispensers/water_cooler,/turf/simulated/floor{icon_state = "neutral"; dir = 6},/area/crew_quarters/fitness) -"ccV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ccW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ccX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ccY" = (/obj/machinery/door/airlock{name = "Unit 1"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"ccZ" = (/obj/machinery/door/airlock{name = "Unit 2"},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cda" = (/obj/machinery/door/airlock{name = "Unit 3"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/apderelict) -"cdb" = (/obj/machinery/door/airlock{name = "Unit 4"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cdc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot{icon_state = "gibdown"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cdd" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/medbay) -"cde" = (/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/medbay) -"cdf" = (/obj/structure/table,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/medbay) -"cdg" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/turf/simulated/floor{dir = 9; icon_state = "yellow"},/area/derelictparts/medbay) -"cdh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/derelictparts/medbay) -"cdi" = (/obj/structure/sink{pixel_y = 27},/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/medbay) -"cdj" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/turf/simulated/floor{dir = 1; icon_state = "yellow"},/area/derelictparts/medbay) -"cdk" = (/obj/structure/table/reinforced,/obj/machinery/door/window{dir = 8; name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"cdl" = (/turf/simulated/wall,/area/derelictparts/aft) -"cdm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/derelictparts/aft) -"cdn" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cdo" = (/obj/item/weapon/caution/cone,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/derelictparts/port) -"cdp" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cdq" = (/obj/item/device/flashlight,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/derelictparts/port) -"cdr" = (/obj/structure/bed,/obj/effect/decal/cleanable/dirt,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/derelictparts/port) -"cds" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/pen,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cdt" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot{icon_state = "gib3"},/turf/simulated/floor/plating,/area/derelictparts/port) -"cdu" = (/obj/effect/decal/cleanable/generic,/obj/item/stack/rods,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cdv" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/raisins,/turf/simulated/floor/plating,/area/derelictparts/port) -"cdw" = (/obj/item/weapon/stool,/obj/machinery/newscaster{pixel_x = -27},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/port) -"cdy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"cdz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"cdA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor,/area/derelictparts/port) -"cdB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/port) -"cdC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/vault) -"cdD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/vault) -"cdE" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/vault) -"cdF" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/vault) -"cdG" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/vault) -"cdH" = (/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/vault) -"cdI" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/vault) -"cdJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"cdK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/hallway/primary/port) -"cdL" = (/obj/machinery/camera{c_tag = "Civilian Hall South"; dir = 8},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"cdM" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/door_control{id_tag = "BDorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"cdN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "blue"; dir = 8},/area/crew_quarters/sleep) -"cdO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/crew_quarters/sleep) -"cdP" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/door_control{id_tag = "BDorm2"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"cdQ" = (/turf/simulated/wall,/area/crew_quarters/locker) -"cdR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"cdS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"cdT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cdU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cdV" = (/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 1},/obj/machinery/light_construct/small{dir = 8},/obj/effect/decal/remains/robot{icon_state = "gibdown"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"cdW" = (/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 1},/obj/machinery/light_construct/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/apderelict) -"cdX" = (/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/apderelict) -"cdY" = (/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 1},/obj/machinery/light_construct/small{dir = 8},/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cdZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cea" = (/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"ceb" = (/obj/structure/bed/chair{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/medbay) -"cec" = (/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/medbay) -"ced" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/medbay) -"cee" = (/obj/structure/table,/obj/item/clothing/glasses/hud/health{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/hud/health,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/derelictparts/medbay) -"cef" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/fstarboardsolar) -"ceg" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/medbay) -"ceh" = (/obj/structure/table,/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating,/area/derelictparts/medbay) -"cei" = (/obj/effect/decal/cleanable/blood{icon_state = "floor3"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cej" = (/obj/effect/decal/cleanable/blood{icon_state = "floor6"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cek" = (/obj/effect/decal/cleanable/blood{icon_state = "floor5"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibmid1"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cel" = (/obj/item/weapon/weldingtool,/turf/simulated/floor/plating/airless,/area) -"cem" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/hatchet,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"cen" = (/obj/item/weapon/reagent_containers/food/snacks/grown/banana{pixel_x = -1; pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/obj/item/weapon/reagent_containers/food/snacks/grown/banana{pixel_x = 2; pixel_y = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/derelictparts/aft) -"ceo" = (/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"cep" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/mob/living/carbon/monkey,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"ceq" = (/obj/structure/rack,/obj/item/weapon/circuitboard/autolathe,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cer" = (/obj/structure/rack,/obj/item/weapon/circuitboard/arcade,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"ces" = (/obj/structure/rack,/obj/item/weapon/circuitboard/atmos_alert,/turf/simulated/floor/plating,/area/derelictparts/port) -"cet" = (/obj/structure/window/barricade/full,/turf/simulated/floor/plating,/area/derelictparts/port) -"ceu" = (/obj/item/weapon/caution/cone,/obj/structure/sign/securearea{desc = "A warning sign which reads 'CONSTRUCTION ZONE'."; name = "\improper CONSTRUCTION ZONE"; pixel_y = -32},/turf/simulated/floor/plating,/area/derelictparts/port) -"cev" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"cew" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/port) -"cex" = (/obj/item/weapon/newspaper,/obj/machinery/light_construct/small,/turf/simulated/floor/plating,/area/derelictparts/port) -"cey" = (/obj/structure/table,/obj/item/weapon/newspaper,/obj/item/weapon/cigbutt/cigarbutt,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cez" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/stock_parts/micro_laser,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"ceA" = (/obj/item/weapon/stool,/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/port) -"ceB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/stamp,/obj/item/weapon/pen,/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/port) -"ceC" = (/turf/simulated/wall,/area/maintenance/vault) -"ceD" = (/obj/item/device/assembly/timer,/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/vault) -"ceE" = (/turf/simulated/wall/r_wall,/area/storage/nuke_storage) -"ceF" = (/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"ceG" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -29},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "blue"; dir = 8},/area/crew_quarters/sleep) -"ceH" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/xray{c_tag = "Dormitories South"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/crew_quarters/sleep) -"ceI" = (/obj/machinery/vending/hatdispenser,/turf/simulated/floor{icon_state = "neutral"; dir = 9},/area/crew_quarters/locker) -"ceJ" = (/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"ceK" = (/obj/machinery/disposal,/obj/machinery/light_switch{pixel_x = 6; pixel_y = 25},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"ceL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 1},/area/crew_quarters/locker) -"ceM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "neutralcorner"; dir = 4},/area/crew_quarters/locker) -"ceN" = (/obj/machinery/vending/groans,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"ceO" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "neutral"; dir = 1},/area/crew_quarters/locker) -"ceP" = (/obj/machinery/vending/cigarette,/turf/simulated/floor{icon_state = "neutral"; dir = 5},/area/crew_quarters/locker) -"ceQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/fitness) -"ceR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/fitness) -"ceS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ceT" = (/obj/machinery/light_construct/small{dir = 8},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ceU" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/storage/belt/medical{pixel_y = 2},/obj/item/clothing/accessory/stethoscope,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"ceV" = (/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor{dir = 8; icon_state = "yellow"},/area/derelictparts/medbay) -"ceW" = (/obj/structure/table/reinforced,/obj/machinery/door/window{name = "Chemistry Desk"; req_access_txt = "33"},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"ceX" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"ceY" = (/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/medbay) -"ceZ" = (/obj/machinery/door/airlock/glass_medical{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"cfa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"cfb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/medbay) -"cfc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/medbay) -"cfd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating,/area/derelictparts/port) -"cfe" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cff" = (/obj/item/weapon/crowbar,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cfg" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/circuitboard/destructive_analyzer,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cfh" = (/obj/structure/door_assembly/door_assembly_ext{density = 0},/turf/simulated/floor/plating/airless,/area) -"cfi" = (/obj/item/weapon/wrench,/turf/simulated/floor/plating/airless,/area) -"cfj" = (/obj/structure/rack,/obj/item/weapon/storage/bag/plants,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/minihoe,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"cfk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/carbon/monkey,/turf/simulated/floor,/area/derelictparts/aft) -"cfl" = (/mob/living/carbon/monkey{desc = "The legend still lives!"; name = "Deempisi"},/turf/simulated/floor,/area/derelictparts/aft) -"cfm" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"cfn" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"cfo" = (/obj/effect/decal/cleanable/ash,/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"cfp" = (/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/port) -"cfq" = (/obj/item/device/assembly/igniter,/obj/machinery/power/apc{cell_type = 0; dir = 1; icon_state = "apc1"; opened = 1; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/derelictparts/port) -"cfr" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/cell/high,/obj/machinery/alarm{pixel_y = 24; target_temperature = 73.15},/turf/simulated/floor/plating,/area/derelictparts/port) -"cfs" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"cft" = (/turf/simulated/wall,/area/janitor) -"cfu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/janitor) -"cfv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/janitor) -"cfw" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/table,/obj/item/stack/sheet/cardboard,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/spacecash,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/vault) -"cfx" = (/obj/structure/sink{pixel_y = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/remains/robot{icon_state = "gib5"},/turf/simulated/floor{icon_state = "damaged2"},/area/maintenance/vault) -"cfy" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/stock_parts/micro_laser,/turf/simulated/floor/plating,/area/maintenance/vault) -"cfz" = (/obj/structure/sink{pixel_y = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille/broken,/obj/item/stack/rods,/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "damaged1"},/area/maintenance/vault) -"cfA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/vault) -"cfB" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/vault) -"cfC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/vault) -"cfD" = (/obj/machinery/space_heater,/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/maintenance/vault) -"cfE" = (/obj/machinery/computer/secure_data/detective_computer,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/storage/nuke_storage) -"cfF" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/machinery/hologram/holopad,/turf/simulated/floor{icon_state = "dark-markings"; dir = 1},/area/storage/nuke_storage) -"cfG" = (/obj/item/weapon/coin/silver{pixel_x = 7; pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12; pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4; pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6; pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5; pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/turf/simulated/floor{icon_state = "dark-markings"; dir = 1},/area/storage/nuke_storage) -"cfH" = (/obj/structure/safe,/obj/item/clothing/head/bearpelt,/obj/item/weapon/melee/energy/axe,/obj/item/mounted/frame/painting,/turf/simulated/floor{icon_state = "dark-markings"; dir = 1},/area/storage/nuke_storage) -"cfI" = (/obj/machinery/door/airlock{id_tag = "BDorm3"; name = "Dorm 3"},/turf/simulated/floor,/area/crew_quarters/sleep) -"cfJ" = (/turf/simulated/floor{icon_state = "blue"; dir = 8},/area/crew_quarters/sleep) -"cfK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/crew_quarters/sleep) -"cfL" = (/obj/machinery/door/airlock{id_tag = "BDorm4"; name = "Dorm 4"},/turf/simulated/floor,/area/crew_quarters/sleep) -"cfM" = (/obj/machinery/vending/suitdispenser,/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"cfN" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/crew_quarters/locker) -"cfO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/locker) -"cfP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/locker) -"cfQ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/crew_quarters/locker) -"cfR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/locker) -"cfS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"cfT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/wall,/area/crew_quarters/locker) -"cfU" = (/obj/structure/urinal{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cfV" = (/obj/structure/urinal{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cfW" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cfX" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cfY" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cfZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cga" = (/obj/structure/bed,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cgb" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/weapon/dice/d20,/obj/map/spawner/maint,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cgc" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/space_heater,/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cgd" = (/obj/effect/decal/remains/robot{icon_state = "gib5"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cge" = (/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgf" = (/obj/item/trash/sosjerky,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cgg" = (/obj/item/weapon/cigbutt{pixel_x = -8; pixel_y = 12},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgh" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgi" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/wirecutters,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/camera_assembly,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgk" = (/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor{icon_state = "yellow"; dir = 10},/area/derelictparts/medbay) -"cgl" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/medbay) -"cgm" = (/obj/machinery/disposal,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt{pixel_x = 11; pixel_y = 10},/turf/simulated/floor{icon_state = "yellow"},/area/derelictparts/medbay) -"cgn" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/medbay) -"cgo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot{icon_state = "gibdown"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgp" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgq" = (/obj/item/stack/rods,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"cgr" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cgs" = (/obj/item/weapon/reagent_containers/food/snacks/grown/banana{pixel_x = -1; pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/obj/item/weapon/reagent_containers/food/snacks/grown/banana{pixel_x = 2; pixel_y = -1},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"cgt" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor,/area/derelictparts/aft) -"cgu" = (/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/turf/simulated/floor,/area/derelictparts/aft) -"cgv" = (/obj/item/seeds/bananaseed,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHWEST)"; icon_state = "warning"; dir = 9},/turf/simulated/floor,/area/derelictparts/aft) -"cgw" = (/obj/effect/decal/cleanable/generic,/obj/item/weapon/stock_parts/micro_laser{pixel_x = -6; pixel_y = 5},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cgx" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/obj/item/weapon/circuitboard/fire_alarm,/turf/simulated/floor/plating,/area/derelictparts/port) -"cgy" = (/obj/effect/decal/cleanable/dirt,/obj/structure/girder,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cgz" = (/obj/item/weapon/cigbutt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cgA" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/space_heater,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cgB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/port) -"cgC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cgD" = (/obj/item/stack/rods,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"cgE" = (/obj/item/weapon/match,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"cgF" = (/obj/item/weapon/wirecutters,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"cgG" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/port) -"cgH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"cgI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/derelictparts/port) -"cgJ" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/closet/jcloset,/obj/machinery/light/small{dir = 8},/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"cgK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/closet/l3closet/janitor,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"cgL" = (/obj/structure/bed/chair/vehicle/janicart,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/janitor) -"cgM" = (/obj/machinery/camera{c_tag = "Custodial Closet"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/janitor) -"cgN" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"cgO" = (/obj/effect/decal/cleanable/generic,/obj/item/weapon/soap{desc = "Life unfortunately found a way."; name = "mouldy soap"},/turf/simulated/floor/plating,/area/maintenance/vault) -"cgP" = (/obj/item/weapon/crowbar,/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/maintenance/vault) -"cgQ" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor{icon_state = "damaged5"; dir = 1},/area/maintenance/vault) -"cgR" = (/obj/effect/decal/remains/robot{icon_state = "gib7"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/maintenance/vault) -"cgS" = (/obj/structure/grille,/turf/simulated/floor{icon_state = "damaged3"},/area/maintenance/vault) -"cgT" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/vault) -"cgU" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/vault) -"cgV" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cgW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cgX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cgY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "dark vault full"},/area/storage/nuke_storage) -"cgZ" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/storage/nuke_storage) -"cha" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/door_control{id_tag = "BDorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"chb" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/door_control{id_tag = "BDorm4"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"chc" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/shoedispenser,/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"chd" = (/turf/simulated/floor,/area/crew_quarters/locker) -"che" = (/obj/item/weapon/stool{pixel_y = 8},/turf/simulated/floor,/area/crew_quarters/locker) -"chf" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/simulated/floor,/area/crew_quarters/locker) -"chg" = (/obj/structure/table,/obj/item/clothing/head/soft/grey{pixel_x = -2; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/crew_quarters/locker) -"chh" = (/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"chi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/crew_quarters/locker) -"chj" = (/obj/machinery/suit_storage_unit/security,/turf/simulated/floor{icon_state = "red"; dir = 10},/area/security/armory) -"chk" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"chl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"chm" = (/obj/effect/decal/cleanable/dirt,/obj/item/device/taperecorder,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"cho" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/grille/broken,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"chr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cht" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/mounted/poster,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/remains/robot{icon_state = "gib7"},/obj/item/weapon/stock_parts/micro_laser,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"chx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chy" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/barricade/full/block,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/medbay) -"chz" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/turf/simulated/floor{icon_state = "damaged5"},/area/derelictparts/medbay) -"chA" = (/obj/structure/table,/obj/item/weapon/pen,/obj/item/weapon/surgicaldrill,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/medbay) -"chB" = (/obj/item/device/radio/intercom{freerange = 1; name = "Station Intercom (General)"; pixel_x = 30},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"chC" = (/obj/structure/closet/secure_closet/chemical,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/medbay) -"chD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"chE" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chF" = (/obj/effect/decal/remains/robot{icon_state = "gib3"},/obj/machinery/constructable_frame/machine_frame,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"chG" = (/obj/structure/girder,/turf/simulated/floor/plating/airless,/area) -"chH" = (/obj/item/device/flashlight,/turf/simulated/floor/plating/airless,/area) -"chI" = (/obj/machinery/light{dir = 8},/mob/living/carbon/monkey,/turf/simulated/floor,/area/derelictparts/aft) -"chJ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/derelictparts/aft) -"chK" = (/obj/item/seeds/bananaseed,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor,/area/derelictparts/aft) -"chL" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/port) -"chM" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"chN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/derelictparts/port) -"chO" = (/obj/structure/closet,/obj/item/device/radio{pixel_y = 6},/obj/machinery/light_construct/small,/obj/item/weapon/coin/silver,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/port) -"chP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/port) -"chQ" = (/obj/effect/decal/remains/robot,/turf/simulated/floor/plating,/area/derelictparts/port) -"chR" = (/obj/structure/grille/broken,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/port) -"chS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/mob/living/simple_animal/mouse/gray,/turf/simulated/floor/plating,/area/derelictparts/port) -"chT" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/item/weapon/mop,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/mopbucket,/turf/simulated/floor,/area/janitor) -"chU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/janitor) -"chV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor,/area/janitor) -"chW" = (/turf/simulated/floor,/area/janitor) -"chX" = (/obj/structure/table,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/machinery/requests_console{department = "Janitorial 1"; departmentType = 1; pixel_x = 32},/obj/item/weapon/legcuffs/beartrap,/obj/item/weapon/legcuffs/beartrap,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"chY" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor{icon_state = "damaged1"},/area/maintenance/vault) -"chZ" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/plating,/area/maintenance/vault) -"cia" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/vault) -"cib" = (/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/vault) -"cic" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/maintenance/vault) -"cid" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Vault"; dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cie" = (/obj/machinery/nuclearbomb{r_code = "LOLNO"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/storage/nuke_storage) -"cif" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cig" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark vault full"},/area/storage/nuke_storage) -"cih" = (/obj/machinery/door/airlock/vault{icon_state = "door_locked"; locked = 1; req_access_txt = "53"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark vault full"},/area/storage/nuke_storage) -"cii" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"cij" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/port) -"cik" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/wall,/area/crew_quarters/sleep) -"cil" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) -"cim" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/crew_quarters/sleep) -"cin" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/crew_quarters/sleep) -"cio" = (/turf/simulated/floor{icon_state = "neutral"; dir = 8},/area/crew_quarters/locker) -"cip" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor,/area/crew_quarters/locker) -"ciq" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/crew_quarters/locker) -"cir" = (/obj/item/weapon/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/locker) -"cis" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/crew_quarters/locker) -"cit" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"ciu" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"civ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"ciw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cix" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"ciy" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 4},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"ciz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ciA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ciB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"ciC" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/greenglow,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/medbay) -"ciD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"ciE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/circuitboard/air_alarm,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ciF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/rack,/obj/item/weapon/tank/air,/obj/item/weapon/storage/belt,/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ciG" = (/obj/item/weapon/shard{icon_state = "small"},/obj/item/weapon/circuitboard/airlock,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ciH" = (/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"ciI" = (/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/medbay) -"ciJ" = (/obj/structure/table,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline,/turf/simulated/floor/plating,/area/derelictparts/medbay) -"ciK" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/medbay) -"ciL" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/medbay) -"ciM" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "damaged3"},/area/derelictparts/medbay) -"ciN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ciO" = (/obj/structure/sink{dir = 8; pixel_x = -11},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"ciP" = (/obj/structure/toilet{dir = 8},/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor{icon_state = "floorgrime"},/area/derelictparts/aft) -"ciQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/derelictparts/aft) -"ciR" = (/obj/structure/grille,/obj/item/weapon/shard{icon_state = "small"},/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/aft) -"ciS" = (/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/structure/rack,/obj/item/weapon/circuitboard/circuit_imprinter,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ciT" = (/obj/item/weapon/stool,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"ciU" = (/obj/item/weapon/shard{icon_state = "medium"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"ciV" = (/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating,/area/derelictparts/port) -"ciW" = (/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor/plating,/area/derelictparts/port) -"ciX" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"ciY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/janitor) -"ciZ" = (/obj/machinery/light_switch{pixel_x = -5; pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/janitor) -"cja" = (/obj/item/weapon/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/janitor) -"cjb" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"cjc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/janitor) -"cjd" = (/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 1},/obj/machinery/light_construct/small{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/vault) -"cje" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/maintenance/vault) -"cjf" = (/obj/machinery/light_construct/small{dir = 8},/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "damaged2"; dir = 1},/area/maintenance/vault) -"cjg" = (/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/generic,/obj/structure/toilet{desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one is a gruesome sight indeed."; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/vault) -"cjh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/nmpi,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/vault) -"cji" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/trash/raisins,/turf/simulated/floor/plating,/area/maintenance/vault) -"cjj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/storage/nuke_storage) -"cjk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cjl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cjm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/mouse/brown/Tom,/turf/simulated/floor{icon_state = "dark"},/area/storage/nuke_storage) -"cjn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = 22; pixel_y = 8},/turf/simulated/floor{icon_state = "dark vault full"},/area/storage/nuke_storage) -"cjo" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/storage/nuke_storage) -"cjp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"cjq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/hallway/primary/port) -"cjr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"cjs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/wall,/area/crew_quarters/sleep) -"cjt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"cju" = (/obj/machinery/door/airlock{id_tag = "BDorm5"; name = "Dorm 5"},/turf/simulated/floor,/area/crew_quarters/sleep) -"cjv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "blue"; dir = 4},/area/crew_quarters/sleep) -"cjw" = (/obj/machinery/door/airlock{id_tag = "BDorm6"; name = "Dorm 6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep) -"cjx" = (/obj/machinery/alarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"cjy" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor,/area/crew_quarters/locker) -"cjz" = (/turf/simulated/floor{icon_state = "neutral"; dir = 4},/area/crew_quarters/locker) -"cjA" = (/obj/structure/sink{dir = 8; pixel_x = -11},/obj/structure/mirror{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cjB" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cjC" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/item/device/assembly/signaler,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cjD" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/blood{icon_state = "floor3"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "floorscorched2"},/area/derelictparts/medbay) -"cjE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cjF" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/obj/item/weapon/wrench,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cjG" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cjH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_y = 32},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cjI" = (/obj/item/weapon/weldingtool/hugetank,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cjJ" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/bed/chair,/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cjK" = (/obj/structure/grille,/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cjL" = (/obj/structure/filingcabinet,/obj/item/weapon/paper{info = "\[i]The writing on the paper is smudged, but you can still make out the number\[/i] 9"},/obj/effect/decal/warning_stripes{tag = "icon-warning"; icon_state = "warning"; dir = 2},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cjM" = (/obj/item/weapon/reagent_containers/syringe,/obj/effect/decal/cleanable/vomit,/turf/simulated/floor/plating,/area/derelictparts/port) -"cjN" = (/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/libertycap{pixel_x = -10; pixel_y = -3},/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/libertycap,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cjO" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small{dir = 1},/turf/simulated/floor/plating,/area/derelictparts/port) -"cjP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"cjQ" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/folder,/obj/item/weapon/circuitboard/fire_alarm,/turf/simulated/floor/plating,/area/derelictparts/port) -"cjR" = (/obj/item/weapon/stock_parts/scanning_module{pixel_x = 6; pixel_y = -6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"cjS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Derelict Parts Access"; req_access_txt = "12"},/turf/simulated/floor/plating,/area/maintenance/port) -"cjT" = (/obj/machinery/door/airlock/maintenance{name = "Derelict Morgue Maintenance"; req_access_txt = "5"},/obj/effect/decal/cleanable/blood{icon_state = "floor6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelictparts/medbay) -"cjU" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "floorgrime"},/area/janitor) -"cjV" = (/turf/simulated/wall/r_wall,/area/teleporter) -"cjW" = (/obj/item/stack/rods,/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/vault) -"cjX" = (/obj/structure/closet/secure_closet/freezer/money,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/storage/nuke_storage) -"cjY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "dark-markings"},/area/storage/nuke_storage) -"cjZ" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1; pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1; pixel_y = -2},/obj/item/weapon/storage/belt/champion,/turf/simulated/floor{icon_state = "dark-markings"},/area/storage/nuke_storage) -"cka" = (/turf/simulated/floor{icon_state = "dark-markings"},/area/storage/nuke_storage) -"ckb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"ckc" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"ckd" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/door_control{id_tag = "BDorm5"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"cke" = (/turf/simulated/floor{icon_state = "blue"; dir = 10},/area/crew_quarters/sleep) -"ckf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "blue"; dir = 6},/area/crew_quarters/sleep) -"ckg" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door_control{id_tag = "BDorm6"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; req_access_txt = "0"; specialfunctions = 4},/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"ckh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet{icon_state = "carpetnoconnect"},/area/crew_quarters/sleep) -"cki" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor{dir = 10; icon_state = "neutral"},/area/crew_quarters/locker) -"ckj" = (/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/locker) -"ckk" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/locker) -"ckl" = (/obj/structure/closet/secure_closet/personal,/obj/structure/extinguisher_cabinet{pixel_y = -30},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/locker) -"ckm" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/camera{c_tag = "Dress Room"; dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/locker) -"ckn" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor{icon_state = "neutral"},/area/crew_quarters/locker) -"cko" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{icon_state = "neutral"; dir = 6},/area/crew_quarters/locker) -"ckp" = (/obj/structure/sink{dir = 8; pixel_x = -11},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"ckq" = (/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"ckr" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/locker) -"cks" = (/obj/item/stack/rods,/obj/structure/grille/broken,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ckt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cku" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"ckv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"ckw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/trash/candy,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"ckx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cky" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"ckz" = (/obj/effect/decal/cleanable/blood{icon_state = "floor3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/medbay) -"ckA" = (/obj/machinery/space_heater,/obj/item/device/assembly/timer,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"ckB" = (/obj/effect/decal/remains/robot{icon_state = "gib5"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area) -"ckC" = (/obj/structure/rack,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/weldingtool,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/derelictparts/aft) -"ckD" = (/obj/structure/rack,/obj/item/device/radio{pixel_y = 6},/obj/item/weapon/wrench,/obj/item/weapon/crowbar/red,/obj/item/device/silicate_sprayer/empty,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/aft) -"ckE" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small{dir = 1},/obj/item/weapon/cigbutt,/obj/structure/reagent_dispensers/silicate,/turf/simulated/floor/plating,/area/derelictparts/aft) -"ckF" = (/obj/effect/decal/cleanable/generic,/obj/machinery/space_heater,/obj/effect/decal/cleanable/cobweb2,/obj/item/weapon/stock_parts/manipulator,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/aft) -"ckG" = (/obj/item/weapon/lighter/zippo{pixel_x = -4; pixel_y = 7},/obj/item/weapon/cigbutt,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/aft) -"ckH" = (/obj/item/weapon/broken_bottle,/turf/simulated/floor/plating,/area/derelictparts/aft) -"ckI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/weapon/folder/yellow{pixel_y = -2},/obj/item/trash/candle{pixel_x = -2; pixel_y = 13},/turf/simulated/floor/plating,/area/derelictparts/aft) -"ckJ" = (/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/port) -"ckK" = (/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris{pixel_x = -5; pixel_y = 5},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"ckL" = (/obj/item/weapon/reagent_containers/syringe,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelictparts/port) -"ckM" = (/obj/item/weapon/storage/box/lights/mixed,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/plating,/area/derelictparts/port) -"ckN" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/item/weapon/coin/silver,/turf/simulated/floor/plating,/area/derelictparts/port) -"ckO" = (/obj/structure/closet,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/tank/emergency_oxygen,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/port) -"ckP" = (/obj/structure/rack,/obj/item/device/radio{pixel_y = 6},/obj/item/weapon/crowbar/red,/turf/simulated/floor/plating,/area/derelictparts/port) -"ckQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction/Janitor{dir = 2; icon_state = "pipe-j2s"},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/maintenance/port) -"ckR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"ckS" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/port) -"ckT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHEAST)"; icon_state = "maintguide"; dir = 5},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/port) -"ckU" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor{icon_state = "dark"},/area/janitor) -"ckV" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/plating,/area/teleporter) -"ckW" = (/obj/machinery/teleport/station,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/plating,/area/teleporter) -"ckX" = (/obj/machinery/light{dir = 1},/obj/machinery/teleport/hub,/turf/simulated/floor/plating,/area/teleporter) -"ckY" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 8},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/teleporter) -"ckZ" = (/obj/machinery/shieldwallgen,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/teleporter) -"cla" = (/obj/structure/table,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/maintenance/vault) -"clb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"clc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor,/area/hallway/primary/port) -"cld" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"cle" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/crew_quarters/sleep) -"clf" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/crew_quarters/locker) -"clg" = (/turf/simulated/wall/r_wall,/area/security/armory) -"clh" = (/turf/simulated/wall/r_wall,/area/security/main) -"cli" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"clj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"clk" = (/obj/item/device/flashlight,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cll" = (/obj/structure/reagent_dispensers/silicate,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"clm" = (/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cln" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"clo" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/aft) -"clp" = (/obj/effect/decal/remains/robot,/turf/simulated/floor/plating,/area/derelictparts/aft) -"clq" = (/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/aft) -"clr" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cls" = (/turf/space,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/derelictparts/aft) -"clt" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/derelictparts/aft) -"clu" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/aft) -"clv" = (/obj/item/weapon/newspaper,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/derelictparts/aft) -"clw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct/small,/obj/item/weapon/shard{icon_state = "medium"},/turf/simulated/floor/plating,/area/derelictparts/aft) -"clx" = (/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/aft) -"cly" = (/obj/item/weapon/stool,/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/aft) -"clz" = (/turf/simulated/wall,/area/library) -"clA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/library) -"clB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/port) -"clC" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; freq = 1400; location = "Southern Custodial Closet"},/obj/structure/plasticflaps,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/janitor) -"clD" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/weapon/hand_tele,/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/effect/decal/warning_stripes{tag = "icon-warning_corner (EAST)"; icon_state = "warning_corner"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/teleporter) -"clE" = (/obj/item/weapon/stool{pixel_y = 8},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/teleporter) -"clF" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/item/beacon,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor{icon_state = "white"},/area/teleporter) -"clG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor{icon_state = "white"},/area/teleporter) -"clH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/teleporter) -"clI" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/teleporter) -"clJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/vault) -"clK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/vault) -"clL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/vault) -"clM" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/vault) -"clN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/port) -"clO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/hallway/primary/port) -"clP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/port) -"clQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/mob/living/simple_animal/mouse/brown,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clW" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/nmpi{tag = "icon-maintguide (EAST)"; icon_state = "maintguide"; dir = 4},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"clY" = (/obj/machinery/flasher/portable,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/security/armory) -"clZ" = (/obj/machinery/deployable/barrier,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/security/armory) -"cma" = (/obj/machinery/deployable/barrier,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/security/armory) -"cmb" = (/obj/structure/flora/pottedplant/random,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cmc" = (/obj/machinery/vending/coffee,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cmd" = (/obj/machinery/vending/cigarette,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cme" = (/turf/simulated/wall,/area/security/main) -"cmf" = (/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cmg" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cmh" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/item/weapon/dice,/obj/item/weapon/stock_parts/scanning_module,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"cmi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cmj" = (/obj/item/stack/sheet/glass/glass{amount = 7},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/aft) -"cmk" = (/obj/structure/grille,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cml" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cmm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/wall,/area/derelictparts/aft) -"cmn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/derelictparts/aft) -"cmo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/derelictparts/aft) -"cmp" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin/nano,/obj/item/device/radio/intercom{desc = "Warn cargo before security raids it with this."; freerange = 1; name = "Ace Reporter Intercom"; pixel_y = 25; wires = 2},/turf/simulated/floor{icon_state = "cult"},/area/library) -"cmq" = (/obj/item/device/radio/intercom{desc = "Warn cargo before security raids it with this."; freerange = 1; name = "Ace Reporter Intercom"; pixel_y = 25; wires = 2},/turf/simulated/floor{icon_state = "cult"},/area/library) -"cmr" = (/obj/structure/closet{desc = "Everything a reporter needs to look the part."; icon_closed = "blue"; icon_state = "blue"; name = "Reporter's Threads"},/obj/item/clothing/suit/storage/lawyer/bluejacket,/obj/item/clothing/under/suit_jacket/really_black,/obj/item/clothing/under/suit_jacket/female{desc = "A black trouser suit for women. Very formal."; name = "black suit"; pixel_x = 3; pixel_y = 1},/obj/item/clothing/shoes/brown,/obj/item/clothing/shoes/brown,/obj/item/clothing/accessory/tie/blue,/obj/item/clothing/accessory/tie/red,/obj/item/clothing/head/det_hat{name = "Reporter's Cap"},/obj/item/clothing/head/flatcap,/obj/item/device/radio/intercom{desc = "Warn cargo before security raids it with this."; freerange = 1; name = "Ace Reporter Intercom"; pixel_y = 25; wires = 2},/turf/simulated/floor{icon_state = "cult"},/area/library) -"cms" = (/obj/structure/table/woodentable,/obj/machinery/computer/library/checkout,/obj/machinery/light_switch{pixel_x = -28},/turf/simulated/floor/wood,/area/library) -"cmt" = (/obj/machinery/libraryscanner,/turf/simulated/floor/wood,/area/library) -"cmu" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/simulated/floor/wood,/area/library) -"cmv" = (/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor/carpet,/area/library) -"cmw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) -"cmx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/library) -"cmy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/nmpi{tag = "icon-maintguide (NORTHWEST)"; icon_state = "maintguide"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/port) -"cmz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/nmpi{tag = "icon-maintguide (SOUTHEAST)"; icon_state = "maintguide"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/port) -"cmA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/maintenance/port) -"cmB" = (/obj/structure/rack,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 1},/turf/simulated/floor{icon_state = "white"},/area/teleporter) -"cmC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -27},/turf/simulated/floor{icon_state = "white"},/area/teleporter) -"cmD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "white"},/area/teleporter) -"cmE" = (/obj/machinery/light_switch{pixel_x = -4; pixel_y = -24},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/machinery/camera{c_tag = "Teleporter"; dir = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor{icon_state = "white"},/area/teleporter) -"cmF" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/vault) -"cmG" = (/turf/simulated/floor/plating,/area/maintenance/vault) -"cmH" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{dir = 8; icon_state = "neutralcorner"},/area/hallway/primary/aft) -"cmI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor,/area/hallway/primary/aft) -"cmJ" = (/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor{icon_state = "neutralcorner"},/area/hallway/primary/aft) -"cmK" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/table,/obj/item/weapon/newspaper,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmR" = (/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cmS" = (/obj/item/weapon/wrench,/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/security/armory) -"cmT" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTH)"; icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/security/armory) -"cmU" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (NORTHEAST)"; icon_state = "warning"; dir = 5},/turf/simulated/floor,/area/security/armory) -"cmV" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -4; pixel_y = 3},/obj/item/clothing/suit/armor/laserproof,/obj/item/weapon/storage/lockbox/loyalty,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/security/armory) -"cmW" = (/obj/machinery/power/apc{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cmX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cmY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cmZ" = (/obj/machinery/alarm{dir = 8; pixel_x = 24},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cna" = (/turf/simulated/wall/r_wall,/area/security/interrogation) -"cnb" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/ash,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cnc" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cnd" = (/obj/effect/decal/cleanable/generic,/obj/item/weapon/pen,/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cne" = (/obj/item/weapon/shard{icon_state = "small"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area) -"cnf" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced/tinted{dir = 8},/obj/item/weapon/shard,/obj/structure/grille/broken,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cng" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cnh" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/aft) -"cni" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/structure/sign/securearea{desc = "A warning sign which reads 'CONSTRUCTION ZONE'."; name = "\improper CONSTRUCTION ZONE"; pixel_x = -32},/obj/item/weapon/stock_parts/matter_bin,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cnj" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cnk" = (/obj/item/weapon/cell/hyper,/turf/simulated/floor/plating{icon_state = "platingdmg2"},/area/derelictparts/aft) -"cnl" = (/obj/effect/decal/cleanable/blood,/obj/item/weapon/cigbutt,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/medbay) -"cnm" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor{icon_state = "cult"},/area/library) -"cnn" = (/turf/simulated/floor{icon_state = "cult"},/area/library) -"cno" = (/obj/machinery/door/morgue{name = "Private Study"; req_access_txt = "37"},/turf/simulated/floor{icon_state = "cult"},/area/library) -"cnp" = (/turf/simulated/floor/wood,/area/library) -"cnq" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor/wood,/area/library) -"cnr" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/library) -"cns" = (/turf/simulated/floor/carpet,/area/library) -"cnt" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/library) -"cnu" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/maintenance/port) -"cnv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/maintenance/port) -"cnw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall/r_wall,/area/teleporter) -"cnx" = (/obj/structure/morgue,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/medbay) -"cny" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall/r_wall,/area/teleporter) -"cnz" = (/obj/structure/closet/emcloset,/turf/simulated/floor{icon_state = "blue"; dir = 1},/area/hallway/primary/aft) -"cnA" = (/turf/simulated/floor,/area/hallway/primary/aft) -"cnB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/hallway/primary/aft) -"cnC" = (/obj/structure/sign/map/efficiency,/turf/simulated/wall,/area/maintenance/apmaint) -"cnD" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/apmaint) -"cnE" = (/turf/simulated/wall/r_wall,/area/security/brig) -"cnF" = (/obj/structure/plasticflaps,/obj/effect/decal/warning_stripes{tag = "icon-loading_area"; icon_state = "loading_area"; dir = 2},/turf/simulated/floor{icon_state = "dark"},/area/security/brig) -"cnG" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder,/obj/item/device/camera,/turf/simulated/floor{icon_state = "cult"},/area/library) -"cnH" = (/obj/machinery/power/apc{cell_type = 5000; dir = 8; name = "Armory APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor,/area/security/armory) -"cnI" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Library Bookshelves Left"},/turf/simulated/floor/wood,/area/library) -"cnJ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Library Bookshelves Right"},/turf/simulated/floor/wood,/area/library) -"cnK" = (/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/security/armory) -"cnL" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/machinery/camera{c_tag = "Armory"; dir = 8},/obj/item/clothing/suit/storage/bandolier,/obj/item/clothing/suit/storage/bandolier,/obj/item/clothing/suit/storage/bandolier,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/security/armory) -"cnM" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cnN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/carpet,/area/security/main) -"cnO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/carpet,/area/security/main) -"cnP" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_x = 29},/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cnQ" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/weapon/storage/box/labels,/obj/item/weapon/hand_labeler,/turf/simulated/floor{icon_state = "dark"},/area/security/interrogation) -"cnR" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "dark"},/area/security/interrogation) -"cnS" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor{icon_state = "dark"},/area/security/interrogation) -"cnT" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/plating{icon_state = "platingdmg1"},/area/derelictparts/apderelict) -"cnU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cnV" = (/obj/effect/decal/remains/robot,/obj/item/weapon/weldingtool,/obj/item/weapon/circuitboard/airlock,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/apderelict) -"cnW" = (/obj/item/clothing/gloves/black,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/aft) -"cnX" = (/obj/effect/decal/remains/robot{icon_state = "gibdown"},/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"; name = "cable piece"},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cnY" = (/obj/structure/grille,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/aft) -"cnZ" = (/obj/structure/door_assembly/door_assembly_mai{density = 0},/turf/simulated/floor/plating,/area/derelictparts/aft) -"coa" = (/obj/effect/decal/cleanable/dirt,/obj/structure/window/barricade/full,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cob" = (/obj/effect/decal/cleanable/ash,/obj/item/weapon/caution/cone,/turf/simulated/floor/plating,/area/derelictparts/aft) -"coc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/simulated/wall,/area/library) -"cod" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/library) -"coe" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/library) -"cof" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/wall,/area/security/interrogation) -"cog" = (/obj/machinery/light/small,/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/simulated/floor{icon_state = "cult"},/area/library) -"coh" = (/obj/structure/cult/tome,/obj/item/clothing/under/suit_jacket/red,/turf/simulated/floor{icon_state = "cult"},/area/library) -"coi" = (/obj/structure/table/woodentable,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/wood,/area/library) -"coj" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/wood,/area/library) -"cok" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/aft) -"col" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor,/area/hallway/primary/aft) -"com" = (/obj/machinery/camera{c_tag = "Aft Hallway West"},/turf/simulated/floor,/area/hallway/primary/aft) -"con" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "bluecorner"; dir = 4},/area/hallway/primary/aft) -"coo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "blue"; dir = 1},/area/hallway/primary/aft) -"cop" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "bluecorner"; dir = 1},/area/hallway/primary/aft) -"coq" = (/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/aft) -"cor" = (/obj/machinery/power/apc{dir = 1; pixel_y = 24; pixel_x = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/hallway/primary/aft) -"cos" = (/obj/machinery/atm{pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/aft) -"cot" = (/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor,/area/hallway/primary/aft) -"cou" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/hallway/primary/aft) -"cov" = (/obj/machinery/media/receiver/boombox/wallmount/muzak{on = 0; pixel_y = 32},/turf/simulated/floor,/area/hallway/primary/aft) -"cow" = (/obj/machinery/camera{c_tag = "Aft Hallway Center"},/turf/simulated/floor,/area/hallway/primary/aft) -"cox" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window{base_state = "left"; dir = 2},/turf/simulated/floor,/area/hallway/primary/aft) -"coy" = (/obj/machinery/computer/pda_terminal,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/hallway/primary/aft) -"coz" = (/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"coA" = (/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"coB" = (/obj/machinery/light{dir = 1},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"coC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"coD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"coE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"coF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"coG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"coH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"coI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id_tag = "Secure Gate"; name = "Security Blast Door"; opacity = 0},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/security/brig) -"coJ" = (/obj/machinery/computer/security,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Security Reception Desk"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = 20},/turf/simulated/floor,/area/security/brig) -"coK" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Security"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor{icon_state = "dark"},/area/security/brig) -"coL" = (/obj/effect/decal/warning_stripes{icon_state = "unloading"},/obj/structure/window/reinforced,/obj/machinery/door/window,/turf/simulated/floor{icon_state = "dark"},/area/security/brig) -"coM" = (/obj/effect/decal/cleanable/blood{icon_state = "floor4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/medbay) -"coN" = (/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"coO" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"coP" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor{icon_state = "red"; dir = 5},/area/security/brig) -"coQ" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/obj/structure/reagent_dispensers/peppertank{pixel_x = -30},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/security/armory) -"coR" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3; pixel_y = -3},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/security/armory) -"coS" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun{pixel_x = 3; pixel_y = -3},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/security/armory) -"coT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/security/armory) -"coU" = (/obj/structure/rack,/obj/item/weapon/shield/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot{pixel_x = 3; pixel_y = -3},/turf/simulated/floor{icon_state = "dark-markings"; dir = 8},/area/security/armory) -"coV" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"coW" = (/obj/structure/bed/chair/comfy/black{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"coX" = (/obj/structure/table,/obj/item/weapon/storage/box/evidence,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/camera{c_tag = "Brig Evidence Storage"; dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/security/interrogation) -"coY" = (/turf/simulated/floor{icon_state = "dark"},/area/security/interrogation) -"coZ" = (/obj/structure/closet/crate,/obj/item/weapon/book/manual/engineering_construction,/obj/effect/decal/warning_stripes{tag = "icon-warning (WEST)"; icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cpa" = (/obj/item/weapon/caution/cone,/obj/item/stack/cable_coil{amount = 1; icon_state = "coil_red1"},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cpb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/wall,/area/library) -"cpc" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/library) -"cpd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/library) -"cpe" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/library) -"cpf" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/library) -"cpg" = (/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library) -"cph" = (/obj/machinery/status_display{layer = 4; pixel_x = -32},/obj/machinery/camera{c_tag = "Library Main"; dir = 4},/obj/machinery/door/window{dir = 2; name = "Library Desk Door"; req_access_txt = "37"},/turf/simulated/floor/wood,/area/library) -"cpi" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/library) -"cpj" = (/obj/structure/table/woodentable,/obj/item/device/camera_film,/obj/item/device/camera_film,/turf/simulated/floor/wood,/area/library) -"cpk" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/simulated/floor/wood,/area/library) -"cpl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/plating,/area/library) -"cpm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/aft) -"cpn" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HoPL"; location = "Escape"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/aft) -"cpo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/hallway/primary/aft) -"cpp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/aft) -"cpq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/primary/aft) -"cpr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/simulated/floor,/area/hallway/primary/aft) -"cps" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/hallway/primary/aft) -"cpt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/hallway/primary/aft) -"cpu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/hallway/primary/aft) -"cpv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/hallway/primary/aft) -"cpw" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor,/area/hallway/primary/aft) -"cpx" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHBL"; location = "HoPL"},/turf/simulated/floor,/area/hallway/primary/aft) -"cpy" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security"; location = "HoPR"},/turf/simulated/floor,/area/hallway/primary/aft) -"cpz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/hallway/primary/aft) -"cpA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/aft) -"cpB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/hallway/primary/aft) -"cpC" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/hallway/primary/aft) -"cpD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/hallway/primary/aft) -"cpE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor,/area/hallway/primary/aft) -"cpF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor,/area/hallway/primary/aft) -"cpG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Escape"; location = "Security"},/obj/machinery/bot/secbot/beepsky,/turf/simulated/floor,/area/hallway/primary/aft) -"cpH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/hallway/primary/aft) -"cpI" = (/obj/effect/decal/cleanable/blood{icon_state = "floor3"},/turf/simulated/floor{icon_state = "floorscorched1"},/area/derelictparts/medbay) -"cpJ" = (/obj/structure/bed/chair/comfy/black{dir = 8},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) -"cpK" = (/turf/simulated/floor,/area/security/lobby) -"cpL" = (/obj/machinery/door/window{name = "Secure Door"; req_access_txt = "1"},/turf/simulated/floor,/area/security/brig) -"cpM" = (/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/brig) -"cpN" = (/turf/simulated/floor,/area/security/brig) -"cpO" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/security/brig) -"cpP" = (/obj/machinery/light{dir = 4},/obj/structure/sign/goldenplaque{pixel_x = 32},/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/brig) -"cpQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/security/armory) -"cpR" = (/obj/structure/rack,/obj/item/weapon/storage/box/chemimp{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/box/trackimp,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/security/armory) -"cpS" = (/obj/structure/rack,/obj/item/weapon/storage/box/seccarts{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/security/armory) -"cpT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/warning_stripes{tag = "icon-warning (EAST)"; icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/security/armory) -"cpU" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_x = 29},/obj/structure/rack,/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/ionrifle{pixel_x = 2; pixel_y = -3},/turf/simulated/floor{icon_state = "dark"},/area/security/armory) -"cpV" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cpW" = (/obj/structure/bed/chair/comfy/black{dir = 8},/obj/machinery/camera{c_tag = "Security Lounge"; dir = 8},/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cpX" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor{icon_state = "dark"},/area/security/interrogation) -"cpY" = (/turf/simulated/wall/r_wall,/area/security/hos) -"cpZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/security/hos) -"cqa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/security/hos) -"cqb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/security/hos) -"cqc" = (/obj/structure/rack,/obj/item/weapon/minihoe,/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cqd" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cqe" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/stack/package_wrap,/turf/simulated/floor/wood,/area/library) -"cqf" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/wood,/area/library) -"cqg" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/library) -"cqh" = (/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor/wood,/area/library) -"cqi" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/simulated/floor/wood,/area/library) -"cqj" = (/turf/simulated/wall,/area/security/interrogation) -"cqk" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor/wood,/area/library) -"cql" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/simulated/floor/wood,/area/library) -"cqm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/wood,/area/library) -"cqn" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/carpet,/area/library) -"cqo" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/library) -"cqp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/library) -"cqq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/simulated/floor,/area/hallway/primary/aft) -"cqr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "bluecorner"},/area/hallway/primary/aft) -"cqs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "bluecorner"},/area/hallway/primary/aft) -"cqt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{dir = 2; icon_state = "blue"},/area/hallway/primary/aft) -"cqu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "bluecorner"; dir = 8},/area/hallway/primary/aft) -"cqv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/aft) -"cqw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/aft) -"cqx" = (/turf/simulated/floor{icon_state = "redcorner"},/area/hallway/primary/aft) -"cqy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor{icon_state = "red"},/area/hallway/primary/aft) -"cqz" = (/turf/simulated/floor{dir = 8; icon_state = "redcorner"},/area/hallway/primary/aft) -"cqA" = (/turf/simulated/floor{dir = 8; icon_state = "bluecorner"},/area/hallway/primary/aft) -"cqB" = (/obj/machinery/camera{c_tag = "Aft Hallway East"; dir = 1},/turf/simulated/floor{icon_state = "redcorner"},/area/hallway/primary/aft) -"cqC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor{icon_state = "redcorner"},/area/hallway/primary/aft) -"cqD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor{icon_state = "redcorner"},/area/hallway/primary/aft) -"cqE" = (/obj/machinery/door/firedoor/border_only{dir = 4; name = "Firelock East"},/turf/simulated/floor{icon_state = "redcorner"},/area/hallway/primary/aft) -"cqF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor,/area/hallway/primary/aft) -"cqG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump{dir = 4; on = 1},/turf/simulated/floor,/area/hallway/primary/aft) -"cqH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/simulated/floor,/area/hallway/primary/aft) -"cqI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/cobweb2,/obj/structure/rack,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/turf/simulated/floor/plating,/area/derelictparts/medbay) -"cqJ" = (/obj/machinery/door_control{id_tag = "Secure Gate"; name = "Security Lockdown"; pixel_x = -3; pixel_y = -28; req_access_txt = "3"},/turf/simulated/floor,/area/security/brig) -"cqK" = (/obj/machinery/door/window{icon_state = "right"; name = "Secure Door"; req_access_txt = "1"},/turf/simulated/floor,/area/security/brig) -"cqL" = (/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/security/brig) -"cqM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/security/brig) -"cqN" = (/obj/machinery/power/apc{dir = 4; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/brig) -"cqO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/security/armory) -"cqP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/security/armory) -"cqQ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/security/armory) -"cqR" = (/obj/structure/rack,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun/stunshell,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/ammo_casing/shotgun,/obj/item/weapon/gun/projectile/shotgun/pump/sc_pump,/obj/item/weapon/gun/projectile/shotgun/pump/sc_pump{pixel_x = 2; pixel_y = -3},/turf/simulated/floor{icon_state = "dark"},/area/security/armory) -"cqS" = (/obj/machinery/vending/security,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cqT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cqU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cqV" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/simulated/floor{icon_state = "dark"},/area/security/main) -"cqW" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "dark"},/area/security/interrogation) -"cqX" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor{icon_state = "dark"},/area/security/interrogation) -"cqY" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/decal/warning_stripes{icon_state = "bot"},/obj/machinery/atmospherics/unary/vent_pump{on = 1},/turf/simulated/floor{icon_state = "dark"},/area/security/interrogation) -"cqZ" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/cartridge/detective,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/media/receiver/boombox/wallmount{pixel_x = -32},/turf/simulated/floor/carpet,/area/security/hos) -"cra" = (/obj/machinery/computer/secure_data,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/security/hos) -"crb" = (/obj/machinery/computer/security/advanced,/turf/simulated/floor/carpet,/area/security/hos) -"crc" = (/obj/structure/closet/secure_closet/hos,/turf/simulated/floor/carpet,/area/security/hos) -"crd" = (/obj/machinery/alarm{pixel_y = 23},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/machinery/suit_storage_unit/security,/turf/simulated/floor/carpet,/area/security/hos) -"cre" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar/panel{id_tag = "aftportsolar"; name = "Aft Port Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/aport) -"crf" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless,/area/solar/aport) -"crg" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar/panel{id_tag = "aftportsolar"; name = "Aft Port Solar Array"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/solar/aport) -"crh" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg1"},/area/solar/aport) -"cri" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/derelictparts/aft) -"crj" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/derelictparts/aft) -"crk" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/cell{charge = 100; maxcharge = 15000},/obj/item/weapon/crowbar,/turf/simulated/floor/plating,/area/derelictparts/aft) -"crl" = (/obj/structure/rack,/obj/effect/decal/cleanable/cobweb2,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/lighter{icon_state = "lighter-c"},/turf/simulated/floor/plating,/area/derelictparts/aft) -"crm" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted,/turf/simulated/floor/plating,/area/derelictparts/aft) -"crn" = (/obj/structure/table/woodentable,/obj/item/weapon/dice/d20,/obj/item/weapon/dice,/turf/simulated/floor/wood,/area/library) -"cro" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/library) -"crp" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/library) -"crq" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/library) -"crr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/library) -"crs" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/library) -"crt" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/library) -"cru" = (/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/hallway/primary/aft) -"crv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/hallway/primary/aft) -"crw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "bluecorner"},/area/hallway/primary/aft) -"crx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/primary/aft) -"cry" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/aft) -"crz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/aft) -"crA" = (/turf/simulated/wall,/area/hallway/primary/aft) -"crB" = (/obj/effect/decal/warning_stripes{tag = "icon-loading_area"; icon_state = "loading_area"; dir = 2},/turf/simulated/floor,/area/hallway/primary/aft) -"crC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/primary/aft) -"crD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/plating,/area/hallway/primary/aft) -"crE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{tag = "icon-loading_area (NORTH)"; icon_state = "loading_area"; dir = 1},/turf/simulated/floor,/area/hallway/primary/aft) -"crF" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"crG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"crH" = (/turf/simulated/wall,/area/lawoffice) -"crI" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "lawyer_blast"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/lawoffice) -"crJ" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "lawyer_blast"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/lawoffice) -"crK" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "lawyer_blast"; name = "privacy shutters"},/turf/simulated/floor/plating,/area/lawoffice) -"crL" = (/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "redcorner"; dir = 1},/area/hallway/primary/aft) -"crM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor,/area/hallway/primary/aft) -"crN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{dir = 1; name = "Firelock North"},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"crO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id_tag = "Secure Gate"; name = "Security Blast Door"; opacity = 0},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/security/brig) -"crP" = (/obj/machinery/computer/secure_data,/obj/structure/window/reinforced,/turf/simulated/floor,/area/security/brig) -"crQ" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/turf/simulated/floor,/area/security/brig) -"crR" = (/obj/structure/window/reinforced,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/simulated/floor/plating,/area/security/brig) -"crS" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/security/brig) -"crT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction/Security{dir = 8},/turf/simulated/floor,/area/security/brig) -"crU" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/vending/security,/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/brig) -"crV" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 1},/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/window/full/reinforced/plasma,/turf/simulated/floor/plating,/area/security/armory) -"crW" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 1},/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/full/reinforced/plasma,/turf/simulated/floor/plating,/area/security/armory) -"crX" = (/obj/effect/decal/cleanable/blood{icon_state = "floor4"},/obj/effect/decal/cleanable/blood/gibs{icon_state = "gibleg"},/turf/simulated/floor{icon_state = "damaged1"},/area/derelictparts/medbay) -"crY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 1},/obj/structure/window/reinforced/plasma{dir = 8},/obj/structure/window/full/reinforced/plasma,/turf/simulated/floor/plating,/area/security/armory) -"crZ" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/plasma,/obj/structure/window/reinforced/plasma{dir = 1},/obj/structure/window/reinforced/plasma{dir = 4},/obj/structure/window/full/reinforced/plasma,/turf/simulated/floor/plating,/area/security/armory) -"csa" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/security/main) -"csb" = (/obj/structure/morgue,/turf/simulated/floor{icon_state = "damaged2"},/area/derelictparts/medbay) -"csc" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/security/main) -"csd" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/security/main) -"cse" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/medbay) -"csf" = (/obj/machinery/door/window{dir = 2; name = "Shower Door"; req_access_txt = "0"},/obj/machinery/camera{c_tag = "Captain's Bathroom"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"csg" = (/obj/structure/table/woodentable,/obj/machinery/newscaster/security_unit{pixel_x = -30},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/security/hos) -"csh" = (/obj/structure/bed/chair/office/dark,/obj/machinery/door_control{id_tag = "Secure Gate"; name = "Brig Lockdown"; pixel_x = -28; pixel_y = -3; req_access_txt = "2"},/obj/effect/landmark/start{name = "Head of Security"},/turf/simulated/floor/carpet,/area/security/hos) -"csi" = (/turf/simulated/floor/carpet,/area/security/hos) -"csj" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/security/hos) -"csk" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "freezerfloor"},/area/security/hos) -"csl" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/light/small{dir = 1},/turf/simulated/floor{icon_state = "freezerfloor"},/area/security/hos) -"csm" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "panelscorched"},/area/solar/aport) -"csn" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless{icon_state = "platingdmg3"},/area/solar/aport) -"cso" = (/obj/machinery/light_construct/small{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/aft) -"csp" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/derelictparts/aft) -"csq" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/plating,/area/derelictparts/aft) -"csr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/plating,/area/derelictparts/aft) -"css" = (/obj/structure/rack,/obj/map/spawner/maint,/turf/simulated/floor/plating,/area/maintenance/aft) -"cst" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Library West"; dir = 8},/turf/simulated/floor/wood,/area/library) -"csu" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/wood,/area/library) -"csv" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor/wood,/area/library) -"csw" = (/obj/structure/table/woodentable,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/library) -"csx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/library) -"csy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "bluecorner"},/area/hallway/primary/aft) -"csz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/primary/aft) -"csA" = (/obj/item/weapon/beach_ball,/turf/simulated/floor/plating,/area/hallway/primary/aft) -"csB" = (/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/hallway/primary/aft) -"csC" = (/obj/machinery/light,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/hallway/primary/aft) -"csD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/warning_stripes{icon_state = "bot"},/turf/simulated/floor,/area/hallway/primary/aft) -"csE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes{icon_state = "unloading"},/turf/simulated/floor,/area/hallway/primary/aft) -"csF" = (/obj/effect/decal/cleanable/blood{icon_state = "floor4"},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/medbay) -"csG" = (/obj/structure/window/reinforced/tinted,/obj/machinery/shower{dir = 8},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"csH" = (/turf/simulated/wall,/area/crew_quarters/captain) -"csI" = (/obj/machinery/vending/autodrobe,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"csJ" = (/obj/structure/closet/secure_closet/captains,/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"csK" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/machinery/alarm{pixel_y = 22},/obj/machinery/camera{c_tag = "Captain's Quarters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"csL" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/matchbox,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/item/clothing/mask/cigarette/cigar,/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"csM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"csN" = (/obj/structure/table/woodentable,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = "Prison"; pixel_x = -32},/obj/machinery/door_control{id_tag = "lawyer_blast"; name = "Privacy Shutters"; pixel_y = 23},/obj/machinery/faxmachine,/turf/simulated/floor/wood,/area/lawoffice) -"csO" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder,/obj/item/weapon/cartridge/lawyer,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/pen/red,/turf/simulated/floor/wood,/area/lawoffice) -"csP" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/wood,/area/lawoffice) -"csQ" = (/turf/simulated/floor/wood,/area/lawoffice) -"csR" = (/obj/structure/closet/lawcloset,/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/wood,/area/lawoffice) -"csS" = (/turf/simulated/floor{icon_state = "redcorner"; dir = 1},/area/hallway/primary/aft) -"csT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/hallway/primary/aft) -"csU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"csV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/apderelict) -"csW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 5},/area/security/brig) -"csX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id_tag = "Secure Gate"; name = "Security Blast Door"; opacity = 0},/obj/machinery/door/airlock/glass_security{name = "Security"; req_access_txt = "0"; req_one_access_txt = "1;500;19"},/turf/simulated/floor{icon_state = "red"; dir = 5},/area/security/brig) -"csY" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 9},/area/security/brig) -"csZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"cta" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"ctb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/camera{c_tag = "Brig Central"},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"ctc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"ctd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"cte" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"ctf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"ctg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 32},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"cth" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"cti" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"ctj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"ctk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor{icon_state = "red"; dir = 1},/area/security/brig) -"ctl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor{icon_state = "red"; dir = 5},/area/security/brig) -"ctm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor/plating,/area/security/hos) -"ctn" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/red,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/security/hos) -"cto" = (/obj/item/weapon/stamp/hos,/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/security/hos) -"ctp" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/security/hos) -"ctq" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; on = 1},/turf/simulated/floor/carpet,/area/security/hos) -"ctr" = (/obj/structure/table/woodentable,/obj/item/device/radio/off,/obj/item/device/taperecorder,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 31},/turf/simulated/floor/carpet,/area/security/hos) -"cts" = (/obj/structure/toilet{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/security/hos) -"ctt" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating/airless,/area/solar/aport) -"ctu" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/derelictparts/aft) -"ctv" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/derelictparts/aft) -"ctw" = (/turf/simulated/floor/plating,/area/derelictparts/aft) -"ctx" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/light/bulb,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cty" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/decal/remains/robot{icon_state = "gib6"},/obj/structure/rack,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen{pixel_x = -2; pixel_y = -4},/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/medbay) -"ctz" = (/obj/effect/nmpi{tag = "icon-maintguide (SOUTHWEST)"; icon_state = "maintguide"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/aft) -"ctA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor/plating,/area/library) -"ctB" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library) -"ctC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/simulated/floor/wood,/area/library) -"ctD" = (/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"ctE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/simulated/floor/carpet,/area/library) -"ctF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor/carpet,/area/library) -"ctG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/simulated/floor/carpet,/area/library) -"ctH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/simulated/floor/carpet,/area/library) -"ctI" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/library) -"ctJ" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor,/area/hallway/primary/aft) -"ctK" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/primary/aft) -"ctL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "heads_meeting"; name = "meeting room privacy door"},/turf/simulated/floor/plating,/area/bridge/meeting_room) -"ctM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "heads_meeting"; name = "meeting room privacy door"},/turf/simulated/floor/plating,/area/bridge/meeting_room) -"ctN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/door/poddoor{density = 0; opacity = 0; icon_state = "pdoor0"; id_tag = "heads_meeting"; name = "meeting room privacy door"},/turf/simulated/floor/plating,/area/bridge/meeting_room) -"ctO" = (/obj/effect/decal/cleanable/blood{icon_state = "floor6"},/turf/simulated/floor/plating{icon_state = "platingdmg3"},/area/derelictparts/medbay) -"ctP" = (/obj/structure/morgue,/turf/simulated/floor/plating{icon_state = "panelscorched"},/area/derelictparts/medbay) -"ctQ" = (/mob/living/simple_animal/hostile/giant_spider/hunter{health = 60},/turf/simulated/floor{icon_state = "damaged4"; dir = 1},/area/derelictparts/medbay) -"ctR" = (/obj/effect/decal/cleanable/blood{icon_state = "floor2"},/turf/simulated/floor{icon_state = "dark"},/area/derelictparts/medbay) -"ctS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 32},/turf/simulated/floor/plating,/area/derelictparts/port) -"ctT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"ctU" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"ctV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"ctW" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"ctX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"ctY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"ctZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"cua" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/captain) -"cub" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/nmpi,/turf/simulated/floor/plating,/area/maintenance/maintcentral) -"cuc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/wall,/area/lawoffice) -"cud" = (/obj/machinery/requests_console{department = "Law office"; pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) -"cue" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Internal Affairs Agent"},/turf/simulated/floor/wood,/area/lawoffice) -"cuf" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) -"cug" = (/obj/structure/bed/chair{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/simulated/floor/wood,/area/lawoffice) -"cuh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/lawoffice) -"cui" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/item/stack/sheet/cardboard,/turf/simulated/floor/plating,/area/derelictparts/medbay) -"cuj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor{icon_state = "redcorner"; dir = 1},/area/hallway/primary/aft) -"cuk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/turf/simulated/floor,/area/hallway/primary/aft) -"cul" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor{icon_state = "redcorner"; dir = 4},/area/hallway/primary/aft) -"cum" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable,/obj/machinery/door/poddoor{density = 0; icon_state = "pdoor0"; id_tag = "Secure Gate"; name = "Security Blast Door"; opacity = 0},/turf/simulated/floor/plating,/area/security/brig) -"cun" = (/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/brig) -"cuo" = (/obj/machinery/detector,/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/brig) -"cup" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor{icon_state = "red"; dir = 8},/area/security/brig) -"cuq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/security/brig) -"cur" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/sortjunction/HoS{dir = 1},/turf/simulated/floor,/area/security/brig) -"cus" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/security/brig) -"cut" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/security/brig) -"cuu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump{dir = 1; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/security/brig) -"cuv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/security/brig) -"cuw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/security/brig) -"cux" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor,/area/security/brig) -"cuy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/security/brig) -"cuz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/simulated/floor,/area/security/brig) -"cuA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/security/brig) -"cuB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/security/brig) -"cuC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/simulated/floor,/area/security/brig) -"cuD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/simulated/floor,/area/security/brig) -"cuE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor{icon_state = "red"; dir = 4},/area/security/brig) -"cuF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{name = "Head of Security"; req_access_txt = "58"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/door/firedoor/border_only{dir = 8; name = "Firelock West"},/turf/simulated/floor,/area/security/hos) -"cuG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/security/hos) -"cuH" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/security/hos) -"cuI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/security/hos) -"cuJ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/security/hos) -"cuK" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/storage/secure/safe/HoS{pixel_x = 35},/turf/simulated/floor/carpet,/area/security/hos) -"cuL" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cuM" = (/obj/structure/closet/crate,/obj/item/mounted/poster,/obj/item/mounted/poster,/obj/item/weapon/spacecash,/obj/item/weapon/dice,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cuN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/machinery/power/apc{cell_type = 0; dir = 8; icon_state = "apc1"; opened = 1; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/derelictparts/aft) -"cuO" = (/obj/structure/closet,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/derelictparts/aft) -"cuP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/nmpi,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/maintenance/aft) -"cuQ" = (/obj/machinery/bookbinder,/turf/simulated/floor/wood,/area/library) -"cuR" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/library) -"cuS" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/library) -"cuT" = (/obj/machinery/door/airlock/glass{name = "Library"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/library) -"cuU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/library) -"cuV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/carpet,/area/library) -"cuW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/carpet,/area/library) -"cuX" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{pixel_y = -24; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/library) -"cuY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/library) -"cuZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet,/area/library) -"cva" = (/obj/structure/disposalpipe/sortjunction/Chemistry,/turf/simulated/floor/carpet,/area/library) -"cvb" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/library) -"cvc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/border_only{layer = 2.5; name = "Firelock South"},/turf/simulated/floor/plating,/area/janitor) -"cvd" = (/obj/item/device/analyzer,/obj/effect/decal/warning_stripes/unshielded_area{pixel_x = 0; pixel_y = -32},/turf/simulated/floor/plating,/area/derelictparts/apderelict) -"cve" = (/obj/structure/table/woodentable,/obj/item/weapon/paper/djstation{info = "Welcome new owner!

You have purchased the latest in listening equipment. The telecommunication setup we created is the best in listening to common and private radio fequencies.Now to listen to the private channels, you'll have to configure the intercoms.
Here is a list of frequencies for you to listen on.